pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/35574?usp=email )
Change subject: GTP_Templates: Add gtp1_requests template to match GTPv1C req messages ......................................................................
GTP_Templates: Add gtp1_requests template to match GTPv1C req messages
I'm finally not using it for now, but since it takes a while to write, leave it there for some lucky future user.
Change-Id: Ibf4b98e19ff13f23c552f50ca91832f0d317bbbf --- M library/GTP_Templates.ttcn 1 file changed, 43 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/74/35574/1
diff --git a/library/GTP_Templates.ttcn b/library/GTP_Templates.ttcn index 30e42e6..3788725 100644 --- a/library/GTP_Templates.ttcn +++ b/library/GTP_Templates.ttcn @@ -19,6 +19,37 @@ import from IPCP_Types all; import from GSM_Types all; // RoutingAreaIdentification, CellIdentity
+ template (present) OCT1 gtp1_requests := ( + '10'O, /* createPDPContextRequest */ + '12'O, /* updatePDPContextRequest */ + '14'O, /* */ + '16'O, /* deletePDPContextRequest */ + '1B'O, /* pdu_NotificationRequest */ + '1D'O, /* pdu_NotificationRejectRequest */ + '1F'O, /* supportedExtensionHeadersNotification */ + '20'O, /* sendRouteingInformationForGPRSRequest */ + '22'O, /* failureReportRequest */ + '24'O, /* noteMS_GPRSPresentRequest */ + '30'O, /* identificationRequest */ + '32'O, /* sgsn_ContextRequest */ + '35'O, /* forwardRelocationRequest */ + '38'O, /* relocationCancelRequest */ + '3A'O, /* forwardSRNSContext */ + '3D'O, /* uERegistrationQueryRequest */ + '46'O, /* ranInformationRelay */ + '60'O, /* mBMSNotificationRequest */ + '62'O, /* mBMSNotificationRejectRequest */ + '64'O, /* createMBMSContextRequest */ + '66'O, /* updateMBMSContextRequest */ + '68'O, /* deleteMBMSContextRequest */ + '70'O, /* mBMSRegistrationRequest */ + '72'O, /* mBMSDeRegistrationRequest */ + '74'O, /* mBMSSessionStartRequest */ + '76'O, /* mBMSSessionStopRequest */ + '78'O, /* mBMSSessionUpdateRequest */ + '80'O /* mS_InfoChangeNotificationRequest */ + ); + type record GTP_CellId { RoutingAreaIdentification ra_id, CellIdentity cell_id