laforge has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33148 )
Change subject: BSSMAP_Templates: Add templates for UPLINK REQUEST ......................................................................
BSSMAP_Templates: Add templates for UPLINK REQUEST
Change-Id: I0b02be6a87899d5c9a2ef92011e09a8897328a05 --- M library/BSSMAP_Templates.ttcn 1 file changed, 37 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified fixeria: Looks good to me, but someone else must approve laforge: Looks good to me, approved
diff --git a/library/BSSMAP_Templates.ttcn b/library/BSSMAP_Templates.ttcn index 0810bd3..89efeb8 100644 --- a/library/BSSMAP_Templates.ttcn +++ b/library/BSSMAP_Templates.ttcn @@ -2468,6 +2468,34 @@ }
/* Section 3.2.1.57 */ +template (value) PDU_BSSAP ts_BSSMAP_UplinkReq +modifies ts_BSSAP_BSSMAP := { + pdu := { + bssmap := { + uplinkRequest := { + messageType := '1F'O, + talkerPriority := omit, + cellIdentifier := omit, + layer3Information := omit, + mobileIdentity := omit + } + } + } +} +template (present) PDU_BSSAP tr_BSSMAP_UplinkReq +modifies tr_BSSAP_BSSMAP := { + pdu := { + bssmap := { + uplinkRequest := { + messageType := '1F'O, + talkerPriority := *, + cellIdentifier := *, + layer3Information := *, + mobileIdentity := * + } + } + } +} template (value) PDU_BSSAP ts_BSSMAP_UplinkReq_L3(template (value) BIT2 priority, template (omit) BSSMAP_IE_CellIdentifier cell_id,