Fix SGNB CHANGE CONFIRM protobuf message
[ric-plt/streaming-protobufs.git] / rrc_failure_information.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
26 /*
27    Protocol Buffer definition for FailureInformation message.
28    (3GPP 38.331, ver 15.4.0)
29
30    Naming convention follows the ASN.1 field naming defined in chapter
31    '6.2.2 Message definitions' of below document:
32    http://www.3gpp.org/ftp//Specs/archive/38_series/38.331/38331-f40.zip
33
34    Dashes converted to underscores to make protobuf message syntax correct.
35 */
36
37
38 message FailureInformation
39 {
40     FailureInformation_IEs failureInformation = 1;
41 }
42
43 message FailureInformation_IEs
44 {
45     FailureInfoRLC_Bearer failureInfoRLC_Bearer = 1;
46     google.protobuf.StringValue lateNonCriticalExtension = 2;
47 }
48
49 message FailureInfoRLC_Bearer
50 {
51     enum FailureType {
52         protobuf_unspecified = 0;
53         duplication = 1;
54     }
55
56     uint32 cellGroupId = 1;
57     uint32 logicalChannelIdentity = 2;
58     FailureType failureType = 3;
59 }