William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame^] | 1 | // Code generated by protoc-gen-go. DO NOT EDIT. |
| 2 | // source: voltha_protos/inter_container.proto |
| 3 | |
| 4 | package inter_container // import "github.com/opencord/voltha-protos/go/inter_container" |
| 5 | |
| 6 | import proto "github.com/golang/protobuf/proto" |
| 7 | import fmt "fmt" |
| 8 | import math "math" |
| 9 | import any "github.com/golang/protobuf/ptypes/any" |
| 10 | import openflow_13 "github.com/opencord/voltha-protos/go/openflow_13" |
| 11 | import voltha "github.com/opencord/voltha-protos/go/voltha" |
| 12 | |
| 13 | // Reference imports to suppress errors if they are not otherwise used. |
| 14 | var _ = proto.Marshal |
| 15 | var _ = fmt.Errorf |
| 16 | var _ = math.Inf |
| 17 | |
| 18 | // This is a compile-time assertion to ensure that this generated file |
| 19 | // is compatible with the proto package it is being compiled against. |
| 20 | // A compilation error at this line likely means your copy of the |
| 21 | // proto package needs to be updated. |
| 22 | const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package |
| 23 | |
| 24 | // LogicalPortId from public import voltha_protos/logical_device.proto |
| 25 | type LogicalPortId = voltha.LogicalPortId |
| 26 | |
| 27 | // LogicalPort from public import voltha_protos/logical_device.proto |
| 28 | type LogicalPort = voltha.LogicalPort |
| 29 | |
| 30 | // LogicalPorts from public import voltha_protos/logical_device.proto |
| 31 | type LogicalPorts = voltha.LogicalPorts |
| 32 | |
| 33 | // LogicalDevice from public import voltha_protos/logical_device.proto |
| 34 | type LogicalDevice = voltha.LogicalDevice |
| 35 | |
| 36 | // LogicalDevices from public import voltha_protos/logical_device.proto |
| 37 | type LogicalDevices = voltha.LogicalDevices |
| 38 | |
| 39 | type MessageType int32 |
| 40 | |
| 41 | const ( |
| 42 | MessageType_REQUEST MessageType = 0 |
| 43 | MessageType_RESPONSE MessageType = 1 |
| 44 | MessageType_DEVICE_DISCOVERED MessageType = 2 |
| 45 | ) |
| 46 | |
| 47 | var MessageType_name = map[int32]string{ |
| 48 | 0: "REQUEST", |
| 49 | 1: "RESPONSE", |
| 50 | 2: "DEVICE_DISCOVERED", |
| 51 | } |
| 52 | var MessageType_value = map[string]int32{ |
| 53 | "REQUEST": 0, |
| 54 | "RESPONSE": 1, |
| 55 | "DEVICE_DISCOVERED": 2, |
| 56 | } |
| 57 | |
| 58 | func (x MessageType) String() string { |
| 59 | return proto.EnumName(MessageType_name, int32(x)) |
| 60 | } |
| 61 | func (MessageType) EnumDescriptor() ([]byte, []int) { |
| 62 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{0} |
| 63 | } |
| 64 | |
| 65 | type ErrorCodeCodes int32 |
| 66 | |
| 67 | const ( |
| 68 | ErrorCode_UNSUPPORTED_REQUEST ErrorCodeCodes = 0 |
| 69 | ErrorCode_INVALID_PARAMETERS ErrorCodeCodes = 1 |
| 70 | ) |
| 71 | |
| 72 | var ErrorCodeCodes_name = map[int32]string{ |
| 73 | 0: "UNSUPPORTED_REQUEST", |
| 74 | 1: "INVALID_PARAMETERS", |
| 75 | } |
| 76 | var ErrorCodeCodes_value = map[string]int32{ |
| 77 | "UNSUPPORTED_REQUEST": 0, |
| 78 | "INVALID_PARAMETERS": 1, |
| 79 | } |
| 80 | |
| 81 | func (x ErrorCodeCodes) String() string { |
| 82 | return proto.EnumName(ErrorCodeCodes_name, int32(x)) |
| 83 | } |
| 84 | func (ErrorCodeCodes) EnumDescriptor() ([]byte, []int) { |
| 85 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{4, 0} |
| 86 | } |
| 87 | |
| 88 | type InterAdapterMessageType_Types int32 |
| 89 | |
| 90 | const ( |
| 91 | InterAdapterMessageType_FLOW_REQUEST InterAdapterMessageType_Types = 0 |
| 92 | InterAdapterMessageType_FLOW_RESPONSE InterAdapterMessageType_Types = 1 |
| 93 | InterAdapterMessageType_OMCI_REQUEST InterAdapterMessageType_Types = 2 |
| 94 | InterAdapterMessageType_OMCI_RESPONSE InterAdapterMessageType_Types = 3 |
| 95 | InterAdapterMessageType_METRICS_REQUEST InterAdapterMessageType_Types = 4 |
| 96 | InterAdapterMessageType_METRICS_RESPONSE InterAdapterMessageType_Types = 5 |
| 97 | InterAdapterMessageType_ONU_IND_REQUEST InterAdapterMessageType_Types = 6 |
| 98 | InterAdapterMessageType_ONU_IND_RESPONSE InterAdapterMessageType_Types = 7 |
| 99 | ) |
| 100 | |
| 101 | var InterAdapterMessageType_Types_name = map[int32]string{ |
| 102 | 0: "FLOW_REQUEST", |
| 103 | 1: "FLOW_RESPONSE", |
| 104 | 2: "OMCI_REQUEST", |
| 105 | 3: "OMCI_RESPONSE", |
| 106 | 4: "METRICS_REQUEST", |
| 107 | 5: "METRICS_RESPONSE", |
| 108 | 6: "ONU_IND_REQUEST", |
| 109 | 7: "ONU_IND_RESPONSE", |
| 110 | } |
| 111 | var InterAdapterMessageType_Types_value = map[string]int32{ |
| 112 | "FLOW_REQUEST": 0, |
| 113 | "FLOW_RESPONSE": 1, |
| 114 | "OMCI_REQUEST": 2, |
| 115 | "OMCI_RESPONSE": 3, |
| 116 | "METRICS_REQUEST": 4, |
| 117 | "METRICS_RESPONSE": 5, |
| 118 | "ONU_IND_REQUEST": 6, |
| 119 | "ONU_IND_RESPONSE": 7, |
| 120 | } |
| 121 | |
| 122 | func (x InterAdapterMessageType_Types) String() string { |
| 123 | return proto.EnumName(InterAdapterMessageType_Types_name, int32(x)) |
| 124 | } |
| 125 | func (InterAdapterMessageType_Types) EnumDescriptor() ([]byte, []int) { |
| 126 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{14, 0} |
| 127 | } |
| 128 | |
| 129 | type StrType struct { |
| 130 | Val string `protobuf:"bytes,1,opt,name=val,proto3" json:"val,omitempty"` |
| 131 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 132 | XXX_unrecognized []byte `json:"-"` |
| 133 | XXX_sizecache int32 `json:"-"` |
| 134 | } |
| 135 | |
| 136 | func (m *StrType) Reset() { *m = StrType{} } |
| 137 | func (m *StrType) String() string { return proto.CompactTextString(m) } |
| 138 | func (*StrType) ProtoMessage() {} |
| 139 | func (*StrType) Descriptor() ([]byte, []int) { |
| 140 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{0} |
| 141 | } |
| 142 | func (m *StrType) XXX_Unmarshal(b []byte) error { |
| 143 | return xxx_messageInfo_StrType.Unmarshal(m, b) |
| 144 | } |
| 145 | func (m *StrType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 146 | return xxx_messageInfo_StrType.Marshal(b, m, deterministic) |
| 147 | } |
| 148 | func (dst *StrType) XXX_Merge(src proto.Message) { |
| 149 | xxx_messageInfo_StrType.Merge(dst, src) |
| 150 | } |
| 151 | func (m *StrType) XXX_Size() int { |
| 152 | return xxx_messageInfo_StrType.Size(m) |
| 153 | } |
| 154 | func (m *StrType) XXX_DiscardUnknown() { |
| 155 | xxx_messageInfo_StrType.DiscardUnknown(m) |
| 156 | } |
| 157 | |
| 158 | var xxx_messageInfo_StrType proto.InternalMessageInfo |
| 159 | |
| 160 | func (m *StrType) GetVal() string { |
| 161 | if m != nil { |
| 162 | return m.Val |
| 163 | } |
| 164 | return "" |
| 165 | } |
| 166 | |
| 167 | type IntType struct { |
| 168 | Val int64 `protobuf:"varint,1,opt,name=val,proto3" json:"val,omitempty"` |
| 169 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 170 | XXX_unrecognized []byte `json:"-"` |
| 171 | XXX_sizecache int32 `json:"-"` |
| 172 | } |
| 173 | |
| 174 | func (m *IntType) Reset() { *m = IntType{} } |
| 175 | func (m *IntType) String() string { return proto.CompactTextString(m) } |
| 176 | func (*IntType) ProtoMessage() {} |
| 177 | func (*IntType) Descriptor() ([]byte, []int) { |
| 178 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{1} |
| 179 | } |
| 180 | func (m *IntType) XXX_Unmarshal(b []byte) error { |
| 181 | return xxx_messageInfo_IntType.Unmarshal(m, b) |
| 182 | } |
| 183 | func (m *IntType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 184 | return xxx_messageInfo_IntType.Marshal(b, m, deterministic) |
| 185 | } |
| 186 | func (dst *IntType) XXX_Merge(src proto.Message) { |
| 187 | xxx_messageInfo_IntType.Merge(dst, src) |
| 188 | } |
| 189 | func (m *IntType) XXX_Size() int { |
| 190 | return xxx_messageInfo_IntType.Size(m) |
| 191 | } |
| 192 | func (m *IntType) XXX_DiscardUnknown() { |
| 193 | xxx_messageInfo_IntType.DiscardUnknown(m) |
| 194 | } |
| 195 | |
| 196 | var xxx_messageInfo_IntType proto.InternalMessageInfo |
| 197 | |
| 198 | func (m *IntType) GetVal() int64 { |
| 199 | if m != nil { |
| 200 | return m.Val |
| 201 | } |
| 202 | return 0 |
| 203 | } |
| 204 | |
| 205 | type BoolType struct { |
| 206 | Val bool `protobuf:"varint,1,opt,name=val,proto3" json:"val,omitempty"` |
| 207 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 208 | XXX_unrecognized []byte `json:"-"` |
| 209 | XXX_sizecache int32 `json:"-"` |
| 210 | } |
| 211 | |
| 212 | func (m *BoolType) Reset() { *m = BoolType{} } |
| 213 | func (m *BoolType) String() string { return proto.CompactTextString(m) } |
| 214 | func (*BoolType) ProtoMessage() {} |
| 215 | func (*BoolType) Descriptor() ([]byte, []int) { |
| 216 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{2} |
| 217 | } |
| 218 | func (m *BoolType) XXX_Unmarshal(b []byte) error { |
| 219 | return xxx_messageInfo_BoolType.Unmarshal(m, b) |
| 220 | } |
| 221 | func (m *BoolType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 222 | return xxx_messageInfo_BoolType.Marshal(b, m, deterministic) |
| 223 | } |
| 224 | func (dst *BoolType) XXX_Merge(src proto.Message) { |
| 225 | xxx_messageInfo_BoolType.Merge(dst, src) |
| 226 | } |
| 227 | func (m *BoolType) XXX_Size() int { |
| 228 | return xxx_messageInfo_BoolType.Size(m) |
| 229 | } |
| 230 | func (m *BoolType) XXX_DiscardUnknown() { |
| 231 | xxx_messageInfo_BoolType.DiscardUnknown(m) |
| 232 | } |
| 233 | |
| 234 | var xxx_messageInfo_BoolType proto.InternalMessageInfo |
| 235 | |
| 236 | func (m *BoolType) GetVal() bool { |
| 237 | if m != nil { |
| 238 | return m.Val |
| 239 | } |
| 240 | return false |
| 241 | } |
| 242 | |
| 243 | type Packet struct { |
| 244 | Payload []byte `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"` |
| 245 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 246 | XXX_unrecognized []byte `json:"-"` |
| 247 | XXX_sizecache int32 `json:"-"` |
| 248 | } |
| 249 | |
| 250 | func (m *Packet) Reset() { *m = Packet{} } |
| 251 | func (m *Packet) String() string { return proto.CompactTextString(m) } |
| 252 | func (*Packet) ProtoMessage() {} |
| 253 | func (*Packet) Descriptor() ([]byte, []int) { |
| 254 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{3} |
| 255 | } |
| 256 | func (m *Packet) XXX_Unmarshal(b []byte) error { |
| 257 | return xxx_messageInfo_Packet.Unmarshal(m, b) |
| 258 | } |
| 259 | func (m *Packet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 260 | return xxx_messageInfo_Packet.Marshal(b, m, deterministic) |
| 261 | } |
| 262 | func (dst *Packet) XXX_Merge(src proto.Message) { |
| 263 | xxx_messageInfo_Packet.Merge(dst, src) |
| 264 | } |
| 265 | func (m *Packet) XXX_Size() int { |
| 266 | return xxx_messageInfo_Packet.Size(m) |
| 267 | } |
| 268 | func (m *Packet) XXX_DiscardUnknown() { |
| 269 | xxx_messageInfo_Packet.DiscardUnknown(m) |
| 270 | } |
| 271 | |
| 272 | var xxx_messageInfo_Packet proto.InternalMessageInfo |
| 273 | |
| 274 | func (m *Packet) GetPayload() []byte { |
| 275 | if m != nil { |
| 276 | return m.Payload |
| 277 | } |
| 278 | return nil |
| 279 | } |
| 280 | |
| 281 | type ErrorCode struct { |
| 282 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 283 | XXX_unrecognized []byte `json:"-"` |
| 284 | XXX_sizecache int32 `json:"-"` |
| 285 | } |
| 286 | |
| 287 | func (m *ErrorCode) Reset() { *m = ErrorCode{} } |
| 288 | func (m *ErrorCode) String() string { return proto.CompactTextString(m) } |
| 289 | func (*ErrorCode) ProtoMessage() {} |
| 290 | func (*ErrorCode) Descriptor() ([]byte, []int) { |
| 291 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{4} |
| 292 | } |
| 293 | func (m *ErrorCode) XXX_Unmarshal(b []byte) error { |
| 294 | return xxx_messageInfo_ErrorCode.Unmarshal(m, b) |
| 295 | } |
| 296 | func (m *ErrorCode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 297 | return xxx_messageInfo_ErrorCode.Marshal(b, m, deterministic) |
| 298 | } |
| 299 | func (dst *ErrorCode) XXX_Merge(src proto.Message) { |
| 300 | xxx_messageInfo_ErrorCode.Merge(dst, src) |
| 301 | } |
| 302 | func (m *ErrorCode) XXX_Size() int { |
| 303 | return xxx_messageInfo_ErrorCode.Size(m) |
| 304 | } |
| 305 | func (m *ErrorCode) XXX_DiscardUnknown() { |
| 306 | xxx_messageInfo_ErrorCode.DiscardUnknown(m) |
| 307 | } |
| 308 | |
| 309 | var xxx_messageInfo_ErrorCode proto.InternalMessageInfo |
| 310 | |
| 311 | type Error struct { |
| 312 | Code *ErrorCode `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` |
| 313 | Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"` |
| 314 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 315 | XXX_unrecognized []byte `json:"-"` |
| 316 | XXX_sizecache int32 `json:"-"` |
| 317 | } |
| 318 | |
| 319 | func (m *Error) Reset() { *m = Error{} } |
| 320 | func (m *Error) String() string { return proto.CompactTextString(m) } |
| 321 | func (*Error) ProtoMessage() {} |
| 322 | func (*Error) Descriptor() ([]byte, []int) { |
| 323 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{5} |
| 324 | } |
| 325 | func (m *Error) XXX_Unmarshal(b []byte) error { |
| 326 | return xxx_messageInfo_Error.Unmarshal(m, b) |
| 327 | } |
| 328 | func (m *Error) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 329 | return xxx_messageInfo_Error.Marshal(b, m, deterministic) |
| 330 | } |
| 331 | func (dst *Error) XXX_Merge(src proto.Message) { |
| 332 | xxx_messageInfo_Error.Merge(dst, src) |
| 333 | } |
| 334 | func (m *Error) XXX_Size() int { |
| 335 | return xxx_messageInfo_Error.Size(m) |
| 336 | } |
| 337 | func (m *Error) XXX_DiscardUnknown() { |
| 338 | xxx_messageInfo_Error.DiscardUnknown(m) |
| 339 | } |
| 340 | |
| 341 | var xxx_messageInfo_Error proto.InternalMessageInfo |
| 342 | |
| 343 | func (m *Error) GetCode() *ErrorCode { |
| 344 | if m != nil { |
| 345 | return m.Code |
| 346 | } |
| 347 | return nil |
| 348 | } |
| 349 | |
| 350 | func (m *Error) GetReason() string { |
| 351 | if m != nil { |
| 352 | return m.Reason |
| 353 | } |
| 354 | return "" |
| 355 | } |
| 356 | |
| 357 | type Header struct { |
| 358 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 359 | Type MessageType `protobuf:"varint,2,opt,name=type,proto3,enum=voltha.MessageType" json:"type,omitempty"` |
| 360 | FromTopic string `protobuf:"bytes,3,opt,name=from_topic,json=fromTopic,proto3" json:"from_topic,omitempty"` |
| 361 | ToTopic string `protobuf:"bytes,4,opt,name=to_topic,json=toTopic,proto3" json:"to_topic,omitempty"` |
| 362 | KeyTopic string `protobuf:"bytes,5,opt,name=key_topic,json=keyTopic,proto3" json:"key_topic,omitempty"` |
| 363 | Timestamp int64 `protobuf:"varint,6,opt,name=timestamp,proto3" json:"timestamp,omitempty"` |
| 364 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 365 | XXX_unrecognized []byte `json:"-"` |
| 366 | XXX_sizecache int32 `json:"-"` |
| 367 | } |
| 368 | |
| 369 | func (m *Header) Reset() { *m = Header{} } |
| 370 | func (m *Header) String() string { return proto.CompactTextString(m) } |
| 371 | func (*Header) ProtoMessage() {} |
| 372 | func (*Header) Descriptor() ([]byte, []int) { |
| 373 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{6} |
| 374 | } |
| 375 | func (m *Header) XXX_Unmarshal(b []byte) error { |
| 376 | return xxx_messageInfo_Header.Unmarshal(m, b) |
| 377 | } |
| 378 | func (m *Header) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 379 | return xxx_messageInfo_Header.Marshal(b, m, deterministic) |
| 380 | } |
| 381 | func (dst *Header) XXX_Merge(src proto.Message) { |
| 382 | xxx_messageInfo_Header.Merge(dst, src) |
| 383 | } |
| 384 | func (m *Header) XXX_Size() int { |
| 385 | return xxx_messageInfo_Header.Size(m) |
| 386 | } |
| 387 | func (m *Header) XXX_DiscardUnknown() { |
| 388 | xxx_messageInfo_Header.DiscardUnknown(m) |
| 389 | } |
| 390 | |
| 391 | var xxx_messageInfo_Header proto.InternalMessageInfo |
| 392 | |
| 393 | func (m *Header) GetId() string { |
| 394 | if m != nil { |
| 395 | return m.Id |
| 396 | } |
| 397 | return "" |
| 398 | } |
| 399 | |
| 400 | func (m *Header) GetType() MessageType { |
| 401 | if m != nil { |
| 402 | return m.Type |
| 403 | } |
| 404 | return MessageType_REQUEST |
| 405 | } |
| 406 | |
| 407 | func (m *Header) GetFromTopic() string { |
| 408 | if m != nil { |
| 409 | return m.FromTopic |
| 410 | } |
| 411 | return "" |
| 412 | } |
| 413 | |
| 414 | func (m *Header) GetToTopic() string { |
| 415 | if m != nil { |
| 416 | return m.ToTopic |
| 417 | } |
| 418 | return "" |
| 419 | } |
| 420 | |
| 421 | func (m *Header) GetKeyTopic() string { |
| 422 | if m != nil { |
| 423 | return m.KeyTopic |
| 424 | } |
| 425 | return "" |
| 426 | } |
| 427 | |
| 428 | func (m *Header) GetTimestamp() int64 { |
| 429 | if m != nil { |
| 430 | return m.Timestamp |
| 431 | } |
| 432 | return 0 |
| 433 | } |
| 434 | |
| 435 | type Argument struct { |
| 436 | Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` |
| 437 | Value *any.Any `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` |
| 438 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 439 | XXX_unrecognized []byte `json:"-"` |
| 440 | XXX_sizecache int32 `json:"-"` |
| 441 | } |
| 442 | |
| 443 | func (m *Argument) Reset() { *m = Argument{} } |
| 444 | func (m *Argument) String() string { return proto.CompactTextString(m) } |
| 445 | func (*Argument) ProtoMessage() {} |
| 446 | func (*Argument) Descriptor() ([]byte, []int) { |
| 447 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{7} |
| 448 | } |
| 449 | func (m *Argument) XXX_Unmarshal(b []byte) error { |
| 450 | return xxx_messageInfo_Argument.Unmarshal(m, b) |
| 451 | } |
| 452 | func (m *Argument) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 453 | return xxx_messageInfo_Argument.Marshal(b, m, deterministic) |
| 454 | } |
| 455 | func (dst *Argument) XXX_Merge(src proto.Message) { |
| 456 | xxx_messageInfo_Argument.Merge(dst, src) |
| 457 | } |
| 458 | func (m *Argument) XXX_Size() int { |
| 459 | return xxx_messageInfo_Argument.Size(m) |
| 460 | } |
| 461 | func (m *Argument) XXX_DiscardUnknown() { |
| 462 | xxx_messageInfo_Argument.DiscardUnknown(m) |
| 463 | } |
| 464 | |
| 465 | var xxx_messageInfo_Argument proto.InternalMessageInfo |
| 466 | |
| 467 | func (m *Argument) GetKey() string { |
| 468 | if m != nil { |
| 469 | return m.Key |
| 470 | } |
| 471 | return "" |
| 472 | } |
| 473 | |
| 474 | func (m *Argument) GetValue() *any.Any { |
| 475 | if m != nil { |
| 476 | return m.Value |
| 477 | } |
| 478 | return nil |
| 479 | } |
| 480 | |
| 481 | type InterContainerMessage struct { |
| 482 | Header *Header `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` |
| 483 | Body *any.Any `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"` |
| 484 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 485 | XXX_unrecognized []byte `json:"-"` |
| 486 | XXX_sizecache int32 `json:"-"` |
| 487 | } |
| 488 | |
| 489 | func (m *InterContainerMessage) Reset() { *m = InterContainerMessage{} } |
| 490 | func (m *InterContainerMessage) String() string { return proto.CompactTextString(m) } |
| 491 | func (*InterContainerMessage) ProtoMessage() {} |
| 492 | func (*InterContainerMessage) Descriptor() ([]byte, []int) { |
| 493 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{8} |
| 494 | } |
| 495 | func (m *InterContainerMessage) XXX_Unmarshal(b []byte) error { |
| 496 | return xxx_messageInfo_InterContainerMessage.Unmarshal(m, b) |
| 497 | } |
| 498 | func (m *InterContainerMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 499 | return xxx_messageInfo_InterContainerMessage.Marshal(b, m, deterministic) |
| 500 | } |
| 501 | func (dst *InterContainerMessage) XXX_Merge(src proto.Message) { |
| 502 | xxx_messageInfo_InterContainerMessage.Merge(dst, src) |
| 503 | } |
| 504 | func (m *InterContainerMessage) XXX_Size() int { |
| 505 | return xxx_messageInfo_InterContainerMessage.Size(m) |
| 506 | } |
| 507 | func (m *InterContainerMessage) XXX_DiscardUnknown() { |
| 508 | xxx_messageInfo_InterContainerMessage.DiscardUnknown(m) |
| 509 | } |
| 510 | |
| 511 | var xxx_messageInfo_InterContainerMessage proto.InternalMessageInfo |
| 512 | |
| 513 | func (m *InterContainerMessage) GetHeader() *Header { |
| 514 | if m != nil { |
| 515 | return m.Header |
| 516 | } |
| 517 | return nil |
| 518 | } |
| 519 | |
| 520 | func (m *InterContainerMessage) GetBody() *any.Any { |
| 521 | if m != nil { |
| 522 | return m.Body |
| 523 | } |
| 524 | return nil |
| 525 | } |
| 526 | |
| 527 | type InterContainerRequestBody struct { |
| 528 | Rpc string `protobuf:"bytes,2,opt,name=rpc,proto3" json:"rpc,omitempty"` |
| 529 | Args []*Argument `protobuf:"bytes,3,rep,name=args,proto3" json:"args,omitempty"` |
| 530 | ResponseRequired bool `protobuf:"varint,4,opt,name=response_required,json=responseRequired,proto3" json:"response_required,omitempty"` |
| 531 | ReplyToTopic string `protobuf:"bytes,5,opt,name=reply_to_topic,json=replyToTopic,proto3" json:"reply_to_topic,omitempty"` |
| 532 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 533 | XXX_unrecognized []byte `json:"-"` |
| 534 | XXX_sizecache int32 `json:"-"` |
| 535 | } |
| 536 | |
| 537 | func (m *InterContainerRequestBody) Reset() { *m = InterContainerRequestBody{} } |
| 538 | func (m *InterContainerRequestBody) String() string { return proto.CompactTextString(m) } |
| 539 | func (*InterContainerRequestBody) ProtoMessage() {} |
| 540 | func (*InterContainerRequestBody) Descriptor() ([]byte, []int) { |
| 541 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{9} |
| 542 | } |
| 543 | func (m *InterContainerRequestBody) XXX_Unmarshal(b []byte) error { |
| 544 | return xxx_messageInfo_InterContainerRequestBody.Unmarshal(m, b) |
| 545 | } |
| 546 | func (m *InterContainerRequestBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 547 | return xxx_messageInfo_InterContainerRequestBody.Marshal(b, m, deterministic) |
| 548 | } |
| 549 | func (dst *InterContainerRequestBody) XXX_Merge(src proto.Message) { |
| 550 | xxx_messageInfo_InterContainerRequestBody.Merge(dst, src) |
| 551 | } |
| 552 | func (m *InterContainerRequestBody) XXX_Size() int { |
| 553 | return xxx_messageInfo_InterContainerRequestBody.Size(m) |
| 554 | } |
| 555 | func (m *InterContainerRequestBody) XXX_DiscardUnknown() { |
| 556 | xxx_messageInfo_InterContainerRequestBody.DiscardUnknown(m) |
| 557 | } |
| 558 | |
| 559 | var xxx_messageInfo_InterContainerRequestBody proto.InternalMessageInfo |
| 560 | |
| 561 | func (m *InterContainerRequestBody) GetRpc() string { |
| 562 | if m != nil { |
| 563 | return m.Rpc |
| 564 | } |
| 565 | return "" |
| 566 | } |
| 567 | |
| 568 | func (m *InterContainerRequestBody) GetArgs() []*Argument { |
| 569 | if m != nil { |
| 570 | return m.Args |
| 571 | } |
| 572 | return nil |
| 573 | } |
| 574 | |
| 575 | func (m *InterContainerRequestBody) GetResponseRequired() bool { |
| 576 | if m != nil { |
| 577 | return m.ResponseRequired |
| 578 | } |
| 579 | return false |
| 580 | } |
| 581 | |
| 582 | func (m *InterContainerRequestBody) GetReplyToTopic() string { |
| 583 | if m != nil { |
| 584 | return m.ReplyToTopic |
| 585 | } |
| 586 | return "" |
| 587 | } |
| 588 | |
| 589 | type InterContainerResponseBody struct { |
| 590 | Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"` |
| 591 | Result *any.Any `protobuf:"bytes,3,opt,name=result,proto3" json:"result,omitempty"` |
| 592 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 593 | XXX_unrecognized []byte `json:"-"` |
| 594 | XXX_sizecache int32 `json:"-"` |
| 595 | } |
| 596 | |
| 597 | func (m *InterContainerResponseBody) Reset() { *m = InterContainerResponseBody{} } |
| 598 | func (m *InterContainerResponseBody) String() string { return proto.CompactTextString(m) } |
| 599 | func (*InterContainerResponseBody) ProtoMessage() {} |
| 600 | func (*InterContainerResponseBody) Descriptor() ([]byte, []int) { |
| 601 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{10} |
| 602 | } |
| 603 | func (m *InterContainerResponseBody) XXX_Unmarshal(b []byte) error { |
| 604 | return xxx_messageInfo_InterContainerResponseBody.Unmarshal(m, b) |
| 605 | } |
| 606 | func (m *InterContainerResponseBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 607 | return xxx_messageInfo_InterContainerResponseBody.Marshal(b, m, deterministic) |
| 608 | } |
| 609 | func (dst *InterContainerResponseBody) XXX_Merge(src proto.Message) { |
| 610 | xxx_messageInfo_InterContainerResponseBody.Merge(dst, src) |
| 611 | } |
| 612 | func (m *InterContainerResponseBody) XXX_Size() int { |
| 613 | return xxx_messageInfo_InterContainerResponseBody.Size(m) |
| 614 | } |
| 615 | func (m *InterContainerResponseBody) XXX_DiscardUnknown() { |
| 616 | xxx_messageInfo_InterContainerResponseBody.DiscardUnknown(m) |
| 617 | } |
| 618 | |
| 619 | var xxx_messageInfo_InterContainerResponseBody proto.InternalMessageInfo |
| 620 | |
| 621 | func (m *InterContainerResponseBody) GetSuccess() bool { |
| 622 | if m != nil { |
| 623 | return m.Success |
| 624 | } |
| 625 | return false |
| 626 | } |
| 627 | |
| 628 | func (m *InterContainerResponseBody) GetResult() *any.Any { |
| 629 | if m != nil { |
| 630 | return m.Result |
| 631 | } |
| 632 | return nil |
| 633 | } |
| 634 | |
| 635 | type SwitchCapability struct { |
| 636 | Desc *openflow_13.OfpDesc `protobuf:"bytes,1,opt,name=desc,proto3" json:"desc,omitempty"` |
| 637 | SwitchFeatures *openflow_13.OfpSwitchFeatures `protobuf:"bytes,2,opt,name=switch_features,json=switchFeatures,proto3" json:"switch_features,omitempty"` |
| 638 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 639 | XXX_unrecognized []byte `json:"-"` |
| 640 | XXX_sizecache int32 `json:"-"` |
| 641 | } |
| 642 | |
| 643 | func (m *SwitchCapability) Reset() { *m = SwitchCapability{} } |
| 644 | func (m *SwitchCapability) String() string { return proto.CompactTextString(m) } |
| 645 | func (*SwitchCapability) ProtoMessage() {} |
| 646 | func (*SwitchCapability) Descriptor() ([]byte, []int) { |
| 647 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{11} |
| 648 | } |
| 649 | func (m *SwitchCapability) XXX_Unmarshal(b []byte) error { |
| 650 | return xxx_messageInfo_SwitchCapability.Unmarshal(m, b) |
| 651 | } |
| 652 | func (m *SwitchCapability) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 653 | return xxx_messageInfo_SwitchCapability.Marshal(b, m, deterministic) |
| 654 | } |
| 655 | func (dst *SwitchCapability) XXX_Merge(src proto.Message) { |
| 656 | xxx_messageInfo_SwitchCapability.Merge(dst, src) |
| 657 | } |
| 658 | func (m *SwitchCapability) XXX_Size() int { |
| 659 | return xxx_messageInfo_SwitchCapability.Size(m) |
| 660 | } |
| 661 | func (m *SwitchCapability) XXX_DiscardUnknown() { |
| 662 | xxx_messageInfo_SwitchCapability.DiscardUnknown(m) |
| 663 | } |
| 664 | |
| 665 | var xxx_messageInfo_SwitchCapability proto.InternalMessageInfo |
| 666 | |
| 667 | func (m *SwitchCapability) GetDesc() *openflow_13.OfpDesc { |
| 668 | if m != nil { |
| 669 | return m.Desc |
| 670 | } |
| 671 | return nil |
| 672 | } |
| 673 | |
| 674 | func (m *SwitchCapability) GetSwitchFeatures() *openflow_13.OfpSwitchFeatures { |
| 675 | if m != nil { |
| 676 | return m.SwitchFeatures |
| 677 | } |
| 678 | return nil |
| 679 | } |
| 680 | |
| 681 | type PortCapability struct { |
| 682 | Port *voltha.LogicalPort `protobuf:"bytes,1,opt,name=port,proto3" json:"port,omitempty"` |
| 683 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 684 | XXX_unrecognized []byte `json:"-"` |
| 685 | XXX_sizecache int32 `json:"-"` |
| 686 | } |
| 687 | |
| 688 | func (m *PortCapability) Reset() { *m = PortCapability{} } |
| 689 | func (m *PortCapability) String() string { return proto.CompactTextString(m) } |
| 690 | func (*PortCapability) ProtoMessage() {} |
| 691 | func (*PortCapability) Descriptor() ([]byte, []int) { |
| 692 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{12} |
| 693 | } |
| 694 | func (m *PortCapability) XXX_Unmarshal(b []byte) error { |
| 695 | return xxx_messageInfo_PortCapability.Unmarshal(m, b) |
| 696 | } |
| 697 | func (m *PortCapability) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 698 | return xxx_messageInfo_PortCapability.Marshal(b, m, deterministic) |
| 699 | } |
| 700 | func (dst *PortCapability) XXX_Merge(src proto.Message) { |
| 701 | xxx_messageInfo_PortCapability.Merge(dst, src) |
| 702 | } |
| 703 | func (m *PortCapability) XXX_Size() int { |
| 704 | return xxx_messageInfo_PortCapability.Size(m) |
| 705 | } |
| 706 | func (m *PortCapability) XXX_DiscardUnknown() { |
| 707 | xxx_messageInfo_PortCapability.DiscardUnknown(m) |
| 708 | } |
| 709 | |
| 710 | var xxx_messageInfo_PortCapability proto.InternalMessageInfo |
| 711 | |
| 712 | func (m *PortCapability) GetPort() *voltha.LogicalPort { |
| 713 | if m != nil { |
| 714 | return m.Port |
| 715 | } |
| 716 | return nil |
| 717 | } |
| 718 | |
| 719 | type DeviceDiscovered struct { |
| 720 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 721 | ParentId string `protobuf:"bytes,2,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"` |
| 722 | DeviceType string `protobuf:"bytes,3,opt,name=device_type,json=deviceType,proto3" json:"device_type,omitempty"` |
| 723 | Publisher string `protobuf:"bytes,4,opt,name=publisher,proto3" json:"publisher,omitempty"` |
| 724 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 725 | XXX_unrecognized []byte `json:"-"` |
| 726 | XXX_sizecache int32 `json:"-"` |
| 727 | } |
| 728 | |
| 729 | func (m *DeviceDiscovered) Reset() { *m = DeviceDiscovered{} } |
| 730 | func (m *DeviceDiscovered) String() string { return proto.CompactTextString(m) } |
| 731 | func (*DeviceDiscovered) ProtoMessage() {} |
| 732 | func (*DeviceDiscovered) Descriptor() ([]byte, []int) { |
| 733 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{13} |
| 734 | } |
| 735 | func (m *DeviceDiscovered) XXX_Unmarshal(b []byte) error { |
| 736 | return xxx_messageInfo_DeviceDiscovered.Unmarshal(m, b) |
| 737 | } |
| 738 | func (m *DeviceDiscovered) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 739 | return xxx_messageInfo_DeviceDiscovered.Marshal(b, m, deterministic) |
| 740 | } |
| 741 | func (dst *DeviceDiscovered) XXX_Merge(src proto.Message) { |
| 742 | xxx_messageInfo_DeviceDiscovered.Merge(dst, src) |
| 743 | } |
| 744 | func (m *DeviceDiscovered) XXX_Size() int { |
| 745 | return xxx_messageInfo_DeviceDiscovered.Size(m) |
| 746 | } |
| 747 | func (m *DeviceDiscovered) XXX_DiscardUnknown() { |
| 748 | xxx_messageInfo_DeviceDiscovered.DiscardUnknown(m) |
| 749 | } |
| 750 | |
| 751 | var xxx_messageInfo_DeviceDiscovered proto.InternalMessageInfo |
| 752 | |
| 753 | func (m *DeviceDiscovered) GetId() string { |
| 754 | if m != nil { |
| 755 | return m.Id |
| 756 | } |
| 757 | return "" |
| 758 | } |
| 759 | |
| 760 | func (m *DeviceDiscovered) GetParentId() string { |
| 761 | if m != nil { |
| 762 | return m.ParentId |
| 763 | } |
| 764 | return "" |
| 765 | } |
| 766 | |
| 767 | func (m *DeviceDiscovered) GetDeviceType() string { |
| 768 | if m != nil { |
| 769 | return m.DeviceType |
| 770 | } |
| 771 | return "" |
| 772 | } |
| 773 | |
| 774 | func (m *DeviceDiscovered) GetPublisher() string { |
| 775 | if m != nil { |
| 776 | return m.Publisher |
| 777 | } |
| 778 | return "" |
| 779 | } |
| 780 | |
| 781 | type InterAdapterMessageType struct { |
| 782 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 783 | XXX_unrecognized []byte `json:"-"` |
| 784 | XXX_sizecache int32 `json:"-"` |
| 785 | } |
| 786 | |
| 787 | func (m *InterAdapterMessageType) Reset() { *m = InterAdapterMessageType{} } |
| 788 | func (m *InterAdapterMessageType) String() string { return proto.CompactTextString(m) } |
| 789 | func (*InterAdapterMessageType) ProtoMessage() {} |
| 790 | func (*InterAdapterMessageType) Descriptor() ([]byte, []int) { |
| 791 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{14} |
| 792 | } |
| 793 | func (m *InterAdapterMessageType) XXX_Unmarshal(b []byte) error { |
| 794 | return xxx_messageInfo_InterAdapterMessageType.Unmarshal(m, b) |
| 795 | } |
| 796 | func (m *InterAdapterMessageType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 797 | return xxx_messageInfo_InterAdapterMessageType.Marshal(b, m, deterministic) |
| 798 | } |
| 799 | func (dst *InterAdapterMessageType) XXX_Merge(src proto.Message) { |
| 800 | xxx_messageInfo_InterAdapterMessageType.Merge(dst, src) |
| 801 | } |
| 802 | func (m *InterAdapterMessageType) XXX_Size() int { |
| 803 | return xxx_messageInfo_InterAdapterMessageType.Size(m) |
| 804 | } |
| 805 | func (m *InterAdapterMessageType) XXX_DiscardUnknown() { |
| 806 | xxx_messageInfo_InterAdapterMessageType.DiscardUnknown(m) |
| 807 | } |
| 808 | |
| 809 | var xxx_messageInfo_InterAdapterMessageType proto.InternalMessageInfo |
| 810 | |
| 811 | type InterAdapterHeader struct { |
| 812 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 813 | Type InterAdapterMessageType_Types `protobuf:"varint,2,opt,name=type,proto3,enum=voltha.InterAdapterMessageType_Types" json:"type,omitempty"` |
| 814 | FromTopic string `protobuf:"bytes,3,opt,name=from_topic,json=fromTopic,proto3" json:"from_topic,omitempty"` |
| 815 | ToTopic string `protobuf:"bytes,4,opt,name=to_topic,json=toTopic,proto3" json:"to_topic,omitempty"` |
| 816 | ToDeviceId string `protobuf:"bytes,5,opt,name=to_device_id,json=toDeviceId,proto3" json:"to_device_id,omitempty"` |
| 817 | ProxyDeviceId string `protobuf:"bytes,6,opt,name=proxy_device_id,json=proxyDeviceId,proto3" json:"proxy_device_id,omitempty"` |
| 818 | Timestamp int64 `protobuf:"varint,7,opt,name=timestamp,proto3" json:"timestamp,omitempty"` |
| 819 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 820 | XXX_unrecognized []byte `json:"-"` |
| 821 | XXX_sizecache int32 `json:"-"` |
| 822 | } |
| 823 | |
| 824 | func (m *InterAdapterHeader) Reset() { *m = InterAdapterHeader{} } |
| 825 | func (m *InterAdapterHeader) String() string { return proto.CompactTextString(m) } |
| 826 | func (*InterAdapterHeader) ProtoMessage() {} |
| 827 | func (*InterAdapterHeader) Descriptor() ([]byte, []int) { |
| 828 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{15} |
| 829 | } |
| 830 | func (m *InterAdapterHeader) XXX_Unmarshal(b []byte) error { |
| 831 | return xxx_messageInfo_InterAdapterHeader.Unmarshal(m, b) |
| 832 | } |
| 833 | func (m *InterAdapterHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 834 | return xxx_messageInfo_InterAdapterHeader.Marshal(b, m, deterministic) |
| 835 | } |
| 836 | func (dst *InterAdapterHeader) XXX_Merge(src proto.Message) { |
| 837 | xxx_messageInfo_InterAdapterHeader.Merge(dst, src) |
| 838 | } |
| 839 | func (m *InterAdapterHeader) XXX_Size() int { |
| 840 | return xxx_messageInfo_InterAdapterHeader.Size(m) |
| 841 | } |
| 842 | func (m *InterAdapterHeader) XXX_DiscardUnknown() { |
| 843 | xxx_messageInfo_InterAdapterHeader.DiscardUnknown(m) |
| 844 | } |
| 845 | |
| 846 | var xxx_messageInfo_InterAdapterHeader proto.InternalMessageInfo |
| 847 | |
| 848 | func (m *InterAdapterHeader) GetId() string { |
| 849 | if m != nil { |
| 850 | return m.Id |
| 851 | } |
| 852 | return "" |
| 853 | } |
| 854 | |
| 855 | func (m *InterAdapterHeader) GetType() InterAdapterMessageType_Types { |
| 856 | if m != nil { |
| 857 | return m.Type |
| 858 | } |
| 859 | return InterAdapterMessageType_FLOW_REQUEST |
| 860 | } |
| 861 | |
| 862 | func (m *InterAdapterHeader) GetFromTopic() string { |
| 863 | if m != nil { |
| 864 | return m.FromTopic |
| 865 | } |
| 866 | return "" |
| 867 | } |
| 868 | |
| 869 | func (m *InterAdapterHeader) GetToTopic() string { |
| 870 | if m != nil { |
| 871 | return m.ToTopic |
| 872 | } |
| 873 | return "" |
| 874 | } |
| 875 | |
| 876 | func (m *InterAdapterHeader) GetToDeviceId() string { |
| 877 | if m != nil { |
| 878 | return m.ToDeviceId |
| 879 | } |
| 880 | return "" |
| 881 | } |
| 882 | |
| 883 | func (m *InterAdapterHeader) GetProxyDeviceId() string { |
| 884 | if m != nil { |
| 885 | return m.ProxyDeviceId |
| 886 | } |
| 887 | return "" |
| 888 | } |
| 889 | |
| 890 | func (m *InterAdapterHeader) GetTimestamp() int64 { |
| 891 | if m != nil { |
| 892 | return m.Timestamp |
| 893 | } |
| 894 | return 0 |
| 895 | } |
| 896 | |
| 897 | type InterAdapterOmciMessage struct { |
| 898 | Message []byte `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` |
| 899 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 900 | XXX_unrecognized []byte `json:"-"` |
| 901 | XXX_sizecache int32 `json:"-"` |
| 902 | } |
| 903 | |
| 904 | func (m *InterAdapterOmciMessage) Reset() { *m = InterAdapterOmciMessage{} } |
| 905 | func (m *InterAdapterOmciMessage) String() string { return proto.CompactTextString(m) } |
| 906 | func (*InterAdapterOmciMessage) ProtoMessage() {} |
| 907 | func (*InterAdapterOmciMessage) Descriptor() ([]byte, []int) { |
| 908 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{16} |
| 909 | } |
| 910 | func (m *InterAdapterOmciMessage) XXX_Unmarshal(b []byte) error { |
| 911 | return xxx_messageInfo_InterAdapterOmciMessage.Unmarshal(m, b) |
| 912 | } |
| 913 | func (m *InterAdapterOmciMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 914 | return xxx_messageInfo_InterAdapterOmciMessage.Marshal(b, m, deterministic) |
| 915 | } |
| 916 | func (dst *InterAdapterOmciMessage) XXX_Merge(src proto.Message) { |
| 917 | xxx_messageInfo_InterAdapterOmciMessage.Merge(dst, src) |
| 918 | } |
| 919 | func (m *InterAdapterOmciMessage) XXX_Size() int { |
| 920 | return xxx_messageInfo_InterAdapterOmciMessage.Size(m) |
| 921 | } |
| 922 | func (m *InterAdapterOmciMessage) XXX_DiscardUnknown() { |
| 923 | xxx_messageInfo_InterAdapterOmciMessage.DiscardUnknown(m) |
| 924 | } |
| 925 | |
| 926 | var xxx_messageInfo_InterAdapterOmciMessage proto.InternalMessageInfo |
| 927 | |
| 928 | func (m *InterAdapterOmciMessage) GetMessage() []byte { |
| 929 | if m != nil { |
| 930 | return m.Message |
| 931 | } |
| 932 | return nil |
| 933 | } |
| 934 | |
| 935 | type InterAdapterResponseBody struct { |
| 936 | Status bool `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"` |
| 937 | // Types that are valid to be assigned to Payload: |
| 938 | // *InterAdapterResponseBody_Body |
| 939 | // *InterAdapterResponseBody_Omci |
| 940 | Payload isInterAdapterResponseBody_Payload `protobuf_oneof:"payload"` |
| 941 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 942 | XXX_unrecognized []byte `json:"-"` |
| 943 | XXX_sizecache int32 `json:"-"` |
| 944 | } |
| 945 | |
| 946 | func (m *InterAdapterResponseBody) Reset() { *m = InterAdapterResponseBody{} } |
| 947 | func (m *InterAdapterResponseBody) String() string { return proto.CompactTextString(m) } |
| 948 | func (*InterAdapterResponseBody) ProtoMessage() {} |
| 949 | func (*InterAdapterResponseBody) Descriptor() ([]byte, []int) { |
| 950 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{17} |
| 951 | } |
| 952 | func (m *InterAdapterResponseBody) XXX_Unmarshal(b []byte) error { |
| 953 | return xxx_messageInfo_InterAdapterResponseBody.Unmarshal(m, b) |
| 954 | } |
| 955 | func (m *InterAdapterResponseBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 956 | return xxx_messageInfo_InterAdapterResponseBody.Marshal(b, m, deterministic) |
| 957 | } |
| 958 | func (dst *InterAdapterResponseBody) XXX_Merge(src proto.Message) { |
| 959 | xxx_messageInfo_InterAdapterResponseBody.Merge(dst, src) |
| 960 | } |
| 961 | func (m *InterAdapterResponseBody) XXX_Size() int { |
| 962 | return xxx_messageInfo_InterAdapterResponseBody.Size(m) |
| 963 | } |
| 964 | func (m *InterAdapterResponseBody) XXX_DiscardUnknown() { |
| 965 | xxx_messageInfo_InterAdapterResponseBody.DiscardUnknown(m) |
| 966 | } |
| 967 | |
| 968 | var xxx_messageInfo_InterAdapterResponseBody proto.InternalMessageInfo |
| 969 | |
| 970 | func (m *InterAdapterResponseBody) GetStatus() bool { |
| 971 | if m != nil { |
| 972 | return m.Status |
| 973 | } |
| 974 | return false |
| 975 | } |
| 976 | |
| 977 | type isInterAdapterResponseBody_Payload interface { |
| 978 | isInterAdapterResponseBody_Payload() |
| 979 | } |
| 980 | |
| 981 | type InterAdapterResponseBody_Body struct { |
| 982 | Body *any.Any `protobuf:"bytes,2,opt,name=body,proto3,oneof"` |
| 983 | } |
| 984 | |
| 985 | type InterAdapterResponseBody_Omci struct { |
| 986 | Omci *InterAdapterOmciMessage `protobuf:"bytes,3,opt,name=omci,proto3,oneof"` |
| 987 | } |
| 988 | |
| 989 | func (*InterAdapterResponseBody_Body) isInterAdapterResponseBody_Payload() {} |
| 990 | |
| 991 | func (*InterAdapterResponseBody_Omci) isInterAdapterResponseBody_Payload() {} |
| 992 | |
| 993 | func (m *InterAdapterResponseBody) GetPayload() isInterAdapterResponseBody_Payload { |
| 994 | if m != nil { |
| 995 | return m.Payload |
| 996 | } |
| 997 | return nil |
| 998 | } |
| 999 | |
| 1000 | func (m *InterAdapterResponseBody) GetBody() *any.Any { |
| 1001 | if x, ok := m.GetPayload().(*InterAdapterResponseBody_Body); ok { |
| 1002 | return x.Body |
| 1003 | } |
| 1004 | return nil |
| 1005 | } |
| 1006 | |
| 1007 | func (m *InterAdapterResponseBody) GetOmci() *InterAdapterOmciMessage { |
| 1008 | if x, ok := m.GetPayload().(*InterAdapterResponseBody_Omci); ok { |
| 1009 | return x.Omci |
| 1010 | } |
| 1011 | return nil |
| 1012 | } |
| 1013 | |
| 1014 | // XXX_OneofFuncs is for the internal use of the proto package. |
| 1015 | func (*InterAdapterResponseBody) XXX_OneofFuncs() (func(msg proto.Message, b *proto.Buffer) error, func(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error), func(msg proto.Message) (n int), []interface{}) { |
| 1016 | return _InterAdapterResponseBody_OneofMarshaler, _InterAdapterResponseBody_OneofUnmarshaler, _InterAdapterResponseBody_OneofSizer, []interface{}{ |
| 1017 | (*InterAdapterResponseBody_Body)(nil), |
| 1018 | (*InterAdapterResponseBody_Omci)(nil), |
| 1019 | } |
| 1020 | } |
| 1021 | |
| 1022 | func _InterAdapterResponseBody_OneofMarshaler(msg proto.Message, b *proto.Buffer) error { |
| 1023 | m := msg.(*InterAdapterResponseBody) |
| 1024 | // payload |
| 1025 | switch x := m.Payload.(type) { |
| 1026 | case *InterAdapterResponseBody_Body: |
| 1027 | b.EncodeVarint(2<<3 | proto.WireBytes) |
| 1028 | if err := b.EncodeMessage(x.Body); err != nil { |
| 1029 | return err |
| 1030 | } |
| 1031 | case *InterAdapterResponseBody_Omci: |
| 1032 | b.EncodeVarint(3<<3 | proto.WireBytes) |
| 1033 | if err := b.EncodeMessage(x.Omci); err != nil { |
| 1034 | return err |
| 1035 | } |
| 1036 | case nil: |
| 1037 | default: |
| 1038 | return fmt.Errorf("InterAdapterResponseBody.Payload has unexpected type %T", x) |
| 1039 | } |
| 1040 | return nil |
| 1041 | } |
| 1042 | |
| 1043 | func _InterAdapterResponseBody_OneofUnmarshaler(msg proto.Message, tag, wire int, b *proto.Buffer) (bool, error) { |
| 1044 | m := msg.(*InterAdapterResponseBody) |
| 1045 | switch tag { |
| 1046 | case 2: // payload.body |
| 1047 | if wire != proto.WireBytes { |
| 1048 | return true, proto.ErrInternalBadWireType |
| 1049 | } |
| 1050 | msg := new(any.Any) |
| 1051 | err := b.DecodeMessage(msg) |
| 1052 | m.Payload = &InterAdapterResponseBody_Body{msg} |
| 1053 | return true, err |
| 1054 | case 3: // payload.omci |
| 1055 | if wire != proto.WireBytes { |
| 1056 | return true, proto.ErrInternalBadWireType |
| 1057 | } |
| 1058 | msg := new(InterAdapterOmciMessage) |
| 1059 | err := b.DecodeMessage(msg) |
| 1060 | m.Payload = &InterAdapterResponseBody_Omci{msg} |
| 1061 | return true, err |
| 1062 | default: |
| 1063 | return false, nil |
| 1064 | } |
| 1065 | } |
| 1066 | |
| 1067 | func _InterAdapterResponseBody_OneofSizer(msg proto.Message) (n int) { |
| 1068 | m := msg.(*InterAdapterResponseBody) |
| 1069 | // payload |
| 1070 | switch x := m.Payload.(type) { |
| 1071 | case *InterAdapterResponseBody_Body: |
| 1072 | s := proto.Size(x.Body) |
| 1073 | n += 1 // tag and wire |
| 1074 | n += proto.SizeVarint(uint64(s)) |
| 1075 | n += s |
| 1076 | case *InterAdapterResponseBody_Omci: |
| 1077 | s := proto.Size(x.Omci) |
| 1078 | n += 1 // tag and wire |
| 1079 | n += proto.SizeVarint(uint64(s)) |
| 1080 | n += s |
| 1081 | case nil: |
| 1082 | default: |
| 1083 | panic(fmt.Sprintf("proto: unexpected type %T in oneof", x)) |
| 1084 | } |
| 1085 | return n |
| 1086 | } |
| 1087 | |
| 1088 | type InterAdapterMessage struct { |
| 1089 | Header *InterAdapterHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` |
| 1090 | Body *any.Any `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"` |
| 1091 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1092 | XXX_unrecognized []byte `json:"-"` |
| 1093 | XXX_sizecache int32 `json:"-"` |
| 1094 | } |
| 1095 | |
| 1096 | func (m *InterAdapterMessage) Reset() { *m = InterAdapterMessage{} } |
| 1097 | func (m *InterAdapterMessage) String() string { return proto.CompactTextString(m) } |
| 1098 | func (*InterAdapterMessage) ProtoMessage() {} |
| 1099 | func (*InterAdapterMessage) Descriptor() ([]byte, []int) { |
| 1100 | return fileDescriptor_inter_container_07f83a25f58b3d1d, []int{18} |
| 1101 | } |
| 1102 | func (m *InterAdapterMessage) XXX_Unmarshal(b []byte) error { |
| 1103 | return xxx_messageInfo_InterAdapterMessage.Unmarshal(m, b) |
| 1104 | } |
| 1105 | func (m *InterAdapterMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1106 | return xxx_messageInfo_InterAdapterMessage.Marshal(b, m, deterministic) |
| 1107 | } |
| 1108 | func (dst *InterAdapterMessage) XXX_Merge(src proto.Message) { |
| 1109 | xxx_messageInfo_InterAdapterMessage.Merge(dst, src) |
| 1110 | } |
| 1111 | func (m *InterAdapterMessage) XXX_Size() int { |
| 1112 | return xxx_messageInfo_InterAdapterMessage.Size(m) |
| 1113 | } |
| 1114 | func (m *InterAdapterMessage) XXX_DiscardUnknown() { |
| 1115 | xxx_messageInfo_InterAdapterMessage.DiscardUnknown(m) |
| 1116 | } |
| 1117 | |
| 1118 | var xxx_messageInfo_InterAdapterMessage proto.InternalMessageInfo |
| 1119 | |
| 1120 | func (m *InterAdapterMessage) GetHeader() *InterAdapterHeader { |
| 1121 | if m != nil { |
| 1122 | return m.Header |
| 1123 | } |
| 1124 | return nil |
| 1125 | } |
| 1126 | |
| 1127 | func (m *InterAdapterMessage) GetBody() *any.Any { |
| 1128 | if m != nil { |
| 1129 | return m.Body |
| 1130 | } |
| 1131 | return nil |
| 1132 | } |
| 1133 | |
| 1134 | func init() { |
| 1135 | proto.RegisterType((*StrType)(nil), "voltha.StrType") |
| 1136 | proto.RegisterType((*IntType)(nil), "voltha.IntType") |
| 1137 | proto.RegisterType((*BoolType)(nil), "voltha.BoolType") |
| 1138 | proto.RegisterType((*Packet)(nil), "voltha.Packet") |
| 1139 | proto.RegisterType((*ErrorCode)(nil), "voltha.ErrorCode") |
| 1140 | proto.RegisterType((*Error)(nil), "voltha.Error") |
| 1141 | proto.RegisterType((*Header)(nil), "voltha.Header") |
| 1142 | proto.RegisterType((*Argument)(nil), "voltha.Argument") |
| 1143 | proto.RegisterType((*InterContainerMessage)(nil), "voltha.InterContainerMessage") |
| 1144 | proto.RegisterType((*InterContainerRequestBody)(nil), "voltha.InterContainerRequestBody") |
| 1145 | proto.RegisterType((*InterContainerResponseBody)(nil), "voltha.InterContainerResponseBody") |
| 1146 | proto.RegisterType((*SwitchCapability)(nil), "voltha.SwitchCapability") |
| 1147 | proto.RegisterType((*PortCapability)(nil), "voltha.PortCapability") |
| 1148 | proto.RegisterType((*DeviceDiscovered)(nil), "voltha.DeviceDiscovered") |
| 1149 | proto.RegisterType((*InterAdapterMessageType)(nil), "voltha.InterAdapterMessageType") |
| 1150 | proto.RegisterType((*InterAdapterHeader)(nil), "voltha.InterAdapterHeader") |
| 1151 | proto.RegisterType((*InterAdapterOmciMessage)(nil), "voltha.InterAdapterOmciMessage") |
| 1152 | proto.RegisterType((*InterAdapterResponseBody)(nil), "voltha.InterAdapterResponseBody") |
| 1153 | proto.RegisterType((*InterAdapterMessage)(nil), "voltha.InterAdapterMessage") |
| 1154 | proto.RegisterEnum("voltha.MessageType", MessageType_name, MessageType_value) |
| 1155 | proto.RegisterEnum("voltha.ErrorCodeCodes", ErrorCodeCodes_name, ErrorCodeCodes_value) |
| 1156 | proto.RegisterEnum("voltha.InterAdapterMessageType_Types", InterAdapterMessageType_Types_name, InterAdapterMessageType_Types_value) |
| 1157 | } |
| 1158 | |
| 1159 | func init() { |
| 1160 | proto.RegisterFile("voltha_protos/inter_container.proto", fileDescriptor_inter_container_07f83a25f58b3d1d) |
| 1161 | } |
| 1162 | |
| 1163 | var fileDescriptor_inter_container_07f83a25f58b3d1d = []byte{ |
| 1164 | // 1061 bytes of a gzipped FileDescriptorProto |
| 1165 | 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xdb, 0x6e, 0xe3, 0x44, |
| 1166 | 0x18, 0xde, 0x9c, 0x93, 0x3f, 0xdd, 0x34, 0x9d, 0x6e, 0xbb, 0xe9, 0x01, 0xb5, 0x32, 0x7b, 0x28, |
| 1167 | 0x05, 0x52, 0xd1, 0x02, 0x62, 0xaf, 0x50, 0x9a, 0xb8, 0xaa, 0xa5, 0xb6, 0x09, 0x4e, 0x5a, 0x24, |
| 1168 | 0x6e, 0x2c, 0xc7, 0x9e, 0xa6, 0x56, 0x9d, 0x8c, 0x77, 0x66, 0xdc, 0xc5, 0x37, 0x48, 0xdc, 0xf1, |
| 1169 | 0x18, 0x5c, 0xc1, 0x1b, 0xf0, 0x02, 0xbc, 0x18, 0x9a, 0x83, 0x73, 0xa2, 0x05, 0x09, 0xee, 0x66, |
| 1170 | 0xbe, 0xef, 0x9b, 0xd3, 0x7f, 0xf8, 0x6c, 0xf8, 0xf8, 0x81, 0x84, 0xfc, 0xce, 0x75, 0x22, 0x4a, |
| 1171 | 0x38, 0x61, 0x47, 0xc1, 0x84, 0x63, 0xea, 0x78, 0x64, 0xc2, 0xdd, 0x60, 0x82, 0x69, 0x53, 0xc2, |
| 1172 | 0xa8, 0xa8, 0x44, 0xdb, 0x5b, 0x23, 0x42, 0x46, 0x21, 0x3e, 0x92, 0xe8, 0x30, 0xbe, 0x3d, 0x72, |
| 1173 | 0x27, 0x89, 0x92, 0x6c, 0xef, 0x2d, 0xee, 0x43, 0x22, 0x3c, 0xb9, 0x0d, 0xc9, 0x07, 0xe7, 0x8b, |
| 1174 | 0x13, 0x2d, 0x30, 0x16, 0x05, 0x21, 0x19, 0x05, 0x9e, 0x1b, 0x3a, 0x3e, 0x7e, 0x08, 0x3c, 0xac, |
| 1175 | 0x34, 0xc6, 0x0e, 0x94, 0xfa, 0x9c, 0x0e, 0x92, 0x08, 0xa3, 0x3a, 0xe4, 0x1e, 0xdc, 0xb0, 0x91, |
| 1176 | 0xd9, 0xcf, 0x1c, 0x54, 0x6c, 0x31, 0x14, 0xa4, 0x35, 0xe1, 0xcb, 0x64, 0x4e, 0x91, 0xbb, 0x50, |
| 1177 | 0x3e, 0x25, 0x24, 0x5c, 0x66, 0xcb, 0x8a, 0x35, 0xa0, 0xd8, 0x73, 0xbd, 0x7b, 0xcc, 0x51, 0x03, |
| 1178 | 0x4a, 0x91, 0x9b, 0x84, 0xc4, 0xf5, 0x25, 0xbf, 0x62, 0xa7, 0x53, 0xc3, 0x84, 0x8a, 0x49, 0x29, |
| 1179 | 0xa1, 0x6d, 0xe2, 0x63, 0xe3, 0x1b, 0x28, 0x78, 0xc4, 0xc7, 0x0c, 0xbd, 0x84, 0xf5, 0xeb, 0xab, |
| 1180 | 0xfe, 0x75, 0xaf, 0xd7, 0xb5, 0x07, 0x66, 0xc7, 0xb1, 0xcd, 0xef, 0xae, 0xcd, 0xfe, 0xa0, 0xfe, |
| 1181 | 0x0c, 0x6d, 0x02, 0xb2, 0xae, 0x6e, 0x5a, 0x17, 0x56, 0xc7, 0xe9, 0xb5, 0xec, 0xd6, 0xa5, 0x39, |
| 1182 | 0x30, 0xed, 0x7e, 0x3d, 0x63, 0x9c, 0x41, 0x41, 0x6e, 0x83, 0x5e, 0x43, 0x5e, 0x6c, 0x21, 0x8f, |
| 1183 | 0xa9, 0x1e, 0xaf, 0x35, 0xd5, 0xf3, 0x9b, 0xd3, 0x33, 0x6c, 0x49, 0xa3, 0x4d, 0x28, 0x52, 0xec, |
| 1184 | 0x32, 0x32, 0x69, 0x64, 0xe5, 0x53, 0xf5, 0xcc, 0xf8, 0x23, 0x03, 0xc5, 0x73, 0xec, 0xfa, 0x98, |
| 1185 | 0xa2, 0x1a, 0x64, 0x03, 0x5f, 0x47, 0x22, 0x1b, 0xf8, 0xe8, 0x2d, 0xe4, 0x79, 0x12, 0x61, 0xb9, |
| 1186 | 0xa0, 0x76, 0xbc, 0x9e, 0xee, 0x7c, 0x89, 0x19, 0x73, 0x47, 0x58, 0x84, 0xc0, 0x96, 0x02, 0xf4, |
| 1187 | 0x11, 0xc0, 0x2d, 0x25, 0x63, 0x87, 0x93, 0x28, 0xf0, 0x1a, 0x39, 0xb9, 0x41, 0x45, 0x20, 0x03, |
| 1188 | 0x01, 0xa0, 0x2d, 0x28, 0x73, 0xa2, 0xc9, 0xbc, 0x24, 0x4b, 0x9c, 0x28, 0x6a, 0x07, 0x2a, 0xf7, |
| 1189 | 0x38, 0xd1, 0x5c, 0x41, 0x72, 0xe5, 0x7b, 0x9c, 0x28, 0x72, 0x17, 0x2a, 0x3c, 0x18, 0x63, 0xc6, |
| 1190 | 0xdd, 0x71, 0xd4, 0x28, 0xca, 0x1c, 0xcc, 0x00, 0xe3, 0x1c, 0xca, 0x2d, 0x3a, 0x8a, 0xc7, 0x78, |
| 1191 | 0xc2, 0x45, 0x26, 0xee, 0x71, 0x92, 0x26, 0xf1, 0x1e, 0x27, 0xe8, 0x10, 0x0a, 0x0f, 0x6e, 0x18, |
| 1192 | 0xab, 0xcb, 0x57, 0x8f, 0x5f, 0x34, 0x55, 0x45, 0x35, 0xd3, 0x8a, 0x6a, 0xb6, 0x26, 0x89, 0xad, |
| 1193 | 0x24, 0x46, 0x00, 0x1b, 0x96, 0x28, 0xc7, 0x76, 0x5a, 0x8d, 0xfa, 0x85, 0xe8, 0x0d, 0x14, 0xef, |
| 1194 | 0x64, 0x68, 0x74, 0x70, 0x6b, 0x69, 0x08, 0x54, 0xc0, 0x6c, 0xcd, 0xa2, 0x03, 0xc8, 0x0f, 0x89, |
| 1195 | 0x9f, 0xfc, 0xe3, 0x59, 0x52, 0x61, 0xfc, 0x96, 0x81, 0xad, 0xc5, 0xb3, 0x6c, 0xfc, 0x3e, 0xc6, |
| 1196 | 0x8c, 0x9f, 0x12, 0x3f, 0x11, 0xcf, 0xa0, 0x91, 0xa7, 0x13, 0x24, 0x86, 0xe8, 0x15, 0xe4, 0x5d, |
| 1197 | 0x3a, 0x62, 0x8d, 0xdc, 0x7e, 0xee, 0xa0, 0x7a, 0x5c, 0x4f, 0xcf, 0x4f, 0x1f, 0x6e, 0x4b, 0x16, |
| 1198 | 0x7d, 0x0a, 0x6b, 0x14, 0xb3, 0x88, 0x4c, 0x18, 0x76, 0x28, 0x7e, 0x1f, 0x07, 0x14, 0xfb, 0x32, |
| 1199 | 0xd2, 0x65, 0xbb, 0x9e, 0x12, 0xb6, 0xc6, 0xd1, 0x2b, 0xa8, 0x51, 0x1c, 0x85, 0x22, 0xe8, 0x0b, |
| 1200 | 0x71, 0x5f, 0x91, 0xe8, 0x40, 0x25, 0xc6, 0xf0, 0x61, 0x7b, 0xf9, 0x9e, 0x6a, 0x1f, 0x79, 0xd1, |
| 1201 | 0x06, 0x94, 0x58, 0xec, 0x79, 0x98, 0x31, 0x5d, 0xfd, 0xe9, 0x14, 0x7d, 0x26, 0xca, 0x8c, 0xc5, |
| 1202 | 0x21, 0x97, 0x65, 0xf0, 0x54, 0x30, 0xb4, 0xc6, 0xf8, 0x25, 0x03, 0xf5, 0xfe, 0x87, 0x80, 0x7b, |
| 1203 | 0x77, 0x6d, 0x37, 0x72, 0x87, 0x41, 0x18, 0xf0, 0x04, 0x7d, 0x02, 0x79, 0x1f, 0x33, 0x4f, 0xc7, |
| 1204 | 0x7c, 0xa3, 0x39, 0xdf, 0xe2, 0xe4, 0x36, 0x72, 0x04, 0x69, 0x4b, 0x09, 0xb2, 0x60, 0x95, 0xc9, |
| 1205 | 0xe5, 0xce, 0x2d, 0x76, 0x79, 0x4c, 0x31, 0xd3, 0x39, 0xd8, 0xff, 0xdb, 0xaa, 0x25, 0x9d, 0x5d, |
| 1206 | 0x53, 0xc0, 0x99, 0x9e, 0x1b, 0xef, 0xa0, 0xd6, 0x23, 0x94, 0xcf, 0xdd, 0xe3, 0x2d, 0xe4, 0x23, |
| 1207 | 0x42, 0xb9, 0xbe, 0xc7, 0xb4, 0xfc, 0x2f, 0x94, 0xa1, 0x08, 0xb1, 0x2d, 0x05, 0xc6, 0x4f, 0x50, |
| 1208 | 0xef, 0x48, 0x77, 0xe9, 0x04, 0xcc, 0x23, 0x0f, 0x58, 0x44, 0x79, 0xb9, 0x97, 0x76, 0xa0, 0x12, |
| 1209 | 0xb9, 0x14, 0x4f, 0xb8, 0x13, 0xf8, 0x3a, 0xc1, 0x65, 0x05, 0x58, 0x3e, 0xda, 0x83, 0xaa, 0xb2, |
| 1210 | 0x27, 0x47, 0xf6, 0x9b, 0x6a, 0x20, 0x50, 0x90, 0x74, 0x9a, 0x5d, 0xa8, 0x44, 0xf1, 0x30, 0x0c, |
| 1211 | 0xd8, 0x1d, 0xa6, 0xba, 0x85, 0x66, 0x80, 0xf1, 0x67, 0x06, 0x5e, 0xca, 0x64, 0xb5, 0x7c, 0x37, |
| 1212 | 0xe2, 0xd3, 0xf2, 0x15, 0x2b, 0x8d, 0xdf, 0x33, 0x50, 0x10, 0x03, 0x86, 0xea, 0xb0, 0x72, 0x76, |
| 1213 | 0xd1, 0xfd, 0x7e, 0xce, 0x5a, 0xd6, 0xe0, 0xb9, 0x46, 0xfa, 0xbd, 0xee, 0x55, 0xdf, 0xac, 0x67, |
| 1214 | 0x84, 0xa8, 0x7b, 0xd9, 0xb6, 0xa6, 0xa2, 0xac, 0x10, 0x69, 0x44, 0x8b, 0x72, 0x68, 0x1d, 0x56, |
| 1215 | 0x2f, 0xcd, 0x81, 0x6d, 0xb5, 0xfb, 0x53, 0x5d, 0x1e, 0xbd, 0x80, 0xfa, 0x0c, 0xd4, 0xd2, 0x82, |
| 1216 | 0x90, 0x76, 0xaf, 0xae, 0x1d, 0xeb, 0x6a, 0x66, 0x69, 0x45, 0x21, 0x9d, 0x81, 0x5a, 0x5a, 0x32, |
| 1217 | 0x7e, 0xce, 0x02, 0x9a, 0x7f, 0xc5, 0x13, 0xa6, 0xf4, 0x6e, 0xc1, 0x94, 0x5e, 0xa7, 0x59, 0x79, |
| 1218 | 0xe2, 0xfd, 0x4d, 0xf9, 0xf6, 0xff, 0x6d, 0x53, 0xfb, 0xb0, 0xc2, 0x89, 0xfe, 0x84, 0x88, 0x04, |
| 1219 | 0xaa, 0x8e, 0x01, 0x4e, 0x54, 0xde, 0x2d, 0x1f, 0xbd, 0x81, 0xd5, 0x88, 0x92, 0x1f, 0x93, 0x39, |
| 1220 | 0x51, 0x51, 0x8a, 0x9e, 0x4b, 0x78, 0xaa, 0x5b, 0xf0, 0xb4, 0xd2, 0xb2, 0xa7, 0x9d, 0x2c, 0x26, |
| 1221 | 0xb2, 0x3b, 0xf6, 0x82, 0xd4, 0x8b, 0x1a, 0x50, 0x1a, 0xab, 0x61, 0xfa, 0x41, 0xd1, 0x53, 0xe3, |
| 1222 | 0xd7, 0x0c, 0x34, 0xe6, 0x57, 0x2d, 0x74, 0xea, 0x26, 0x14, 0x19, 0x77, 0x79, 0x9c, 0x36, 0xaa, |
| 1223 | 0x9e, 0xa1, 0xc3, 0x7f, 0xb7, 0xac, 0xf3, 0x67, 0xca, 0xb4, 0xd0, 0x57, 0x90, 0x27, 0x63, 0x2f, |
| 1224 | 0xd0, 0x1d, 0xbd, 0xf7, 0x58, 0xc8, 0xe7, 0x6e, 0x2a, 0x96, 0x09, 0xf9, 0x69, 0x65, 0xfa, 0x09, |
| 1225 | 0x34, 0x18, 0xac, 0x3f, 0x92, 0x20, 0x74, 0xbc, 0xe4, 0xaf, 0xdb, 0x8f, 0x6d, 0xfd, 0x5f, 0xbd, |
| 1226 | 0xf6, 0xf0, 0x5b, 0xa8, 0xce, 0x55, 0x02, 0xaa, 0x42, 0x69, 0x56, 0xfa, 0x2b, 0x50, 0x9e, 0xab, |
| 1227 | 0xfa, 0x0d, 0x58, 0xeb, 0x98, 0x37, 0x56, 0xdb, 0x74, 0x3a, 0x56, 0xbf, 0xdd, 0xbd, 0x31, 0x6d, |
| 1228 | 0xb3, 0x53, 0xcf, 0x9e, 0x7e, 0xfd, 0xc3, 0x97, 0xa3, 0x80, 0xdf, 0xc5, 0xc3, 0xa6, 0x47, 0xc6, |
| 1229 | 0xf2, 0x4f, 0xc3, 0x23, 0xd4, 0x3f, 0x52, 0x77, 0xfc, 0x5c, 0xff, 0x5f, 0x8c, 0xc8, 0xf2, 0xbf, |
| 1230 | 0x4c, 0x2f, 0x3b, 0x2c, 0x4a, 0xf2, 0xe4, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x90, 0x60, 0x04, |
| 1231 | 0xd3, 0xf5, 0x08, 0x00, 0x00, |
| 1232 | } |