lynxis lazus submitted this change.
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(-)
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 change 38392. To unsubscribe, or for help writing mail filters, visit settings.