From: Timo Tietavainen Date: Tue, 15 Oct 2019 05:29:17 +0000 (+0300) Subject: Fix protobuf definition of PLMN-Identity-EUTRA-5GC X-Git-Tag: v0.2.1^0 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=86e67cf44a8aa33c6f9ab3f7bb60485e84e8530b;p=ric-plt%2Fstreaming-protobufs.git 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 --- 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