lynxis lazus has uploaded this change for review. ( 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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/92/38392/1
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) := {