From 77961899de8a117de80c8f89a4c54944569c0e24 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 31 Jul 2025 20:06:04 +0200 Subject: [PATCH 1/2] cosmetic: NG_NAS_MSgContainers: Fix trailing whitespace --- ttcn/Lib3GPP/NG_NAS/NG_NAS_MsgContainers.ttcn | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ttcn/Lib3GPP/NG_NAS/NG_NAS_MsgContainers.ttcn b/ttcn/Lib3GPP/NG_NAS/NG_NAS_MsgContainers.ttcn index 1444d40..21ea4e8 100644 --- a/ttcn/Lib3GPP/NG_NAS/NG_NAS_MsgContainers.ttcn +++ b/ttcn/Lib3GPP/NG_NAS/NG_NAS_MsgContainers.ttcn @@ -51,7 +51,7 @@ module NG_NAS_MsgContainers CLOSE_UE_TEST_LOOP_COMPLETE close_Ue_Test_Loop_Complete, OPEN_UE_TEST_LOOP_COMPLETE open_Ue_Test_Loop_Complete, - + NSSAI_DELETE_RESPONSE nssai_Delete_Response, SET_UAI_RESPONSE set_UAI_Response, SET_UL_MESSAGE_RESPONSE set_UL_Message_Response, @@ -87,7 +87,7 @@ module NG_NAS_MsgContainers service_Request, messageType = '01001100'B; ul_Nas_Transport, messageType = '01100111'B; )" - + } type union NG_NAS_DL_Message_Type { /* NAS message with direction 'network to UE' or 'both' */ @@ -118,9 +118,9 @@ module NG_NAS_MsgContainers NG_SECURITY_MODE_COMMAND security_Mode_Command, NG_SERVICE_ACCEPT service_Accept, NG_SERVICE_REJECT service_Reject, - + RESETUEPOSITIONINGSTOREDINFORMATION reset_UE_Positioning_Stored_Information, // For AGNSS - + ACTIVATE_TEST_MODE activate_Test_Mode, DEACTIVATE_TEST_MODE deactivate_Test_Mode, @@ -167,7 +167,7 @@ module NG_NAS_MsgContainers service_Accept, messageType = '01001110'B; service_Reject, messageType = '01001101'B; )" - } + } //**************************************************************************** // NAS SECURITY PROTECTION -- GitLab From cec63de108cc71f14c63aaf08b8da61385431f45 Mon Sep 17 00:00:00 2001 From: Pau Espin Pedrol Date: Thu, 31 Jul 2025 20:06:31 +0200 Subject: [PATCH 2/2] NG_NAS_MSgContainers: Fix wrong messageType assigned to deregistration_RequestMO --- ttcn/Lib3GPP/NG_NAS/NG_NAS_MsgContainers.ttcn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttcn/Lib3GPP/NG_NAS/NG_NAS_MsgContainers.ttcn b/ttcn/Lib3GPP/NG_NAS/NG_NAS_MsgContainers.ttcn index 21ea4e8..9cbb3ae 100644 --- a/ttcn/Lib3GPP/NG_NAS/NG_NAS_MsgContainers.ttcn +++ b/ttcn/Lib3GPP/NG_NAS/NG_NAS_MsgContainers.ttcn @@ -67,7 +67,7 @@ module NG_NAS_MsgContainers configuration_Update_Complete, messageType = '01010101'B; cp_Service_Request, messageType = '01001111'B; deregistration_Accept, messageType = '01000110'B; - deregistration_RequestMO, messageType = '01001000'B; + deregistration_RequestMO, messageType = '01000101'B; gmm_Status, messageType = '01100100'B; gsm_Status, messageType = '11010110'B; network_Slice_Specific_Authentication_Complete, messageType = '01010001'B; -- GitLab