blob: 593ef2dddb4f37c43ae0773769f1acad6d2ea2b0 [file] [log] [blame]
William Kurkian1b363f42019-03-12 15:28:12 -04001// Code generated by protoc-gen-go. DO NOT EDIT.
2// source: voltha_protos/common.proto
3
William Kurkianad745652019-03-20 08:45:51 -04004package common
William Kurkian1b363f42019-03-12 15:28:12 -04005
William Kurkianad745652019-03-20 08:45:51 -04006import (
7 fmt "fmt"
8 proto "github.com/golang/protobuf/proto"
9 math "math"
10)
William Kurkian1b363f42019-03-12 15:28:12 -040011
12// Reference imports to suppress errors if they are not otherwise used.
13var _ = proto.Marshal
14var _ = fmt.Errorf
15var _ = math.Inf
16
17// This is a compile-time assertion to ensure that this generated file
18// is compatible with the proto package it is being compiled against.
19// A compilation error at this line likely means your copy of the
20// proto package needs to be updated.
William Kurkianad745652019-03-20 08:45:51 -040021const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
William Kurkian1b363f42019-03-12 15:28:12 -040022
23type TestModeKeys int32
24
25const (
26 TestModeKeys_api_test TestModeKeys = 0
27)
28
29var TestModeKeys_name = map[int32]string{
30 0: "api_test",
31}
William Kurkianad745652019-03-20 08:45:51 -040032
William Kurkian1b363f42019-03-12 15:28:12 -040033var TestModeKeys_value = map[string]int32{
34 "api_test": 0,
35}
36
37func (x TestModeKeys) String() string {
38 return proto.EnumName(TestModeKeys_name, int32(x))
39}
William Kurkianad745652019-03-20 08:45:51 -040040
William Kurkian1b363f42019-03-12 15:28:12 -040041func (TestModeKeys) EnumDescriptor() ([]byte, []int) {
William Kurkianad745652019-03-20 08:45:51 -040042 return fileDescriptor_c2e3fd231961e826, []int{0}
William Kurkian1b363f42019-03-12 15:28:12 -040043}
44
William Kurkian1b363f42019-03-12 15:28:12 -040045// Administrative State
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030046type AdminState_Types int32
William Kurkian1b363f42019-03-12 15:28:12 -040047
48const (
49 // The administrative state of the device is unknown
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030050 AdminState_UNKNOWN AdminState_Types = 0
William Kurkian1b363f42019-03-12 15:28:12 -040051 // The device is pre-provisioned into Voltha, but not contacted by it
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030052 AdminState_PREPROVISIONED AdminState_Types = 1
William Kurkian1b363f42019-03-12 15:28:12 -040053 // The device is enabled for activation and operation
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030054 AdminState_ENABLED AdminState_Types = 2
William Kurkian1b363f42019-03-12 15:28:12 -040055 // The device is disabled and shall not perform its intended forwarding
56 // functions other than being available for re-activation.
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030057 AdminState_DISABLED AdminState_Types = 3
William Kurkian1b363f42019-03-12 15:28:12 -040058 // The device is in the state of image download
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030059 AdminState_DOWNLOADING_IMAGE AdminState_Types = 4
William Kurkian1b363f42019-03-12 15:28:12 -040060)
61
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030062var AdminState_Types_name = map[int32]string{
William Kurkian1b363f42019-03-12 15:28:12 -040063 0: "UNKNOWN",
64 1: "PREPROVISIONED",
65 2: "ENABLED",
66 3: "DISABLED",
67 4: "DOWNLOADING_IMAGE",
William Kurkian1b363f42019-03-12 15:28:12 -040068}
William Kurkianad745652019-03-20 08:45:51 -040069
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030070var AdminState_Types_value = map[string]int32{
William Kurkian1b363f42019-03-12 15:28:12 -040071 "UNKNOWN": 0,
72 "PREPROVISIONED": 1,
73 "ENABLED": 2,
74 "DISABLED": 3,
75 "DOWNLOADING_IMAGE": 4,
William Kurkian1b363f42019-03-12 15:28:12 -040076}
77
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030078func (x AdminState_Types) String() string {
79 return proto.EnumName(AdminState_Types_name, int32(x))
William Kurkian1b363f42019-03-12 15:28:12 -040080}
William Kurkianad745652019-03-20 08:45:51 -040081
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030082func (AdminState_Types) EnumDescriptor() ([]byte, []int) {
yasin sapli2bbfbb42021-11-01 14:30:10 +000083 return fileDescriptor_c2e3fd231961e826, []int{4, 0}
William Kurkian1b363f42019-03-12 15:28:12 -040084}
85
86// Operational Status
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030087type OperStatus_Types int32
William Kurkian1b363f42019-03-12 15:28:12 -040088
89const (
90 // The status of the device is unknown at this point
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030091 OperStatus_UNKNOWN OperStatus_Types = 0
William Kurkian1b363f42019-03-12 15:28:12 -040092 // The device has been discovered, but not yet activated
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030093 OperStatus_DISCOVERED OperStatus_Types = 1
William Kurkian1b363f42019-03-12 15:28:12 -040094 // The device is being activated (booted, rebooted, upgraded, etc.)
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030095 OperStatus_ACTIVATING OperStatus_Types = 2
William Kurkian1b363f42019-03-12 15:28:12 -040096 // Service impacting tests are being conducted
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030097 OperStatus_TESTING OperStatus_Types = 3
William Kurkian1b363f42019-03-12 15:28:12 -040098 // The device is up and active
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030099 OperStatus_ACTIVE OperStatus_Types = 4
William Kurkian1b363f42019-03-12 15:28:12 -0400100 // The device has failed and cannot fulfill its intended role
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300101 OperStatus_FAILED OperStatus_Types = 5
Maninder4ed97f52021-03-15 10:14:55 +0530102 // The device is reconciling
103 OperStatus_RECONCILING OperStatus_Types = 6
Manindera4b9e552021-06-16 17:33:04 +0530104 // The device is in reconciling failed
105 OperStatus_RECONCILING_FAILED OperStatus_Types = 7
Abhilash Laxmeshwar540a0b92022-06-13 11:24:06 +0530106 // The device has rebooted
107 OperStatus_REBOOTED OperStatus_Types = 8
William Kurkian1b363f42019-03-12 15:28:12 -0400108)
109
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300110var OperStatus_Types_name = map[int32]string{
William Kurkian1b363f42019-03-12 15:28:12 -0400111 0: "UNKNOWN",
112 1: "DISCOVERED",
113 2: "ACTIVATING",
114 3: "TESTING",
115 4: "ACTIVE",
116 5: "FAILED",
Maninder4ed97f52021-03-15 10:14:55 +0530117 6: "RECONCILING",
Manindera4b9e552021-06-16 17:33:04 +0530118 7: "RECONCILING_FAILED",
Abhilash Laxmeshwar540a0b92022-06-13 11:24:06 +0530119 8: "REBOOTED",
William Kurkian1b363f42019-03-12 15:28:12 -0400120}
William Kurkianad745652019-03-20 08:45:51 -0400121
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300122var OperStatus_Types_value = map[string]int32{
Manindera4b9e552021-06-16 17:33:04 +0530123 "UNKNOWN": 0,
124 "DISCOVERED": 1,
125 "ACTIVATING": 2,
126 "TESTING": 3,
127 "ACTIVE": 4,
128 "FAILED": 5,
129 "RECONCILING": 6,
130 "RECONCILING_FAILED": 7,
Abhilash Laxmeshwar540a0b92022-06-13 11:24:06 +0530131 "REBOOTED": 8,
William Kurkian1b363f42019-03-12 15:28:12 -0400132}
133
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300134func (x OperStatus_Types) String() string {
135 return proto.EnumName(OperStatus_Types_name, int32(x))
William Kurkian1b363f42019-03-12 15:28:12 -0400136}
William Kurkianad745652019-03-20 08:45:51 -0400137
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300138func (OperStatus_Types) EnumDescriptor() ([]byte, []int) {
yasin sapli2bbfbb42021-11-01 14:30:10 +0000139 return fileDescriptor_c2e3fd231961e826, []int{5, 0}
William Kurkian1b363f42019-03-12 15:28:12 -0400140}
141
142// Connectivity Status
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300143type ConnectStatus_Types int32
William Kurkian1b363f42019-03-12 15:28:12 -0400144
145const (
146 // The device connectivity status is unknown
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300147 ConnectStatus_UNKNOWN ConnectStatus_Types = 0
William Kurkian1b363f42019-03-12 15:28:12 -0400148 // The device cannot be reached by Voltha
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300149 ConnectStatus_UNREACHABLE ConnectStatus_Types = 1
William Kurkian1b363f42019-03-12 15:28:12 -0400150 // There is live communication between device and Voltha
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300151 ConnectStatus_REACHABLE ConnectStatus_Types = 2
William Kurkian1b363f42019-03-12 15:28:12 -0400152)
153
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300154var ConnectStatus_Types_name = map[int32]string{
William Kurkian1b363f42019-03-12 15:28:12 -0400155 0: "UNKNOWN",
156 1: "UNREACHABLE",
157 2: "REACHABLE",
158}
William Kurkianad745652019-03-20 08:45:51 -0400159
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300160var ConnectStatus_Types_value = map[string]int32{
William Kurkian1b363f42019-03-12 15:28:12 -0400161 "UNKNOWN": 0,
162 "UNREACHABLE": 1,
163 "REACHABLE": 2,
164}
165
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300166func (x ConnectStatus_Types) String() string {
167 return proto.EnumName(ConnectStatus_Types_name, int32(x))
William Kurkian1b363f42019-03-12 15:28:12 -0400168}
William Kurkianad745652019-03-20 08:45:51 -0400169
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +0300170func (ConnectStatus_Types) EnumDescriptor() ([]byte, []int) {
yasin sapli2bbfbb42021-11-01 14:30:10 +0000171 return fileDescriptor_c2e3fd231961e826, []int{6, 0}
William Kurkian1b363f42019-03-12 15:28:12 -0400172}
173
174type OperationResp_OperationReturnCode int32
175
176const (
177 OperationResp_OPERATION_SUCCESS OperationResp_OperationReturnCode = 0
178 OperationResp_OPERATION_FAILURE OperationResp_OperationReturnCode = 1
179 OperationResp_OPERATION_UNSUPPORTED OperationResp_OperationReturnCode = 2
Maninder2f9d63e2021-02-08 11:42:19 +0530180 OperationResp_OPERATION_IN_PROGRESS OperationResp_OperationReturnCode = 3
William Kurkian1b363f42019-03-12 15:28:12 -0400181)
182
183var OperationResp_OperationReturnCode_name = map[int32]string{
184 0: "OPERATION_SUCCESS",
185 1: "OPERATION_FAILURE",
186 2: "OPERATION_UNSUPPORTED",
Maninder2f9d63e2021-02-08 11:42:19 +0530187 3: "OPERATION_IN_PROGRESS",
William Kurkian1b363f42019-03-12 15:28:12 -0400188}
William Kurkianad745652019-03-20 08:45:51 -0400189
William Kurkian1b363f42019-03-12 15:28:12 -0400190var OperationResp_OperationReturnCode_value = map[string]int32{
191 "OPERATION_SUCCESS": 0,
192 "OPERATION_FAILURE": 1,
193 "OPERATION_UNSUPPORTED": 2,
Maninder2f9d63e2021-02-08 11:42:19 +0530194 "OPERATION_IN_PROGRESS": 3,
William Kurkian1b363f42019-03-12 15:28:12 -0400195}
196
197func (x OperationResp_OperationReturnCode) String() string {
198 return proto.EnumName(OperationResp_OperationReturnCode_name, int32(x))
199}
William Kurkianad745652019-03-20 08:45:51 -0400200
William Kurkian1b363f42019-03-12 15:28:12 -0400201func (OperationResp_OperationReturnCode) EnumDescriptor() ([]byte, []int) {
yasin sapli2bbfbb42021-11-01 14:30:10 +0000202 return fileDescriptor_c2e3fd231961e826, []int{7, 0}
203}
204
205// Full path for KV store
206type Key struct {
207 Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
208 XXX_NoUnkeyedLiteral struct{} `json:"-"`
209 XXX_unrecognized []byte `json:"-"`
210 XXX_sizecache int32 `json:"-"`
211}
212
213func (m *Key) Reset() { *m = Key{} }
214func (m *Key) String() string { return proto.CompactTextString(m) }
215func (*Key) ProtoMessage() {}
216func (*Key) Descriptor() ([]byte, []int) {
217 return fileDescriptor_c2e3fd231961e826, []int{0}
218}
219
220func (m *Key) XXX_Unmarshal(b []byte) error {
221 return xxx_messageInfo_Key.Unmarshal(m, b)
222}
223func (m *Key) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
224 return xxx_messageInfo_Key.Marshal(b, m, deterministic)
225}
226func (m *Key) XXX_Merge(src proto.Message) {
227 xxx_messageInfo_Key.Merge(m, src)
228}
229func (m *Key) XXX_Size() int {
230 return xxx_messageInfo_Key.Size(m)
231}
232func (m *Key) XXX_DiscardUnknown() {
233 xxx_messageInfo_Key.DiscardUnknown(m)
234}
235
236var xxx_messageInfo_Key proto.InternalMessageInfo
237
238func (m *Key) GetKey() string {
239 if m != nil {
240 return m.Key
241 }
242 return ""
William Kurkian1b363f42019-03-12 15:28:12 -0400243}
244
245// Convey a resource identifier
246type ID struct {
247 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
248 XXX_NoUnkeyedLiteral struct{} `json:"-"`
249 XXX_unrecognized []byte `json:"-"`
250 XXX_sizecache int32 `json:"-"`
251}
252
253func (m *ID) Reset() { *m = ID{} }
254func (m *ID) String() string { return proto.CompactTextString(m) }
255func (*ID) ProtoMessage() {}
256func (*ID) Descriptor() ([]byte, []int) {
yasin sapli2bbfbb42021-11-01 14:30:10 +0000257 return fileDescriptor_c2e3fd231961e826, []int{1}
William Kurkian1b363f42019-03-12 15:28:12 -0400258}
William Kurkianad745652019-03-20 08:45:51 -0400259
William Kurkian1b363f42019-03-12 15:28:12 -0400260func (m *ID) XXX_Unmarshal(b []byte) error {
261 return xxx_messageInfo_ID.Unmarshal(m, b)
262}
263func (m *ID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
264 return xxx_messageInfo_ID.Marshal(b, m, deterministic)
265}
William Kurkianad745652019-03-20 08:45:51 -0400266func (m *ID) XXX_Merge(src proto.Message) {
267 xxx_messageInfo_ID.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -0400268}
269func (m *ID) XXX_Size() int {
270 return xxx_messageInfo_ID.Size(m)
271}
272func (m *ID) XXX_DiscardUnknown() {
273 xxx_messageInfo_ID.DiscardUnknown(m)
274}
275
276var xxx_messageInfo_ID proto.InternalMessageInfo
277
278func (m *ID) GetId() string {
279 if m != nil {
280 return m.Id
281 }
282 return ""
283}
284
285// Represents a list of IDs
286type IDs struct {
287 Items []*ID `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
288 XXX_NoUnkeyedLiteral struct{} `json:"-"`
289 XXX_unrecognized []byte `json:"-"`
290 XXX_sizecache int32 `json:"-"`
291}
292
293func (m *IDs) Reset() { *m = IDs{} }
294func (m *IDs) String() string { return proto.CompactTextString(m) }
295func (*IDs) ProtoMessage() {}
296func (*IDs) Descriptor() ([]byte, []int) {
yasin sapli2bbfbb42021-11-01 14:30:10 +0000297 return fileDescriptor_c2e3fd231961e826, []int{2}
William Kurkian1b363f42019-03-12 15:28:12 -0400298}
William Kurkianad745652019-03-20 08:45:51 -0400299
William Kurkian1b363f42019-03-12 15:28:12 -0400300func (m *IDs) XXX_Unmarshal(b []byte) error {
301 return xxx_messageInfo_IDs.Unmarshal(m, b)
302}
303func (m *IDs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
304 return xxx_messageInfo_IDs.Marshal(b, m, deterministic)
305}
William Kurkianad745652019-03-20 08:45:51 -0400306func (m *IDs) XXX_Merge(src proto.Message) {
307 xxx_messageInfo_IDs.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -0400308}
309func (m *IDs) XXX_Size() int {
310 return xxx_messageInfo_IDs.Size(m)
311}
312func (m *IDs) XXX_DiscardUnknown() {
313 xxx_messageInfo_IDs.DiscardUnknown(m)
314}
315
316var xxx_messageInfo_IDs proto.InternalMessageInfo
317
318func (m *IDs) GetItems() []*ID {
319 if m != nil {
320 return m.Items
321 }
322 return nil
323}
324
khenaidoo5cb0d402021-12-08 14:09:16 -0500325type Connection struct {
326 // endpoint is the endpoint sending the request
327 Endpoint string `protobuf:"bytes,1,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
328 // contextInfo represents additional contextual information
329 ContextInfo string `protobuf:"bytes,2,opt,name=contextInfo,proto3" json:"contextInfo,omitempty"`
330 // keep_alive_interval is used to indicate to the remote endpoint how often it
331 // will get a keep alive notification
332 KeepAliveInterval int64 `protobuf:"varint,3,opt,name=keep_alive_interval,json=keepAliveInterval,proto3" json:"keep_alive_interval,omitempty"`
333 XXX_NoUnkeyedLiteral struct{} `json:"-"`
334 XXX_unrecognized []byte `json:"-"`
335 XXX_sizecache int32 `json:"-"`
336}
337
338func (m *Connection) Reset() { *m = Connection{} }
339func (m *Connection) String() string { return proto.CompactTextString(m) }
340func (*Connection) ProtoMessage() {}
341func (*Connection) Descriptor() ([]byte, []int) {
yasin sapli2bbfbb42021-11-01 14:30:10 +0000342 return fileDescriptor_c2e3fd231961e826, []int{3}
khenaidoo5cb0d402021-12-08 14:09:16 -0500343}
344
345func (m *Connection) XXX_Unmarshal(b []byte) error {
346 return xxx_messageInfo_Connection.Unmarshal(m, b)
347}
348func (m *Connection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
349 return xxx_messageInfo_Connection.Marshal(b, m, deterministic)
350}
351func (m *Connection) XXX_Merge(src proto.Message) {
352 xxx_messageInfo_Connection.Merge(m, src)
353}
354func (m *Connection) XXX_Size() int {
355 return xxx_messageInfo_Connection.Size(m)
356}
357func (m *Connection) XXX_DiscardUnknown() {
358 xxx_messageInfo_Connection.DiscardUnknown(m)
359}
360
361var xxx_messageInfo_Connection proto.InternalMessageInfo
362
363func (m *Connection) GetEndpoint() string {
364 if m != nil {
365 return m.Endpoint
366 }
367 return ""
368}
369
370func (m *Connection) GetContextInfo() string {
371 if m != nil {
372 return m.ContextInfo
373 }
374 return ""
375}
376
377func (m *Connection) GetKeepAliveInterval() int64 {
378 if m != nil {
379 return m.KeepAliveInterval
380 }
381 return 0
382}
383
William Kurkian1b363f42019-03-12 15:28:12 -0400384type AdminState struct {
385 XXX_NoUnkeyedLiteral struct{} `json:"-"`
386 XXX_unrecognized []byte `json:"-"`
387 XXX_sizecache int32 `json:"-"`
388}
389
390func (m *AdminState) Reset() { *m = AdminState{} }
391func (m *AdminState) String() string { return proto.CompactTextString(m) }
392func (*AdminState) ProtoMessage() {}
393func (*AdminState) Descriptor() ([]byte, []int) {
yasin sapli2bbfbb42021-11-01 14:30:10 +0000394 return fileDescriptor_c2e3fd231961e826, []int{4}
William Kurkian1b363f42019-03-12 15:28:12 -0400395}
William Kurkianad745652019-03-20 08:45:51 -0400396
William Kurkian1b363f42019-03-12 15:28:12 -0400397func (m *AdminState) XXX_Unmarshal(b []byte) error {
398 return xxx_messageInfo_AdminState.Unmarshal(m, b)
399}
400func (m *AdminState) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
401 return xxx_messageInfo_AdminState.Marshal(b, m, deterministic)
402}
William Kurkianad745652019-03-20 08:45:51 -0400403func (m *AdminState) XXX_Merge(src proto.Message) {
404 xxx_messageInfo_AdminState.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -0400405}
406func (m *AdminState) XXX_Size() int {
407 return xxx_messageInfo_AdminState.Size(m)
408}
409func (m *AdminState) XXX_DiscardUnknown() {
410 xxx_messageInfo_AdminState.DiscardUnknown(m)
411}
412
413var xxx_messageInfo_AdminState proto.InternalMessageInfo
414
415type OperStatus struct {
416 XXX_NoUnkeyedLiteral struct{} `json:"-"`
417 XXX_unrecognized []byte `json:"-"`
418 XXX_sizecache int32 `json:"-"`
419}
420
421func (m *OperStatus) Reset() { *m = OperStatus{} }
422func (m *OperStatus) String() string { return proto.CompactTextString(m) }
423func (*OperStatus) ProtoMessage() {}
424func (*OperStatus) Descriptor() ([]byte, []int) {
yasin sapli2bbfbb42021-11-01 14:30:10 +0000425 return fileDescriptor_c2e3fd231961e826, []int{5}
William Kurkian1b363f42019-03-12 15:28:12 -0400426}
William Kurkianad745652019-03-20 08:45:51 -0400427
William Kurkian1b363f42019-03-12 15:28:12 -0400428func (m *OperStatus) XXX_Unmarshal(b []byte) error {
429 return xxx_messageInfo_OperStatus.Unmarshal(m, b)
430}
431func (m *OperStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
432 return xxx_messageInfo_OperStatus.Marshal(b, m, deterministic)
433}
William Kurkianad745652019-03-20 08:45:51 -0400434func (m *OperStatus) XXX_Merge(src proto.Message) {
435 xxx_messageInfo_OperStatus.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -0400436}
437func (m *OperStatus) XXX_Size() int {
438 return xxx_messageInfo_OperStatus.Size(m)
439}
440func (m *OperStatus) XXX_DiscardUnknown() {
441 xxx_messageInfo_OperStatus.DiscardUnknown(m)
442}
443
444var xxx_messageInfo_OperStatus proto.InternalMessageInfo
445
446type ConnectStatus struct {
447 XXX_NoUnkeyedLiteral struct{} `json:"-"`
448 XXX_unrecognized []byte `json:"-"`
449 XXX_sizecache int32 `json:"-"`
450}
451
452func (m *ConnectStatus) Reset() { *m = ConnectStatus{} }
453func (m *ConnectStatus) String() string { return proto.CompactTextString(m) }
454func (*ConnectStatus) ProtoMessage() {}
455func (*ConnectStatus) Descriptor() ([]byte, []int) {
yasin sapli2bbfbb42021-11-01 14:30:10 +0000456 return fileDescriptor_c2e3fd231961e826, []int{6}
William Kurkian1b363f42019-03-12 15:28:12 -0400457}
William Kurkianad745652019-03-20 08:45:51 -0400458
William Kurkian1b363f42019-03-12 15:28:12 -0400459func (m *ConnectStatus) XXX_Unmarshal(b []byte) error {
460 return xxx_messageInfo_ConnectStatus.Unmarshal(m, b)
461}
462func (m *ConnectStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
463 return xxx_messageInfo_ConnectStatus.Marshal(b, m, deterministic)
464}
William Kurkianad745652019-03-20 08:45:51 -0400465func (m *ConnectStatus) XXX_Merge(src proto.Message) {
466 xxx_messageInfo_ConnectStatus.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -0400467}
468func (m *ConnectStatus) XXX_Size() int {
469 return xxx_messageInfo_ConnectStatus.Size(m)
470}
471func (m *ConnectStatus) XXX_DiscardUnknown() {
472 xxx_messageInfo_ConnectStatus.DiscardUnknown(m)
473}
474
475var xxx_messageInfo_ConnectStatus proto.InternalMessageInfo
476
477type OperationResp struct {
478 // Return code
William Kurkian12fc0af2019-04-18 14:27:45 -0400479 Code OperationResp_OperationReturnCode `protobuf:"varint,1,opt,name=code,proto3,enum=common.OperationResp_OperationReturnCode" json:"code,omitempty"`
William Kurkian1b363f42019-03-12 15:28:12 -0400480 // Additional Info
481 AdditionalInfo string `protobuf:"bytes,2,opt,name=additional_info,json=additionalInfo,proto3" json:"additional_info,omitempty"`
482 XXX_NoUnkeyedLiteral struct{} `json:"-"`
483 XXX_unrecognized []byte `json:"-"`
484 XXX_sizecache int32 `json:"-"`
485}
486
487func (m *OperationResp) Reset() { *m = OperationResp{} }
488func (m *OperationResp) String() string { return proto.CompactTextString(m) }
489func (*OperationResp) ProtoMessage() {}
490func (*OperationResp) Descriptor() ([]byte, []int) {
yasin sapli2bbfbb42021-11-01 14:30:10 +0000491 return fileDescriptor_c2e3fd231961e826, []int{7}
William Kurkian1b363f42019-03-12 15:28:12 -0400492}
William Kurkianad745652019-03-20 08:45:51 -0400493
William Kurkian1b363f42019-03-12 15:28:12 -0400494func (m *OperationResp) XXX_Unmarshal(b []byte) error {
495 return xxx_messageInfo_OperationResp.Unmarshal(m, b)
496}
497func (m *OperationResp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
498 return xxx_messageInfo_OperationResp.Marshal(b, m, deterministic)
499}
William Kurkianad745652019-03-20 08:45:51 -0400500func (m *OperationResp) XXX_Merge(src proto.Message) {
501 xxx_messageInfo_OperationResp.Merge(m, src)
William Kurkian1b363f42019-03-12 15:28:12 -0400502}
503func (m *OperationResp) XXX_Size() int {
504 return xxx_messageInfo_OperationResp.Size(m)
505}
506func (m *OperationResp) XXX_DiscardUnknown() {
507 xxx_messageInfo_OperationResp.DiscardUnknown(m)
508}
509
510var xxx_messageInfo_OperationResp proto.InternalMessageInfo
511
512func (m *OperationResp) GetCode() OperationResp_OperationReturnCode {
513 if m != nil {
514 return m.Code
515 }
516 return OperationResp_OPERATION_SUCCESS
517}
518
519func (m *OperationResp) GetAdditionalInfo() string {
520 if m != nil {
521 return m.AdditionalInfo
522 }
523 return ""
524}
525
Akash Kankanala761955c2024-02-21 19:32:20 +0530526type PortStatistics struct {
pnalmas90299422025-12-16 11:29:25 +0530527 IntfId uint32 `protobuf:"fixed32,1,opt,name=intf_id,json=intfId,proto3" json:"intf_id,omitempty"`
528 RxBytes uint64 `protobuf:"fixed64,2,opt,name=rx_bytes,json=rxBytes,proto3" json:"rx_bytes,omitempty"`
529 // Deprecated: OLT being a Layer 2 device, use rx_frames (field 17) instead
530 RxPackets uint64 `protobuf:"fixed64,3,opt,name=rx_packets,json=rxPackets,proto3" json:"rx_packets,omitempty"` // Deprecated: Do not use.
531 // Deprecated: OLT being a Layer 2 device, use rx_ucast_frames (field 63) instead
532 RxUcastPackets uint64 `protobuf:"fixed64,4,opt,name=rx_ucast_packets,json=rxUcastPackets,proto3" json:"rx_ucast_packets,omitempty"` // Deprecated: Do not use.
533 // Deprecated: OLT being a Layer 2 device, use rx_mcast_frames (field 64) instead
534 RxMcastPackets uint64 `protobuf:"fixed64,5,opt,name=rx_mcast_packets,json=rxMcastPackets,proto3" json:"rx_mcast_packets,omitempty"` // Deprecated: Do not use.
535 // Deprecated: OLT being a Layer 2 device, use rx_bcast_frames (field 65) instead
536 RxBcastPackets uint64 `protobuf:"fixed64,6,opt,name=rx_bcast_packets,json=rxBcastPackets,proto3" json:"rx_bcast_packets,omitempty"` // Deprecated: Do not use.
537 // Deprecated: OLT being a Layer 2 device, use rx_error_frames (field 66) instead
538 RxErrorPackets uint64 `protobuf:"fixed64,7,opt,name=rx_error_packets,json=rxErrorPackets,proto3" json:"rx_error_packets,omitempty"` // Deprecated: Do not use.
539 RxFrames uint64 `protobuf:"fixed64,17,opt,name=rx_frames,json=rxFrames,proto3" json:"rx_frames,omitempty"`
540 RxFrames_64 uint64 `protobuf:"fixed64,18,opt,name=rx_frames_64,json=rxFrames64,proto3" json:"rx_frames_64,omitempty"`
541 RxFrames_65_127 uint64 `protobuf:"fixed64,19,opt,name=rx_frames_65_127,json=rxFrames65127,proto3" json:"rx_frames_65_127,omitempty"`
542 RxFrames_128_255 uint64 `protobuf:"fixed64,20,opt,name=rx_frames_128_255,json=rxFrames128255,proto3" json:"rx_frames_128_255,omitempty"`
543 RxFrames_256_511 uint64 `protobuf:"fixed64,21,opt,name=rx_frames_256_511,json=rxFrames256511,proto3" json:"rx_frames_256_511,omitempty"`
544 RxFrames_512_1023 uint64 `protobuf:"fixed64,22,opt,name=rx_frames_512_1023,json=rxFrames5121023,proto3" json:"rx_frames_512_1023,omitempty"`
545 RxFrames_1024_1518 uint64 `protobuf:"fixed64,23,opt,name=rx_frames_1024_1518,json=rxFrames10241518,proto3" json:"rx_frames_1024_1518,omitempty"`
546 RxFrames_1519_2047 uint64 `protobuf:"fixed64,24,opt,name=rx_frames_1519_2047,json=rxFrames15192047,proto3" json:"rx_frames_1519_2047,omitempty"`
547 RxFrames_2048_4095 uint64 `protobuf:"fixed64,25,opt,name=rx_frames_2048_4095,json=rxFrames20484095,proto3" json:"rx_frames_2048_4095,omitempty"`
548 RxFrames_4096_9216 uint64 `protobuf:"fixed64,26,opt,name=rx_frames_4096_9216,json=rxFrames40969216,proto3" json:"rx_frames_4096_9216,omitempty"`
549 RxFrames_9217_16383 uint64 `protobuf:"fixed64,27,opt,name=rx_frames_9217_16383,json=rxFrames921716383,proto3" json:"rx_frames_9217_16383,omitempty"`
550 RxCrcErrors uint64 `protobuf:"fixed64,14,opt,name=rx_crc_errors,json=rxCrcErrors,proto3" json:"rx_crc_errors,omitempty"`
551 RxUndersizePackets uint64 `protobuf:"fixed64,39,opt,name=rxUndersizePackets,proto3" json:"rxUndersizePackets,omitempty"`
552 RxOversizePackets uint64 `protobuf:"fixed64,40,opt,name=rxOversizePackets,proto3" json:"rxOversizePackets,omitempty"`
553 RxGem uint64 `protobuf:"fixed64,43,opt,name=rxGem,proto3" json:"rxGem,omitempty"`
554 RxGemDropped uint64 `protobuf:"fixed64,44,opt,name=rxGemDropped,proto3" json:"rxGemDropped,omitempty"`
555 RxGemIdle uint64 `protobuf:"fixed64,45,opt,name=rxGemIdle,proto3" json:"rxGemIdle,omitempty"`
556 RxGemCorrected uint64 `protobuf:"fixed64,46,opt,name=rxGemCorrected,proto3" json:"rxGemCorrected,omitempty"`
557 RxGemIllegal uint64 `protobuf:"fixed64,47,opt,name=rxGemIllegal,proto3" json:"rxGemIllegal,omitempty"`
558 RxFragmentError uint64 `protobuf:"fixed64,48,opt,name=rxFragmentError,proto3" json:"rxFragmentError,omitempty"`
559 RxPacketsDropped uint64 `protobuf:"fixed64,49,opt,name=rxPacketsDropped,proto3" json:"rxPacketsDropped,omitempty"`
560 RxCpuOmciPacketsDropped uint64 `protobuf:"fixed64,50,opt,name=rxCpuOmciPacketsDropped,proto3" json:"rxCpuOmciPacketsDropped,omitempty"`
561 RxCpu uint64 `protobuf:"fixed64,51,opt,name=rxCpu,proto3" json:"rxCpu,omitempty"`
562 RxOmci uint64 `protobuf:"fixed64,52,opt,name=rxOmci,proto3" json:"rxOmci,omitempty"`
563 RxOmciPacketsCrcError uint64 `protobuf:"fixed64,53,opt,name=rxOmciPacketsCrcError,proto3" json:"rxOmciPacketsCrcError,omitempty"`
564 RxFcsErrorPackets uint64 `protobuf:"fixed64,62,opt,name=rxFcsErrorPackets,proto3" json:"rxFcsErrorPackets,omitempty"`
565 TxBytes uint64 `protobuf:"fixed64,8,opt,name=tx_bytes,json=txBytes,proto3" json:"tx_bytes,omitempty"`
566 // Deprecated: OLT being a Layer 2 device, use tx_frames (field 28) instead
567 TxPackets uint64 `protobuf:"fixed64,9,opt,name=tx_packets,json=txPackets,proto3" json:"tx_packets,omitempty"` // Deprecated: Do not use.
568 // Deprecated: OLT being a Layer 2 device, use tx_ucast_frames (field 68) instead
569 TxUcastPackets uint64 `protobuf:"fixed64,10,opt,name=tx_ucast_packets,json=txUcastPackets,proto3" json:"tx_ucast_packets,omitempty"` // Deprecated: Do not use.
570 // Deprecated: OLT being a Layer 2 device, use tx_mcast_frames (field 69) instead
571 TxMcastPackets uint64 `protobuf:"fixed64,11,opt,name=tx_mcast_packets,json=txMcastPackets,proto3" json:"tx_mcast_packets,omitempty"` // Deprecated: Do not use.
572 // Deprecated: OLT being a Layer 2 device, use tx_bcast_frames (field 70) instead
573 TxBcastPackets uint64 `protobuf:"fixed64,12,opt,name=tx_bcast_packets,json=txBcastPackets,proto3" json:"tx_bcast_packets,omitempty"` // Deprecated: Do not use.
574 // Deprecated: OLT being a Layer 2 device, use tx_error_frames (field 71) instead
575 TxErrorPackets uint64 `protobuf:"fixed64,13,opt,name=tx_error_packets,json=txErrorPackets,proto3" json:"tx_error_packets,omitempty"` // Deprecated: Do not use.
576 TxFrames uint64 `protobuf:"fixed64,28,opt,name=tx_frames,json=txFrames,proto3" json:"tx_frames,omitempty"`
577 TxFrames_64 uint64 `protobuf:"fixed64,29,opt,name=tx_frames_64,json=txFrames64,proto3" json:"tx_frames_64,omitempty"`
578 TxFrames_65_127 uint64 `protobuf:"fixed64,30,opt,name=tx_frames_65_127,json=txFrames65127,proto3" json:"tx_frames_65_127,omitempty"`
579 TxFrames_128_255 uint64 `protobuf:"fixed64,31,opt,name=tx_frames_128_255,json=txFrames128255,proto3" json:"tx_frames_128_255,omitempty"`
580 TxFrames_256_511 uint64 `protobuf:"fixed64,32,opt,name=tx_frames_256_511,json=txFrames256511,proto3" json:"tx_frames_256_511,omitempty"`
581 TxFrames_512_1023 uint64 `protobuf:"fixed64,33,opt,name=tx_frames_512_1023,json=txFrames5121023,proto3" json:"tx_frames_512_1023,omitempty"`
582 TxFrames_1024_1518 uint64 `protobuf:"fixed64,34,opt,name=tx_frames_1024_1518,json=txFrames10241518,proto3" json:"tx_frames_1024_1518,omitempty"`
583 TxFrames_1519_2047 uint64 `protobuf:"fixed64,35,opt,name=tx_frames_1519_2047,json=txFrames15192047,proto3" json:"tx_frames_1519_2047,omitempty"`
584 TxFrames_2048_4095 uint64 `protobuf:"fixed64,36,opt,name=tx_frames_2048_4095,json=txFrames20484095,proto3" json:"tx_frames_2048_4095,omitempty"`
585 TxFrames_4096_9216 uint64 `protobuf:"fixed64,37,opt,name=tx_frames_4096_9216,json=txFrames40969216,proto3" json:"tx_frames_4096_9216,omitempty"`
586 TxFrames_9217_16383 uint64 `protobuf:"fixed64,38,opt,name=tx_frames_9217_16383,json=txFrames921716383,proto3" json:"tx_frames_9217_16383,omitempty"`
587 TxUndersizePackets uint64 `protobuf:"fixed64,41,opt,name=txUndersizePackets,proto3" json:"txUndersizePackets,omitempty"`
588 TxOversizePackets uint64 `protobuf:"fixed64,42,opt,name=txOversizePackets,proto3" json:"txOversizePackets,omitempty"`
589 TxGem uint64 `protobuf:"fixed64,54,opt,name=txGem,proto3" json:"txGem,omitempty"`
590 TxCpu uint64 `protobuf:"fixed64,55,opt,name=txCpu,proto3" json:"txCpu,omitempty"`
591 TxOmci uint64 `protobuf:"fixed64,56,opt,name=txOmci,proto3" json:"txOmci,omitempty"`
592 TxDroppedIllegalLength uint64 `protobuf:"fixed64,57,opt,name=txDroppedIllegalLength,proto3" json:"txDroppedIllegalLength,omitempty"`
593 TxDroppedTpidMiss uint64 `protobuf:"fixed64,58,opt,name=txDroppedTpidMiss,proto3" json:"txDroppedTpidMiss,omitempty"`
594 TxDroppedVidMiss uint64 `protobuf:"fixed64,59,opt,name=txDroppedVidMiss,proto3" json:"txDroppedVidMiss,omitempty"`
595 TxDroppedTotal uint64 `protobuf:"fixed64,60,opt,name=txDroppedTotal,proto3" json:"txDroppedTotal,omitempty"`
596 BipErrors uint64 `protobuf:"fixed64,15,opt,name=bip_errors,json=bipErrors,proto3" json:"bip_errors,omitempty"`
597 BipUnits uint64 `protobuf:"fixed64,61,opt,name=bip_units,json=bipUnits,proto3" json:"bip_units,omitempty"`
598 Timestamp uint32 `protobuf:"fixed32,16,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
599 RxUcastFrames uint64 `protobuf:"fixed64,63,opt,name=rx_ucast_frames,json=rxUcastFrames,proto3" json:"rx_ucast_frames,omitempty"`
600 RxMcastFrames uint64 `protobuf:"fixed64,64,opt,name=rx_mcast_frames,json=rxMcastFrames,proto3" json:"rx_mcast_frames,omitempty"`
601 RxBcastFrames uint64 `protobuf:"fixed64,65,opt,name=rx_bcast_frames,json=rxBcastFrames,proto3" json:"rx_bcast_frames,omitempty"`
602 RxErrorFrames uint64 `protobuf:"fixed64,66,opt,name=rx_error_frames,json=rxErrorFrames,proto3" json:"rx_error_frames,omitempty"`
603 RxRightFrames uint64 `protobuf:"fixed64,67,opt,name=rx_right_frames,json=rxRightFrames,proto3" json:"rx_right_frames,omitempty"`
604 TxUcastFrames uint64 `protobuf:"fixed64,68,opt,name=tx_ucast_frames,json=txUcastFrames,proto3" json:"tx_ucast_frames,omitempty"`
605 TxMcastFrames uint64 `protobuf:"fixed64,69,opt,name=tx_mcast_frames,json=txMcastFrames,proto3" json:"tx_mcast_frames,omitempty"`
606 TxBcastFrames uint64 `protobuf:"fixed64,70,opt,name=tx_bcast_frames,json=txBcastFrames,proto3" json:"tx_bcast_frames,omitempty"`
607 TxErrorFrames uint64 `protobuf:"fixed64,71,opt,name=tx_error_frames,json=txErrorFrames,proto3" json:"tx_error_frames,omitempty"`
608 RxDiscardedFrames uint64 `protobuf:"fixed64,72,opt,name=rx_discarded_frames,json=rxDiscardedFrames,proto3" json:"rx_discarded_frames,omitempty"`
609 XXX_NoUnkeyedLiteral struct{} `json:"-"`
610 XXX_unrecognized []byte `json:"-"`
611 XXX_sizecache int32 `json:"-"`
Akash Kankanala761955c2024-02-21 19:32:20 +0530612}
613
614func (m *PortStatistics) Reset() { *m = PortStatistics{} }
615func (m *PortStatistics) String() string { return proto.CompactTextString(m) }
616func (*PortStatistics) ProtoMessage() {}
617func (*PortStatistics) Descriptor() ([]byte, []int) {
618 return fileDescriptor_c2e3fd231961e826, []int{8}
619}
620
621func (m *PortStatistics) XXX_Unmarshal(b []byte) error {
622 return xxx_messageInfo_PortStatistics.Unmarshal(m, b)
623}
624func (m *PortStatistics) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
625 return xxx_messageInfo_PortStatistics.Marshal(b, m, deterministic)
626}
627func (m *PortStatistics) XXX_Merge(src proto.Message) {
628 xxx_messageInfo_PortStatistics.Merge(m, src)
629}
630func (m *PortStatistics) XXX_Size() int {
631 return xxx_messageInfo_PortStatistics.Size(m)
632}
633func (m *PortStatistics) XXX_DiscardUnknown() {
634 xxx_messageInfo_PortStatistics.DiscardUnknown(m)
635}
636
637var xxx_messageInfo_PortStatistics proto.InternalMessageInfo
638
639func (m *PortStatistics) GetIntfId() uint32 {
640 if m != nil {
641 return m.IntfId
642 }
643 return 0
644}
645
646func (m *PortStatistics) GetRxBytes() uint64 {
647 if m != nil {
648 return m.RxBytes
649 }
650 return 0
651}
652
pnalmas90299422025-12-16 11:29:25 +0530653// Deprecated: Do not use.
Akash Kankanala761955c2024-02-21 19:32:20 +0530654func (m *PortStatistics) GetRxPackets() uint64 {
655 if m != nil {
656 return m.RxPackets
657 }
658 return 0
659}
660
pnalmas90299422025-12-16 11:29:25 +0530661// Deprecated: Do not use.
Akash Kankanala761955c2024-02-21 19:32:20 +0530662func (m *PortStatistics) GetRxUcastPackets() uint64 {
663 if m != nil {
664 return m.RxUcastPackets
665 }
666 return 0
667}
668
pnalmas90299422025-12-16 11:29:25 +0530669// Deprecated: Do not use.
Akash Kankanala761955c2024-02-21 19:32:20 +0530670func (m *PortStatistics) GetRxMcastPackets() uint64 {
671 if m != nil {
672 return m.RxMcastPackets
673 }
674 return 0
675}
676
pnalmas90299422025-12-16 11:29:25 +0530677// Deprecated: Do not use.
Akash Kankanala761955c2024-02-21 19:32:20 +0530678func (m *PortStatistics) GetRxBcastPackets() uint64 {
679 if m != nil {
680 return m.RxBcastPackets
681 }
682 return 0
683}
684
pnalmas90299422025-12-16 11:29:25 +0530685// Deprecated: Do not use.
Akash Kankanala761955c2024-02-21 19:32:20 +0530686func (m *PortStatistics) GetRxErrorPackets() uint64 {
687 if m != nil {
688 return m.RxErrorPackets
689 }
690 return 0
691}
692
693func (m *PortStatistics) GetRxFrames() uint64 {
694 if m != nil {
695 return m.RxFrames
696 }
697 return 0
698}
699
700func (m *PortStatistics) GetRxFrames_64() uint64 {
701 if m != nil {
702 return m.RxFrames_64
703 }
704 return 0
705}
706
707func (m *PortStatistics) GetRxFrames_65_127() uint64 {
708 if m != nil {
709 return m.RxFrames_65_127
710 }
711 return 0
712}
713
714func (m *PortStatistics) GetRxFrames_128_255() uint64 {
715 if m != nil {
716 return m.RxFrames_128_255
717 }
718 return 0
719}
720
721func (m *PortStatistics) GetRxFrames_256_511() uint64 {
722 if m != nil {
723 return m.RxFrames_256_511
724 }
725 return 0
726}
727
728func (m *PortStatistics) GetRxFrames_512_1023() uint64 {
729 if m != nil {
730 return m.RxFrames_512_1023
731 }
732 return 0
733}
734
735func (m *PortStatistics) GetRxFrames_1024_1518() uint64 {
736 if m != nil {
737 return m.RxFrames_1024_1518
738 }
739 return 0
740}
741
742func (m *PortStatistics) GetRxFrames_1519_2047() uint64 {
743 if m != nil {
744 return m.RxFrames_1519_2047
745 }
746 return 0
747}
748
749func (m *PortStatistics) GetRxFrames_2048_4095() uint64 {
750 if m != nil {
751 return m.RxFrames_2048_4095
752 }
753 return 0
754}
755
756func (m *PortStatistics) GetRxFrames_4096_9216() uint64 {
757 if m != nil {
758 return m.RxFrames_4096_9216
759 }
760 return 0
761}
762
763func (m *PortStatistics) GetRxFrames_9217_16383() uint64 {
764 if m != nil {
765 return m.RxFrames_9217_16383
766 }
767 return 0
768}
769
770func (m *PortStatistics) GetRxCrcErrors() uint64 {
771 if m != nil {
772 return m.RxCrcErrors
773 }
774 return 0
775}
776
777func (m *PortStatistics) GetRxUndersizePackets() uint64 {
778 if m != nil {
779 return m.RxUndersizePackets
780 }
781 return 0
782}
783
784func (m *PortStatistics) GetRxOversizePackets() uint64 {
785 if m != nil {
786 return m.RxOversizePackets
787 }
788 return 0
789}
790
791func (m *PortStatistics) GetRxGem() uint64 {
792 if m != nil {
793 return m.RxGem
794 }
795 return 0
796}
797
798func (m *PortStatistics) GetRxGemDropped() uint64 {
799 if m != nil {
800 return m.RxGemDropped
801 }
802 return 0
803}
804
805func (m *PortStatistics) GetRxGemIdle() uint64 {
806 if m != nil {
807 return m.RxGemIdle
808 }
809 return 0
810}
811
812func (m *PortStatistics) GetRxGemCorrected() uint64 {
813 if m != nil {
814 return m.RxGemCorrected
815 }
816 return 0
817}
818
819func (m *PortStatistics) GetRxGemIllegal() uint64 {
820 if m != nil {
821 return m.RxGemIllegal
822 }
823 return 0
824}
825
826func (m *PortStatistics) GetRxFragmentError() uint64 {
827 if m != nil {
828 return m.RxFragmentError
829 }
830 return 0
831}
832
833func (m *PortStatistics) GetRxPacketsDropped() uint64 {
834 if m != nil {
835 return m.RxPacketsDropped
836 }
837 return 0
838}
839
840func (m *PortStatistics) GetRxCpuOmciPacketsDropped() uint64 {
841 if m != nil {
842 return m.RxCpuOmciPacketsDropped
843 }
844 return 0
845}
846
847func (m *PortStatistics) GetRxCpu() uint64 {
848 if m != nil {
849 return m.RxCpu
850 }
851 return 0
852}
853
854func (m *PortStatistics) GetRxOmci() uint64 {
855 if m != nil {
856 return m.RxOmci
857 }
858 return 0
859}
860
861func (m *PortStatistics) GetRxOmciPacketsCrcError() uint64 {
862 if m != nil {
863 return m.RxOmciPacketsCrcError
864 }
865 return 0
866}
867
868func (m *PortStatistics) GetRxFcsErrorPackets() uint64 {
869 if m != nil {
870 return m.RxFcsErrorPackets
871 }
872 return 0
873}
874
875func (m *PortStatistics) GetTxBytes() uint64 {
876 if m != nil {
877 return m.TxBytes
878 }
879 return 0
880}
881
pnalmas90299422025-12-16 11:29:25 +0530882// Deprecated: Do not use.
Akash Kankanala761955c2024-02-21 19:32:20 +0530883func (m *PortStatistics) GetTxPackets() uint64 {
884 if m != nil {
885 return m.TxPackets
886 }
887 return 0
888}
889
pnalmas90299422025-12-16 11:29:25 +0530890// Deprecated: Do not use.
Akash Kankanala761955c2024-02-21 19:32:20 +0530891func (m *PortStatistics) GetTxUcastPackets() uint64 {
892 if m != nil {
893 return m.TxUcastPackets
894 }
895 return 0
896}
897
pnalmas90299422025-12-16 11:29:25 +0530898// Deprecated: Do not use.
Akash Kankanala761955c2024-02-21 19:32:20 +0530899func (m *PortStatistics) GetTxMcastPackets() uint64 {
900 if m != nil {
901 return m.TxMcastPackets
902 }
903 return 0
904}
905
pnalmas90299422025-12-16 11:29:25 +0530906// Deprecated: Do not use.
Akash Kankanala761955c2024-02-21 19:32:20 +0530907func (m *PortStatistics) GetTxBcastPackets() uint64 {
908 if m != nil {
909 return m.TxBcastPackets
910 }
911 return 0
912}
913
pnalmas90299422025-12-16 11:29:25 +0530914// Deprecated: Do not use.
Akash Kankanala761955c2024-02-21 19:32:20 +0530915func (m *PortStatistics) GetTxErrorPackets() uint64 {
916 if m != nil {
917 return m.TxErrorPackets
918 }
919 return 0
920}
921
922func (m *PortStatistics) GetTxFrames() uint64 {
923 if m != nil {
924 return m.TxFrames
925 }
926 return 0
927}
928
929func (m *PortStatistics) GetTxFrames_64() uint64 {
930 if m != nil {
931 return m.TxFrames_64
932 }
933 return 0
934}
935
936func (m *PortStatistics) GetTxFrames_65_127() uint64 {
937 if m != nil {
938 return m.TxFrames_65_127
939 }
940 return 0
941}
942
943func (m *PortStatistics) GetTxFrames_128_255() uint64 {
944 if m != nil {
945 return m.TxFrames_128_255
946 }
947 return 0
948}
949
950func (m *PortStatistics) GetTxFrames_256_511() uint64 {
951 if m != nil {
952 return m.TxFrames_256_511
953 }
954 return 0
955}
956
957func (m *PortStatistics) GetTxFrames_512_1023() uint64 {
958 if m != nil {
959 return m.TxFrames_512_1023
960 }
961 return 0
962}
963
964func (m *PortStatistics) GetTxFrames_1024_1518() uint64 {
965 if m != nil {
966 return m.TxFrames_1024_1518
967 }
968 return 0
969}
970
971func (m *PortStatistics) GetTxFrames_1519_2047() uint64 {
972 if m != nil {
973 return m.TxFrames_1519_2047
974 }
975 return 0
976}
977
978func (m *PortStatistics) GetTxFrames_2048_4095() uint64 {
979 if m != nil {
980 return m.TxFrames_2048_4095
981 }
982 return 0
983}
984
985func (m *PortStatistics) GetTxFrames_4096_9216() uint64 {
986 if m != nil {
987 return m.TxFrames_4096_9216
988 }
989 return 0
990}
991
992func (m *PortStatistics) GetTxFrames_9217_16383() uint64 {
993 if m != nil {
994 return m.TxFrames_9217_16383
995 }
996 return 0
997}
998
999func (m *PortStatistics) GetTxUndersizePackets() uint64 {
1000 if m != nil {
1001 return m.TxUndersizePackets
1002 }
1003 return 0
1004}
1005
1006func (m *PortStatistics) GetTxOversizePackets() uint64 {
1007 if m != nil {
1008 return m.TxOversizePackets
1009 }
1010 return 0
1011}
1012
1013func (m *PortStatistics) GetTxGem() uint64 {
1014 if m != nil {
1015 return m.TxGem
1016 }
1017 return 0
1018}
1019
1020func (m *PortStatistics) GetTxCpu() uint64 {
1021 if m != nil {
1022 return m.TxCpu
1023 }
1024 return 0
1025}
1026
1027func (m *PortStatistics) GetTxOmci() uint64 {
1028 if m != nil {
1029 return m.TxOmci
1030 }
1031 return 0
1032}
1033
1034func (m *PortStatistics) GetTxDroppedIllegalLength() uint64 {
1035 if m != nil {
1036 return m.TxDroppedIllegalLength
1037 }
1038 return 0
1039}
1040
1041func (m *PortStatistics) GetTxDroppedTpidMiss() uint64 {
1042 if m != nil {
1043 return m.TxDroppedTpidMiss
1044 }
1045 return 0
1046}
1047
1048func (m *PortStatistics) GetTxDroppedVidMiss() uint64 {
1049 if m != nil {
1050 return m.TxDroppedVidMiss
1051 }
1052 return 0
1053}
1054
1055func (m *PortStatistics) GetTxDroppedTotal() uint64 {
1056 if m != nil {
1057 return m.TxDroppedTotal
1058 }
1059 return 0
1060}
1061
1062func (m *PortStatistics) GetBipErrors() uint64 {
1063 if m != nil {
1064 return m.BipErrors
1065 }
1066 return 0
1067}
1068
1069func (m *PortStatistics) GetBipUnits() uint64 {
1070 if m != nil {
1071 return m.BipUnits
1072 }
1073 return 0
1074}
1075
1076func (m *PortStatistics) GetTimestamp() uint32 {
1077 if m != nil {
1078 return m.Timestamp
1079 }
1080 return 0
1081}
1082
pnalmas90299422025-12-16 11:29:25 +05301083func (m *PortStatistics) GetRxUcastFrames() uint64 {
1084 if m != nil {
1085 return m.RxUcastFrames
1086 }
1087 return 0
1088}
1089
1090func (m *PortStatistics) GetRxMcastFrames() uint64 {
1091 if m != nil {
1092 return m.RxMcastFrames
1093 }
1094 return 0
1095}
1096
1097func (m *PortStatistics) GetRxBcastFrames() uint64 {
1098 if m != nil {
1099 return m.RxBcastFrames
1100 }
1101 return 0
1102}
1103
1104func (m *PortStatistics) GetRxErrorFrames() uint64 {
1105 if m != nil {
1106 return m.RxErrorFrames
1107 }
1108 return 0
1109}
1110
1111func (m *PortStatistics) GetRxRightFrames() uint64 {
1112 if m != nil {
1113 return m.RxRightFrames
1114 }
1115 return 0
1116}
1117
1118func (m *PortStatistics) GetTxUcastFrames() uint64 {
1119 if m != nil {
1120 return m.TxUcastFrames
1121 }
1122 return 0
1123}
1124
1125func (m *PortStatistics) GetTxMcastFrames() uint64 {
1126 if m != nil {
1127 return m.TxMcastFrames
1128 }
1129 return 0
1130}
1131
1132func (m *PortStatistics) GetTxBcastFrames() uint64 {
1133 if m != nil {
1134 return m.TxBcastFrames
1135 }
1136 return 0
1137}
1138
1139func (m *PortStatistics) GetTxErrorFrames() uint64 {
1140 if m != nil {
1141 return m.TxErrorFrames
1142 }
1143 return 0
1144}
1145
1146func (m *PortStatistics) GetRxDiscardedFrames() uint64 {
1147 if m != nil {
1148 return m.RxDiscardedFrames
1149 }
1150 return 0
1151}
1152
William Kurkian1b363f42019-03-12 15:28:12 -04001153func init() {
William Kurkian12fc0af2019-04-18 14:27:45 -04001154 proto.RegisterEnum("common.TestModeKeys", TestModeKeys_name, TestModeKeys_value)
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +03001155 proto.RegisterEnum("common.AdminState_Types", AdminState_Types_name, AdminState_Types_value)
1156 proto.RegisterEnum("common.OperStatus_Types", OperStatus_Types_name, OperStatus_Types_value)
1157 proto.RegisterEnum("common.ConnectStatus_Types", ConnectStatus_Types_name, ConnectStatus_Types_value)
William Kurkian12fc0af2019-04-18 14:27:45 -04001158 proto.RegisterEnum("common.OperationResp_OperationReturnCode", OperationResp_OperationReturnCode_name, OperationResp_OperationReturnCode_value)
yasin sapli2bbfbb42021-11-01 14:30:10 +00001159 proto.RegisterType((*Key)(nil), "common.Key")
William Kurkian12fc0af2019-04-18 14:27:45 -04001160 proto.RegisterType((*ID)(nil), "common.ID")
1161 proto.RegisterType((*IDs)(nil), "common.IDs")
khenaidoo5cb0d402021-12-08 14:09:16 -05001162 proto.RegisterType((*Connection)(nil), "common.Connection")
William Kurkian12fc0af2019-04-18 14:27:45 -04001163 proto.RegisterType((*AdminState)(nil), "common.AdminState")
1164 proto.RegisterType((*OperStatus)(nil), "common.OperStatus")
1165 proto.RegisterType((*ConnectStatus)(nil), "common.ConnectStatus")
1166 proto.RegisterType((*OperationResp)(nil), "common.OperationResp")
Akash Kankanala761955c2024-02-21 19:32:20 +05301167 proto.RegisterType((*PortStatistics)(nil), "common.PortStatistics")
William Kurkian1b363f42019-03-12 15:28:12 -04001168}
1169
William Kurkianad745652019-03-20 08:45:51 -04001170func init() { proto.RegisterFile("voltha_protos/common.proto", fileDescriptor_c2e3fd231961e826) }
William Kurkian1b363f42019-03-12 15:28:12 -04001171
William Kurkianad745652019-03-20 08:45:51 -04001172var fileDescriptor_c2e3fd231961e826 = []byte{
pnalmas90299422025-12-16 11:29:25 +05301173 // 1578 bytes of a gzipped FileDescriptorProto
1174 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x97, 0xfd, 0x52, 0xdb, 0xca,
1175 0x15, 0xc0, 0x63, 0x1c, 0x0c, 0x1c, 0x82, 0x31, 0x4b, 0x42, 0x36, 0x1f, 0xb7, 0xe5, 0xba, 0x6d,
1176 0x42, 0x72, 0x13, 0x83, 0x84, 0x65, 0xa0, 0xed, 0x6d, 0xeb, 0x0f, 0x85, 0xab, 0x49, 0xb0, 0x19,
1177 0xd9, 0xe6, 0xce, 0xdc, 0x7f, 0x34, 0xc6, 0xda, 0x80, 0x26, 0xb6, 0xa4, 0x59, 0x2d, 0x8c, 0xb9,
1178 0x4f, 0xd1, 0x37, 0xe8, 0x83, 0xf5, 0x2d, 0xfa, 0x04, 0x9d, 0xdd, 0xd5, 0x5a, 0x92, 0xe5, 0xfc,
1179 0xe7, 0x73, 0xce, 0xcf, 0xab, 0xfd, 0x38, 0xfb, 0xb3, 0x05, 0x2f, 0xef, 0x83, 0x09, 0xbb, 0x1d,
1180 0x39, 0x21, 0x0d, 0x58, 0x10, 0x1d, 0x8e, 0x83, 0xe9, 0x34, 0xf0, 0x6b, 0x22, 0x42, 0x25, 0x19,
1181 0x55, 0x9f, 0x43, 0xf1, 0x33, 0x79, 0x40, 0x15, 0x28, 0x7e, 0x23, 0x0f, 0xb8, 0xb0, 0x5f, 0x38,
1182 0xd8, 0xb0, 0xf9, 0xc7, 0xea, 0x53, 0x58, 0xb1, 0x3a, 0xa8, 0x0c, 0x2b, 0x9e, 0x1b, 0xa7, 0x57,
1183 0x3c, 0xb7, 0xfa, 0x16, 0x8a, 0x56, 0x27, 0x42, 0xfb, 0xb0, 0xea, 0x31, 0x32, 0x8d, 0x70, 0x61,
1184 0xbf, 0x78, 0xb0, 0xa9, 0x43, 0x2d, 0x1e, 0xdb, 0xea, 0xd8, 0xb2, 0x50, 0xfd, 0x1d, 0xa0, 0x1d,
1185 0xf8, 0x3e, 0x19, 0x33, 0x2f, 0xf0, 0xd1, 0x4b, 0x58, 0x27, 0xbe, 0x1b, 0x06, 0x9e, 0xcf, 0xe2,
1186 0xc1, 0xe6, 0x31, 0xda, 0x87, 0xcd, 0x71, 0xe0, 0x33, 0x32, 0x63, 0x96, 0xff, 0x35, 0xc0, 0x2b,
1187 0xa2, 0x9c, 0x4e, 0xa1, 0x1a, 0xec, 0x7e, 0x23, 0x24, 0x74, 0x46, 0x13, 0xef, 0x9e, 0x38, 0x9e,
1188 0xcf, 0x08, 0xbd, 0x1f, 0x4d, 0x70, 0x71, 0xbf, 0x70, 0x50, 0xb4, 0x77, 0x78, 0xa9, 0xc9, 0x2b,
1189 0x56, 0x5c, 0xa8, 0xde, 0x02, 0x34, 0xdd, 0xa9, 0xe7, 0xf7, 0xd9, 0x88, 0x91, 0xea, 0x6f, 0xb0,
1190 0x3a, 0x78, 0x08, 0x49, 0x84, 0x36, 0x61, 0x6d, 0xd8, 0xfd, 0xdc, 0xed, 0xfd, 0xda, 0xad, 0x3c,
1191 0x42, 0x08, 0xca, 0x97, 0xb6, 0x79, 0x69, 0xf7, 0xae, 0xac, 0xbe, 0xd5, 0xeb, 0x9a, 0x9d, 0x4a,
1192 0x81, 0x03, 0x66, 0xb7, 0xd9, 0xfa, 0x62, 0x76, 0x2a, 0x2b, 0xe8, 0x09, 0xac, 0x77, 0xac, 0xbe,
1193 0x8c, 0x8a, 0xe8, 0x19, 0xec, 0x74, 0x7a, 0xbf, 0x76, 0xbf, 0xf4, 0x9a, 0x1d, 0xab, 0x7b, 0xee,
1194 0x58, 0x17, 0xcd, 0x73, 0xb3, 0xf2, 0xb8, 0xfa, 0x9f, 0x02, 0x40, 0x2f, 0x24, 0x94, 0x3f, 0xe9,
1195 0x2e, 0xaa, 0xfe, 0xbb, 0xb0, 0xf4, 0x59, 0x65, 0x80, 0x8e, 0xd5, 0x6f, 0xf7, 0xae, 0x4c, 0x5b,
1196 0x3c, 0xa7, 0x0c, 0xd0, 0x6c, 0x0f, 0xac, 0xab, 0xe6, 0xc0, 0xea, 0x9e, 0x57, 0x56, 0x38, 0x3c,
1197 0x30, 0xfb, 0x22, 0x28, 0x22, 0x80, 0x92, 0x28, 0x9a, 0x95, 0xc7, 0xfc, 0xf3, 0xa7, 0xa6, 0xc5,
1198 0x67, 0xb0, 0x8a, 0xb6, 0x61, 0xd3, 0x36, 0xdb, 0xbd, 0x6e, 0xdb, 0xfa, 0xc2, 0xc1, 0x12, 0xda,
1199 0x03, 0x94, 0x4a, 0x38, 0x31, 0xb8, 0xc6, 0x27, 0x6e, 0x9b, 0xad, 0x5e, 0x6f, 0x60, 0x76, 0x2a,
1200 0xeb, 0x55, 0x13, 0xb6, 0xe2, 0x73, 0x88, 0xe7, 0x58, 0x5f, 0x3a, 0xc5, 0x6d, 0xd8, 0x1c, 0x76,
1201 0x6d, 0xb3, 0xd9, 0xfe, 0x85, 0xaf, 0xb8, 0x52, 0x40, 0x5b, 0xb0, 0x91, 0x84, 0x2b, 0xd5, 0xff,
1202 0x15, 0x60, 0x8b, 0x2f, 0x74, 0xc4, 0x8f, 0xd3, 0x26, 0x51, 0x88, 0x7e, 0x86, 0xc7, 0xe3, 0xc0,
1203 0x25, 0xe2, 0x38, 0xcb, 0xfa, 0x3b, 0xd5, 0x01, 0x19, 0x28, 0x1d, 0xb1, 0x3b, 0xea, 0xb7, 0x03,
1204 0x97, 0xd8, 0xe2, 0x6b, 0xe8, 0x2d, 0x6c, 0x8f, 0x5c, 0xd7, 0xe3, 0xb5, 0xd1, 0xc4, 0xf1, 0x92,
1205 0x93, 0x2f, 0x27, 0x69, 0x7e, 0xf8, 0xd5, 0x07, 0xd8, 0x5d, 0x32, 0x0a, 0x3f, 0x90, 0xde, 0xa5,
1206 0x69, 0x37, 0x07, 0x56, 0xaf, 0xeb, 0xf4, 0x87, 0xed, 0xb6, 0xd9, 0xef, 0x57, 0x1e, 0x65, 0xd3,
1207 0x7c, 0x4b, 0x86, 0x36, 0x5f, 0xcd, 0x0b, 0x78, 0x96, 0xa4, 0x87, 0xdd, 0xfe, 0xf0, 0xf2, 0xb2,
1208 0x67, 0x0f, 0xc4, 0x39, 0x67, 0x4a, 0x56, 0xd7, 0xb9, 0xb4, 0x7b, 0xe7, 0x36, 0x1f, 0xac, 0x58,
1209 0xfd, 0xef, 0x1e, 0x94, 0x2f, 0x03, 0x2a, 0x76, 0xce, 0x8b, 0x98, 0x37, 0x8e, 0xd0, 0x73, 0x58,
1210 0xf3, 0x7c, 0xf6, 0xd5, 0x89, 0x2f, 0xc5, 0x9a, 0x5d, 0xe2, 0xa1, 0xe5, 0xa2, 0x17, 0xb0, 0x4e,
1211 0x67, 0xce, 0xf5, 0x03, 0x23, 0x91, 0x58, 0x48, 0xc9, 0x5e, 0xa3, 0xb3, 0x16, 0x0f, 0xd1, 0x8f,
1212 0x00, 0x74, 0xe6, 0x84, 0xa3, 0xf1, 0x37, 0xc2, 0x22, 0xd1, 0xb5, 0xa5, 0xd6, 0x0a, 0x2e, 0xd8,
1213 0x1b, 0x74, 0x76, 0x29, 0x93, 0xe8, 0x03, 0x54, 0xe8, 0xcc, 0xb9, 0x1b, 0x8f, 0x22, 0x36, 0x07,
1214 0x1f, 0xcf, 0xc1, 0x32, 0x9d, 0x0d, 0x79, 0x29, 0x4b, 0x4f, 0x33, 0xf4, 0x6a, 0x9a, 0xbe, 0xc8,
1215 0xd3, 0xd7, 0x19, 0xba, 0x94, 0xa6, 0x5b, 0x79, 0x9a, 0x50, 0x1a, 0xd0, 0x39, 0xbd, 0x96, 0xa6,
1216 0x4d, 0x5e, 0x52, 0xf4, 0x2b, 0xd8, 0xa0, 0x33, 0xe7, 0x2b, 0x1d, 0x4d, 0x49, 0x84, 0x77, 0xc4,
1217 0xb2, 0xd7, 0xe9, 0xec, 0x93, 0x88, 0xd1, 0x3e, 0x3c, 0x99, 0x17, 0x9d, 0x46, 0x1d, 0x23, 0x51,
1218 0x07, 0x55, 0x6f, 0xd4, 0xd1, 0x5b, 0xf1, 0x30, 0x45, 0x18, 0x8e, 0xa6, 0x9f, 0xe0, 0x5d, 0x41,
1219 0x6d, 0xcd, 0x29, 0x43, 0xd3, 0x4f, 0xd0, 0x3b, 0xd8, 0x49, 0x40, 0x4d, 0x3f, 0x75, 0x74, 0xc3,
1220 0xc0, 0x4f, 0x05, 0x59, 0x56, 0xa4, 0xa6, 0x9f, 0xea, 0x86, 0x91, 0x45, 0x75, 0xa3, 0xe1, 0x18,
1221 0x9a, 0x86, 0x9f, 0x65, 0x51, 0xdd, 0x68, 0x18, 0x9a, 0x86, 0x7e, 0x02, 0x94, 0xa0, 0x86, 0xa6,
1222 0x3b, 0xda, 0x91, 0x7e, 0x8c, 0xf7, 0x04, 0xbb, 0xad, 0x58, 0x43, 0xd3, 0x79, 0x1a, 0x7d, 0x84,
1223 0xdd, 0xd4, 0x14, 0x8e, 0xf4, 0xba, 0xa3, 0x19, 0xda, 0x29, 0x7e, 0x2e, 0xe8, 0xca, 0x7c, 0x12,
1224 0x47, 0x7a, 0x9d, 0xe7, 0x17, 0x70, 0x43, 0x3b, 0x73, 0xf4, 0xa3, 0xfa, 0x09, 0xc6, 0x0b, 0xb8,
1225 0xa1, 0x9d, 0xf1, 0x7c, 0x16, 0xd7, 0x8f, 0xea, 0xa7, 0x4e, 0xfd, 0xe8, 0xcc, 0xc0, 0x2f, 0xb2,
1226 0x38, 0x2f, 0xf0, 0x7c, 0x16, 0xaf, 0x1f, 0x9d, 0x35, 0x9c, 0x33, 0x5d, 0x6b, 0xe0, 0x97, 0x59,
1227 0x9c, 0x17, 0x78, 0x1e, 0x1d, 0xc2, 0xd3, 0x04, 0x3f, 0xd3, 0xb5, 0x13, 0x47, 0x6b, 0x1c, 0x9f,
1228 0x1e, 0xe3, 0x57, 0x82, 0xdf, 0x51, 0x3c, 0xaf, 0x88, 0x02, 0xaa, 0xc2, 0x16, 0x9d, 0x39, 0x63,
1229 0x3a, 0x96, 0x9d, 0x10, 0xe1, 0xb2, 0x20, 0x37, 0xe9, 0xac, 0x4d, 0xc7, 0xa2, 0x03, 0x22, 0x54,
1230 0xe3, 0xbb, 0x37, 0xf4, 0x5d, 0x42, 0x23, 0xef, 0x77, 0x12, 0x77, 0x04, 0x7e, 0x2b, 0xc0, 0x25,
1231 0x15, 0xf4, 0x81, 0x1f, 0x4c, 0xef, 0x3e, 0x8b, 0x1f, 0xa8, 0x19, 0x2c, 0x14, 0xd0, 0x53, 0x58,
1232 0xa5, 0xb3, 0x73, 0x32, 0xc5, 0x3f, 0x09, 0x42, 0x06, 0xa8, 0xca, 0x5b, 0xea, 0x9c, 0x4c, 0x3b,
1233 0x34, 0x08, 0x43, 0xe2, 0xe2, 0x0f, 0xa2, 0x98, 0xc9, 0xa1, 0xd7, 0xbc, 0x27, 0xcf, 0xc9, 0xd4,
1234 0x72, 0x27, 0x04, 0x7f, 0x14, 0x40, 0x92, 0x40, 0x6f, 0xa0, 0x2c, 0x82, 0x76, 0x40, 0x29, 0x19,
1235 0x33, 0xe2, 0xe2, 0x9a, 0xea, 0x8d, 0x74, 0x76, 0xfe, 0x24, 0x6b, 0x32, 0x21, 0x37, 0xa3, 0x09,
1236 0x3e, 0x4c, 0x3d, 0x29, 0xce, 0xa1, 0x03, 0x90, 0x5d, 0x72, 0x33, 0x25, 0x3e, 0x13, 0xbb, 0x82,
1237 0x8f, 0x52, 0xcd, 0x93, 0xa4, 0xd1, 0x7b, 0xde, 0xe8, 0xf1, 0xd2, 0xd4, 0xdc, 0x35, 0x75, 0x58,
1238 0xd9, 0x3c, 0x3a, 0x85, 0xe7, 0x74, 0xd6, 0x0e, 0xef, 0x7a, 0xd3, 0xb1, 0xb7, 0xf0, 0x15, 0x5d,
1239 0x7c, 0xe5, 0x7b, 0x65, 0xb9, 0x67, 0xed, 0xf0, 0x0e, 0x1f, 0xab, 0x3d, 0x6b, 0x87, 0x77, 0x68,
1240 0x0f, 0x4a, 0x74, 0xc6, 0x69, 0x5c, 0x17, 0xe9, 0x38, 0x42, 0x75, 0x78, 0x26, 0x3f, 0xc5, 0xa3,
1241 0xa8, 0x93, 0xc5, 0x86, 0xc0, 0x96, 0x17, 0xe5, 0x29, 0x7e, 0x1a, 0x47, 0x69, 0x0d, 0xe0, 0x7f,
1242 0xcc, 0xfb, 0x28, 0x5b, 0xe0, 0x56, 0x64, 0xca, 0x8a, 0xeb, 0xd2, 0x8a, 0x2c, 0xb1, 0x22, 0x4b,
1243 0xac, 0xb8, 0x91, 0x58, 0x91, 0xa5, 0xad, 0xc8, 0x16, 0xad, 0x08, 0x89, 0x8b, 0x58, 0xce, 0x8a,
1244 0x6c, 0xd1, 0x8a, 0x9b, 0x69, 0xfa, 0x22, 0x4f, 0x67, 0xad, 0xf8, 0x24, 0x4d, 0xb7, 0xf2, 0x74,
1245 0xd6, 0x8a, 0x5b, 0x69, 0x7a, 0xd1, 0x8a, 0x6c, 0x6e, 0xc5, 0xd7, 0xd2, 0x8a, 0x2c, 0x65, 0x45,
1246 0x96, 0xb6, 0xe2, 0x0f, 0xd2, 0x8a, 0x2c, 0x63, 0x45, 0xb6, 0x68, 0xc5, 0x3f, 0x48, 0x2b, 0xb2,
1247 0x45, 0x2b, 0xb2, 0x9c, 0x15, 0xff, 0x28, 0xdb, 0x99, 0xe5, 0xac, 0xc8, 0x72, 0x56, 0xdc, 0xcf,
1248 0xa2, 0x89, 0x15, 0x59, 0xde, 0x8a, 0x3f, 0xca, 0xc6, 0x66, 0x79, 0x2b, 0xb2, 0x25, 0x56, 0xac,
1249 0xca, 0xde, 0x66, 0x4b, 0xac, 0xc8, 0x96, 0x58, 0xf1, 0x4f, 0x0b, 0x78, 0xca, 0x8a, 0x6c, 0x89,
1250 0x15, 0xff, 0x9c, 0xc5, 0xd3, 0x56, 0x64, 0x4b, 0xac, 0xf8, 0x97, 0x2c, 0x9e, 0xb6, 0x22, 0x5b,
1251 0x66, 0xc5, 0x37, 0xb2, 0x9b, 0x59, 0xce, 0x8a, 0x35, 0xbe, 0x33, 0x39, 0xe3, 0xbd, 0x93, 0xc6,
1252 0x63, 0x4b, 0x8d, 0xc7, 0x72, 0xc6, 0x7b, 0xaf, 0x46, 0x5f, 0x62, 0x3c, 0x26, 0x8c, 0xd7, 0x90,
1253 0xb7, 0x57, 0x04, 0x32, 0xcb, 0xef, 0xf4, 0x89, 0xca, 0xc6, 0x77, 0x9a, 0xc9, 0x3b, 0x7d, 0x2a,
1254 0xef, 0xb4, 0x8c, 0x50, 0x03, 0xf6, 0xd8, 0x2c, 0xd6, 0x41, 0x6c, 0xa9, 0x2f, 0xc4, 0xbf, 0x61,
1255 0xb7, 0xf8, 0x4c, 0x70, 0xdf, 0xa9, 0xca, 0x99, 0xc6, 0x95, 0x41, 0xe8, 0xb9, 0x17, 0x5e, 0x14,
1256 0xe1, 0xbf, 0xaa, 0x99, 0x2e, 0x14, 0xb8, 0xcd, 0xe6, 0xc9, 0xab, 0x18, 0xfe, 0x9b, 0xda, 0xe4,
1257 0x6c, 0x9e, 0xfb, 0x36, 0x19, 0x20, 0x60, 0xa3, 0x09, 0xfe, 0xbb, 0xea, 0xba, 0x74, 0x16, 0xfd,
1258 0x00, 0x70, 0xed, 0x85, 0xea, 0xe7, 0x66, 0x5b, 0x6a, 0xfb, 0xda, 0x0b, 0xe3, 0x1f, 0x9b, 0x57,
1259 0xc0, 0x03, 0xe7, 0xce, 0xf7, 0x58, 0x84, 0x7f, 0x96, 0x57, 0xea, 0xda, 0x0b, 0x87, 0x3c, 0xe6,
1260 0xc6, 0x67, 0xde, 0x94, 0x44, 0x6c, 0x34, 0x0d, 0x71, 0x45, 0xfc, 0x2d, 0x4b, 0x12, 0xe8, 0x0d,
1261 0xb7, 0x74, 0x6c, 0x91, 0xf8, 0x4e, 0xfe, 0x53, 0xfd, 0xc7, 0x10, 0x02, 0x89, 0x2f, 0xa6, 0xe4,
1262 0xa6, 0x69, 0xee, 0x5f, 0x8a, 0xbb, 0xc8, 0x71, 0xd7, 0x69, 0xae, 0xa9, 0xb8, 0x56, 0x8e, 0x93,
1263 0xce, 0x88, 0xb9, 0x96, 0xe2, 0xc4, 0xaa, 0x32, 0x1c, 0xf5, 0x6e, 0x6e, 0xe7, 0xe3, 0xb5, 0x15,
1264 0x67, 0xf3, 0x6c, 0xc2, 0xb1, 0x85, 0x75, 0x74, 0x94, 0x15, 0x16, 0xd6, 0xc1, 0x16, 0xd6, 0x61,
1265 0x2a, 0xee, 0x22, 0xc7, 0x65, 0xd6, 0xf1, 0x49, 0x71, 0xad, 0x1c, 0x97, 0x59, 0xc7, 0xb9, 0xe2,
1266 0xd2, 0xeb, 0xa8, 0x89, 0xff, 0x24, 0xae, 0x17, 0x8d, 0x47, 0xd4, 0x25, 0xae, 0x62, 0x7f, 0x51,
1267 0xbf, 0x0d, 0x1d, 0x55, 0x91, 0xfc, 0xfb, 0xd7, 0xf0, 0x64, 0x40, 0x22, 0x76, 0x11, 0xb8, 0xe4,
1268 0x33, 0x79, 0x88, 0xf8, 0x7b, 0xcb, 0x28, 0xf4, 0x1c, 0x46, 0x22, 0x56, 0x79, 0xd4, 0x32, 0x61,
1269 0x37, 0xa0, 0x37, 0xb5, 0x20, 0x24, 0xfe, 0x38, 0xa0, 0x6e, 0x4d, 0xbe, 0xca, 0xfe, 0x56, 0xbb,
1270 0xf1, 0xd8, 0xed, 0xdd, 0x35, 0x7f, 0xdb, 0x38, 0x54, 0xb5, 0x43, 0x59, 0xfb, 0x18, 0xbf, 0xe6,
1271 0xde, 0x1b, 0x87, 0x37, 0x41, 0xfc, 0xb2, 0x7b, 0x5d, 0x12, 0xc9, 0xe3, 0xff, 0x07, 0x00, 0x00,
1272 0xff, 0xff, 0x70, 0x09, 0x2f, 0xa5, 0x0b, 0x0f, 0x00, 0x00,
William Kurkian1b363f42019-03-12 15:28:12 -04001273}