afc1411e69a8be5ec882a31faf66ed94bcdabf5f
[ric-plt/streaming-protobufs.git] / rrc_reconfiguration.proto
1 /*
2    Copyright (c) 2019 AT&T Intellectual Property.
3    Copyright (c) 2019 Nokia.
4
5    Licensed under the Creative Commons Attribution 4.0 International
6    Public License (the "License"); you may not use this file except
7    in compliance with the License. You may obtain a copy of the License at
8
9        https://creativecommons.org/licenses/by/4.0/
10
11    Unless required by applicable law or agreed to in writing, documentation
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16 */
17
18 syntax = "proto3";
19
20 package streaming_protobufs;
21
22 option go_package = "gerrit.o-ran-sc.org/r/ric-plt/streaming-protobufs";
23
24 import "google/protobuf/wrappers.proto";
25 import "common_types.proto";
26 import "rrc_common_types.proto";
27 import "rrc_sib.proto";
28 import "rrc_system_information.proto";
29
30 /*
31    Protocol Buffer definition for RRCReconfiguration message.
32    (3GPP 38.331, ver 15.4.0)
33
34    Naming convention follows the ASN.1 field naming defined in chapter
35    '6.2.2 Message definitions' of below document:
36    http://www.3gpp.org/ftp//Specs/archive/38_series/38.331/38331-f40.zip
37
38    Dashes converted to underscores to make protobuf message syntax correct.
39 */
40
41
42 message RRCReconfiguration
43 {
44     uint32 rrc_TransactionIdentifier = 1;
45     oneof criticalExtensions {
46         RRCReconfiguration_IEs rrcReconfiguration = 2;
47     }
48 }
49
50 message RRCReconfiguration_IEs
51 {
52     RadioBearerConfig radioBearerConfig = 1;
53     CellGroupConfig secondaryCellGroup = 2;
54     MeasConfig measConfig = 3;
55     google.protobuf.StringValue lateNonCriticalExtension = 4;
56     RRCReconfiguration_v1530_IEs nonCriticalExtension = 5;
57 }
58
59 message RRCReconfiguration_v1530_IEs
60 {
61     CellGroupConfig masterCellGroup = 1;
62     TrueOpt fullConfig = 2;
63     repeated string dedicatedNAS_MessageList = 3;
64     MasterKeyUpdate masterKeyUpdate = 4;
65     SIB1 dedicatedSIB1_Delivery = 5;
66     SystemInformation dedicatedSystemInformationDelivery = 6;
67     OtherConfig otherConfig = 7;
68     RRCReconfiguration_v1540_IEs nonCriticalExtension = 8;
69 }
70
71 message MasterKeyUpdate
72 {
73     bool keySetChangeIndicator = 1;
74     uint32 nextHopChainingCount = 2;
75     google.protobuf.StringValue nas_Container = 3;
76 }
77
78 message RRCReconfiguration_v1540_IEs
79 {
80     OtherConfig_v1540 otherConfig_v1540 = 1;
81 }