pespin has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/35651?usp=email )
Change subject: GSUP: Fix PDPInfoCompl IE
......................................................................
GSUP: Fix PDPInfoCompl IE
Change-Id: I7b6e584f12828019fc9c0f961a0c8692c0b44b1c
---
M library/GSUP_Templates.ttcn
M library/GSUP_Types.ttcn
2 files changed, 28 insertions(+), 2 deletions(-)
Approvals:
Jenkins Builder: Verified
laforge: Looks good to me, approved
fixeria: Looks good to me, but someone else must approve
diff --git a/library/GSUP_Templates.ttcn b/library/GSUP_Templates.ttcn
index 634cfc3..7146e97 100644
--- a/library/GSUP_Templates.ttcn
+++ b/library/GSUP_Templates.ttcn
@@ -159,6 +159,22 @@
}
}
+template (value) GSUP_IE ts_GSUP_IE_PdpInfoCompl := {
+ tag := OSMO_GSUP_PDP_INFO_COMPL_IE,
+ len := 0, /* overwritten */
+ val := {
+ pdp_info_compl := ''O
+ }
+}
+
+template (present) GSUP_IE tr_GSUP_IE_PdpInfoCompl := {
+ tag := OSMO_GSUP_PDP_INFO_COMPL_IE,
+ len := 0, /* overwritten */
+ val := {
+ pdp_info_compl := ''O
+ }
+}
+
template GSUP_IE ts_GSUP_IE_PdpInfo(template (value) octetstring apn,
template (value) GSUP_PDP_Address pdp_address,
template (value) octetstring pdp_qos) := {
diff --git a/library/GSUP_Types.ttcn b/library/GSUP_Types.ttcn
index 666d8d0..07356f7 100644
--- a/library/GSUP_Types.ttcn
+++ b/library/GSUP_Types.ttcn
@@ -244,6 +244,7 @@
cause, tag = OSMO_GSUP_CAUSE_IE;
cancel_type, tag = OSMO_GSUP_CANCEL_TYPE_IE;
auth_tuple, tag = OSMO_GSUP_AUTH_TUPLE_IE;
+ pdp_info_compl, tag = OSMO_GSUP_PDP_INFO_COMPL_IE;
auts, tag = OSMO_GSUP_AUTS_IE;
rand, tag = OSMO_GSUP_RAND_IE;
sres, tag = OSMO_GSUP_SRES_IE;
@@ -301,8 +302,8 @@
hexstring imsi,
integer cause,
GSUP_CancelType cancel_type,
- //boolean pdp_info_compl,
- //boolean freeze_ptmsi,
+ octetstring pdp_info_compl,
+ //octetstring freeze_ptmsi,
GSUP_IEs auth_tuple,
octetstring auts,
octetstring rand,
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/35651?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I7b6e584f12828019fc9c0f961a0c8692c0b44b1c
Gerrit-Change-Number: 35651
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged