From 86e67cf44a8aa33c6f9ab3f7bb60485e84e8530b Mon Sep 17 00:00:00 2001 From: Timo Tietavainen Date: Tue, 15 Oct 2019 08:29:17 +0300 Subject: [PATCH] Fix protobuf definition of PLMN-Identity-EUTRA-5GC Change the content of the PLMN_Identity_EUTRA_5GC message in protobuf to be an 'oneof' structure in order to be in line with the 3GPP specification where it is defined to be a 'CHOICE' type. Change-Id: I6b99ec91a3d9b1f11e363d286cc39fed808639d5 Signed-off-by: Timo Tietavainen --- rrc_common_types.proto | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rrc_common_types.proto b/rrc_common_types.proto index 998b0f9..25dce8e 100644 --- a/rrc_common_types.proto +++ b/rrc_common_types.proto @@ -5396,8 +5396,10 @@ message MCC message PLMN_Identity_EUTRA_5GC { - PLMN_Identity plmn_Identity_EUTRA_5GC = 1; - uint32 plmn_index = 2; + oneof c { + PLMN_Identity plmn_Identity_EUTRA_5GC = 1; + uint32 plmn_index = 2; + } } message PLMN_IdentityList_EUTRA_5GC -- 2.16.6