lynxis lazus has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38392?usp=email )
Change subject: L3_Templates: GMM: fix off-by-one error in ServiceType IE
......................................................................
L3_Templates: GMM: fix off-by-one error in ServiceType IE
The ServiceType IE is used in the GMM Service Request.
Change-Id: I79337fa31ffa82f766c6a1f238739c5e10773823
---
M library/L3_Templates.ttcn
1 file changed, 5 insertions(+), 5 deletions(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, approved
diff --git a/library/L3_Templates.ttcn b/library/L3_Templates.ttcn
index 4c9a2f6..f4de9a3 100644
--- a/library/L3_Templates.ttcn
+++ b/library/L3_Templates.ttcn
@@ -46,11 +46,11 @@
/* TS 24.008 10.5.5.20 Service type */
type enumerated ServiceType {
- SERVICE_TYPE_Signalling ('001'B),
- SERVICE_TYPE_Data ('010'B),
- SERVICE_TYPE_Paging_Response ('011'B),
- SERVICE_TYPE_MBMS_Multicast_Service_Reception ('100'B),
- SERVICE_TYPE_MBMS_Broadcast_Service_Reception ('101'B)
+ SERVICE_TYPE_Signalling ('000'B),
+ SERVICE_TYPE_Data ('001'B),
+ SERVICE_TYPE_Paging_Response ('010'B),
+ SERVICE_TYPE_MBMS_Multicast_Service_Reception ('011'B),
+ SERVICE_TYPE_MBMS_Broadcast_Service_Reception ('100'B)
}
template ML3_Cause_TLV ts_ML3_Cause(BIT7 cause, BIT4 loc := '0001'B, BIT2 std :=
'11'B) := {
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38392?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I79337fa31ffa82f766c6a1f238739c5e10773823
Gerrit-Change-Number: 38392
Gerrit-PatchSet: 1
Gerrit-Owner: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: lynxis lazus <lynxis(a)fe80.eu>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>