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 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4 | package inter_container |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6 | import ( |
| 7 | fmt "fmt" |
| 8 | proto "github.com/golang/protobuf/proto" |
| 9 | any "github.com/golang/protobuf/ptypes/any" |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 10 | common "github.com/opencord/voltha-protos/v3/go/common" |
| 11 | openflow_13 "github.com/opencord/voltha-protos/v3/go/openflow_13" |
| 12 | voltha "github.com/opencord/voltha-protos/v3/go/voltha" |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 13 | math "math" |
| 14 | ) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 15 | |
| 16 | // Reference imports to suppress errors if they are not otherwise used. |
| 17 | var _ = proto.Marshal |
| 18 | var _ = fmt.Errorf |
| 19 | var _ = math.Inf |
| 20 | |
| 21 | // This is a compile-time assertion to ensure that this generated file |
| 22 | // is compatible with the proto package it is being compiled against. |
| 23 | // A compilation error at this line likely means your copy of the |
| 24 | // proto package needs to be updated. |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 25 | const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 26 | |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 27 | // ID from public import voltha_protos/common.proto |
| 28 | type ID = common.ID |
| 29 | |
| 30 | // IDs from public import voltha_protos/common.proto |
| 31 | type IDs = common.IDs |
| 32 | |
| 33 | // LogLevel from public import voltha_protos/common.proto |
| 34 | type LogLevel = common.LogLevel |
| 35 | |
Scott Baker | 99af94e | 2019-08-20 10:45:06 -0700 | [diff] [blame] | 36 | // Logging from public import voltha_protos/common.proto |
| 37 | type Logging = common.Logging |
| 38 | |
| 39 | // LoggingComponent from public import voltha_protos/common.proto |
| 40 | type LoggingComponent = common.LoggingComponent |
| 41 | |
| 42 | // Loggings from public import voltha_protos/common.proto |
| 43 | type Loggings = common.Loggings |
| 44 | |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 45 | // AdminState from public import voltha_protos/common.proto |
| 46 | type AdminState = common.AdminState |
| 47 | |
| 48 | // OperStatus from public import voltha_protos/common.proto |
| 49 | type OperStatus = common.OperStatus |
| 50 | |
| 51 | // ConnectStatus from public import voltha_protos/common.proto |
| 52 | type ConnectStatus = common.ConnectStatus |
| 53 | |
| 54 | // OperationResp from public import voltha_protos/common.proto |
| 55 | type OperationResp = common.OperationResp |
| 56 | |
| 57 | // TestModeKeys from public import voltha_protos/common.proto |
| 58 | type TestModeKeys = common.TestModeKeys |
| 59 | |
| 60 | var TestModeKeys_name = common.TestModeKeys_name |
| 61 | var TestModeKeys_value = common.TestModeKeys_value |
| 62 | |
| 63 | const TestModeKeys_api_test = TestModeKeys(common.TestModeKeys_api_test) |
| 64 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 65 | // LogLevel_Types from public import voltha_protos/common.proto |
| 66 | type LogLevel_Types = common.LogLevel_Types |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 67 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 68 | var LogLevel_Types_name = common.LogLevel_Types_name |
| 69 | var LogLevel_Types_value = common.LogLevel_Types_value |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 70 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 71 | const LogLevel_DEBUG = LogLevel_Types(common.LogLevel_DEBUG) |
| 72 | const LogLevel_INFO = LogLevel_Types(common.LogLevel_INFO) |
| 73 | const LogLevel_WARNING = LogLevel_Types(common.LogLevel_WARNING) |
| 74 | const LogLevel_ERROR = LogLevel_Types(common.LogLevel_ERROR) |
| 75 | const LogLevel_CRITICAL = LogLevel_Types(common.LogLevel_CRITICAL) |
| 76 | const LogLevel_FATAL = LogLevel_Types(common.LogLevel_FATAL) |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 77 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 78 | // AdminState_Types from public import voltha_protos/common.proto |
| 79 | type AdminState_Types = common.AdminState_Types |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 80 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 81 | var AdminState_Types_name = common.AdminState_Types_name |
| 82 | var AdminState_Types_value = common.AdminState_Types_value |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 83 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 84 | const AdminState_UNKNOWN = AdminState_Types(common.AdminState_UNKNOWN) |
| 85 | const AdminState_PREPROVISIONED = AdminState_Types(common.AdminState_PREPROVISIONED) |
| 86 | const AdminState_ENABLED = AdminState_Types(common.AdminState_ENABLED) |
| 87 | const AdminState_DISABLED = AdminState_Types(common.AdminState_DISABLED) |
| 88 | const AdminState_DOWNLOADING_IMAGE = AdminState_Types(common.AdminState_DOWNLOADING_IMAGE) |
| 89 | const AdminState_DELETED = AdminState_Types(common.AdminState_DELETED) |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 90 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 91 | // OperStatus_Types from public import voltha_protos/common.proto |
| 92 | type OperStatus_Types = common.OperStatus_Types |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 93 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 94 | var OperStatus_Types_name = common.OperStatus_Types_name |
| 95 | var OperStatus_Types_value = common.OperStatus_Types_value |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 96 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 97 | const OperStatus_UNKNOWN = OperStatus_Types(common.OperStatus_UNKNOWN) |
| 98 | const OperStatus_DISCOVERED = OperStatus_Types(common.OperStatus_DISCOVERED) |
| 99 | const OperStatus_ACTIVATING = OperStatus_Types(common.OperStatus_ACTIVATING) |
| 100 | const OperStatus_TESTING = OperStatus_Types(common.OperStatus_TESTING) |
| 101 | const OperStatus_ACTIVE = OperStatus_Types(common.OperStatus_ACTIVE) |
| 102 | const OperStatus_FAILED = OperStatus_Types(common.OperStatus_FAILED) |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 103 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 104 | // ConnectStatus_Types from public import voltha_protos/common.proto |
| 105 | type ConnectStatus_Types = common.ConnectStatus_Types |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 106 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 107 | var ConnectStatus_Types_name = common.ConnectStatus_Types_name |
| 108 | var ConnectStatus_Types_value = common.ConnectStatus_Types_value |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 109 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 110 | const ConnectStatus_UNKNOWN = ConnectStatus_Types(common.ConnectStatus_UNKNOWN) |
| 111 | const ConnectStatus_UNREACHABLE = ConnectStatus_Types(common.ConnectStatus_UNREACHABLE) |
| 112 | const ConnectStatus_REACHABLE = ConnectStatus_Types(common.ConnectStatus_REACHABLE) |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 113 | |
| 114 | // OperationResp_OperationReturnCode from public import voltha_protos/common.proto |
| 115 | type OperationResp_OperationReturnCode = common.OperationResp_OperationReturnCode |
| 116 | |
| 117 | var OperationResp_OperationReturnCode_name = common.OperationResp_OperationReturnCode_name |
| 118 | var OperationResp_OperationReturnCode_value = common.OperationResp_OperationReturnCode_value |
| 119 | |
| 120 | const OperationResp_OPERATION_SUCCESS = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_SUCCESS) |
| 121 | const OperationResp_OPERATION_FAILURE = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_FAILURE) |
| 122 | const OperationResp_OPERATION_UNSUPPORTED = OperationResp_OperationReturnCode(common.OperationResp_OPERATION_UNSUPPORTED) |
| 123 | |
| 124 | // DeviceGroup from public import voltha_protos/voltha.proto |
| 125 | type DeviceGroup = voltha.DeviceGroup |
| 126 | |
| 127 | // DeviceGroups from public import voltha_protos/voltha.proto |
| 128 | type DeviceGroups = voltha.DeviceGroups |
| 129 | |
Devmalya Paul | 96a2c9e | 2019-11-06 07:17:44 +0000 | [diff] [blame] | 130 | // EventFilterRuleKey from public import voltha_protos/voltha.proto |
| 131 | type EventFilterRuleKey = voltha.EventFilterRuleKey |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 132 | |
Devmalya Paul | 96a2c9e | 2019-11-06 07:17:44 +0000 | [diff] [blame] | 133 | // EventFilterRule from public import voltha_protos/voltha.proto |
| 134 | type EventFilterRule = voltha.EventFilterRule |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 135 | |
Devmalya Paul | 96a2c9e | 2019-11-06 07:17:44 +0000 | [diff] [blame] | 136 | // EventFilter from public import voltha_protos/voltha.proto |
| 137 | type EventFilter = voltha.EventFilter |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 138 | |
Devmalya Paul | 96a2c9e | 2019-11-06 07:17:44 +0000 | [diff] [blame] | 139 | // EventFilters from public import voltha_protos/voltha.proto |
| 140 | type EventFilters = voltha.EventFilters |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 141 | |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 142 | // CoreInstance from public import voltha_protos/voltha.proto |
| 143 | type CoreInstance = voltha.CoreInstance |
| 144 | |
| 145 | // CoreInstances from public import voltha_protos/voltha.proto |
| 146 | type CoreInstances = voltha.CoreInstances |
| 147 | |
| 148 | // Voltha from public import voltha_protos/voltha.proto |
| 149 | type Voltha = voltha.Voltha |
| 150 | |
| 151 | // SelfTestResponse from public import voltha_protos/voltha.proto |
| 152 | type SelfTestResponse = voltha.SelfTestResponse |
| 153 | |
| 154 | // OfAgentSubscriber from public import voltha_protos/voltha.proto |
| 155 | type OfAgentSubscriber = voltha.OfAgentSubscriber |
| 156 | |
| 157 | // Membership from public import voltha_protos/voltha.proto |
| 158 | type Membership = voltha.Membership |
| 159 | |
manikkaraj k | 166cb20 | 2019-07-28 13:05:56 -0400 | [diff] [blame] | 160 | // FlowMetadata from public import voltha_protos/voltha.proto |
| 161 | type FlowMetadata = voltha.FlowMetadata |
| 162 | |
Devmalya Paul | 96a2c9e | 2019-11-06 07:17:44 +0000 | [diff] [blame] | 163 | // EventFilterRuleKey_EventFilterRuleType from public import voltha_protos/voltha.proto |
| 164 | type EventFilterRuleKey_EventFilterRuleType = voltha.EventFilterRuleKey_EventFilterRuleType |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 165 | |
Devmalya Paul | 96a2c9e | 2019-11-06 07:17:44 +0000 | [diff] [blame] | 166 | var EventFilterRuleKey_EventFilterRuleType_name = voltha.EventFilterRuleKey_EventFilterRuleType_name |
| 167 | var EventFilterRuleKey_EventFilterRuleType_value = voltha.EventFilterRuleKey_EventFilterRuleType_value |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 168 | |
Devmalya Paul | 96a2c9e | 2019-11-06 07:17:44 +0000 | [diff] [blame] | 169 | const EventFilterRuleKey_filter_all = EventFilterRuleKey_EventFilterRuleType(voltha.EventFilterRuleKey_filter_all) |
| 170 | const EventFilterRuleKey_category = EventFilterRuleKey_EventFilterRuleType(voltha.EventFilterRuleKey_category) |
| 171 | const EventFilterRuleKey_sub_category = EventFilterRuleKey_EventFilterRuleType(voltha.EventFilterRuleKey_sub_category) |
| 172 | const EventFilterRuleKey_kpi_event_type = EventFilterRuleKey_EventFilterRuleType(voltha.EventFilterRuleKey_kpi_event_type) |
| 173 | const EventFilterRuleKey_config_event_type = EventFilterRuleKey_EventFilterRuleType(voltha.EventFilterRuleKey_config_event_type) |
| 174 | const EventFilterRuleKey_device_event_type = EventFilterRuleKey_EventFilterRuleType(voltha.EventFilterRuleKey_device_event_type) |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 175 | |
| 176 | // SelfTestResponse_SelfTestResult from public import voltha_protos/voltha.proto |
| 177 | type SelfTestResponse_SelfTestResult = voltha.SelfTestResponse_SelfTestResult |
| 178 | |
| 179 | var SelfTestResponse_SelfTestResult_name = voltha.SelfTestResponse_SelfTestResult_name |
| 180 | var SelfTestResponse_SelfTestResult_value = voltha.SelfTestResponse_SelfTestResult_value |
| 181 | |
| 182 | const SelfTestResponse_SUCCESS = SelfTestResponse_SelfTestResult(voltha.SelfTestResponse_SUCCESS) |
| 183 | const SelfTestResponse_FAILURE = SelfTestResponse_SelfTestResult(voltha.SelfTestResponse_FAILURE) |
| 184 | const SelfTestResponse_NOT_SUPPORTED = SelfTestResponse_SelfTestResult(voltha.SelfTestResponse_NOT_SUPPORTED) |
| 185 | const SelfTestResponse_UNKNOWN_ERROR = SelfTestResponse_SelfTestResult(voltha.SelfTestResponse_UNKNOWN_ERROR) |
| 186 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 187 | // LogicalPortId from public import voltha_protos/logical_device.proto |
| 188 | type LogicalPortId = voltha.LogicalPortId |
| 189 | |
| 190 | // LogicalPort from public import voltha_protos/logical_device.proto |
| 191 | type LogicalPort = voltha.LogicalPort |
| 192 | |
| 193 | // LogicalPorts from public import voltha_protos/logical_device.proto |
| 194 | type LogicalPorts = voltha.LogicalPorts |
| 195 | |
| 196 | // LogicalDevice from public import voltha_protos/logical_device.proto |
| 197 | type LogicalDevice = voltha.LogicalDevice |
| 198 | |
| 199 | // LogicalDevices from public import voltha_protos/logical_device.proto |
| 200 | type LogicalDevices = voltha.LogicalDevices |
| 201 | |
| 202 | type MessageType int32 |
| 203 | |
| 204 | const ( |
| 205 | MessageType_REQUEST MessageType = 0 |
| 206 | MessageType_RESPONSE MessageType = 1 |
| 207 | MessageType_DEVICE_DISCOVERED MessageType = 2 |
| 208 | ) |
| 209 | |
| 210 | var MessageType_name = map[int32]string{ |
| 211 | 0: "REQUEST", |
| 212 | 1: "RESPONSE", |
| 213 | 2: "DEVICE_DISCOVERED", |
| 214 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 215 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 216 | var MessageType_value = map[string]int32{ |
| 217 | "REQUEST": 0, |
| 218 | "RESPONSE": 1, |
| 219 | "DEVICE_DISCOVERED": 2, |
| 220 | } |
| 221 | |
| 222 | func (x MessageType) String() string { |
| 223 | return proto.EnumName(MessageType_name, int32(x)) |
| 224 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 225 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 226 | func (MessageType) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 227 | return fileDescriptor_941f0031a549667f, []int{0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | type ErrorCodeCodes int32 |
| 231 | |
| 232 | const ( |
| 233 | ErrorCode_UNSUPPORTED_REQUEST ErrorCodeCodes = 0 |
| 234 | ErrorCode_INVALID_PARAMETERS ErrorCodeCodes = 1 |
| 235 | ) |
| 236 | |
| 237 | var ErrorCodeCodes_name = map[int32]string{ |
| 238 | 0: "UNSUPPORTED_REQUEST", |
| 239 | 1: "INVALID_PARAMETERS", |
| 240 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 241 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 242 | var ErrorCodeCodes_value = map[string]int32{ |
| 243 | "UNSUPPORTED_REQUEST": 0, |
| 244 | "INVALID_PARAMETERS": 1, |
| 245 | } |
| 246 | |
| 247 | func (x ErrorCodeCodes) String() string { |
| 248 | return proto.EnumName(ErrorCodeCodes_name, int32(x)) |
| 249 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 250 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 251 | func (ErrorCodeCodes) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 252 | return fileDescriptor_941f0031a549667f, []int{4, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 253 | } |
| 254 | |
| 255 | type InterAdapterMessageType_Types int32 |
| 256 | |
| 257 | const ( |
Matt Jeanneret | 15249fa | 2019-04-12 20:25:31 -0400 | [diff] [blame] | 258 | InterAdapterMessageType_FLOW_REQUEST InterAdapterMessageType_Types = 0 |
| 259 | InterAdapterMessageType_FLOW_RESPONSE InterAdapterMessageType_Types = 1 |
| 260 | InterAdapterMessageType_OMCI_REQUEST InterAdapterMessageType_Types = 2 |
| 261 | InterAdapterMessageType_OMCI_RESPONSE InterAdapterMessageType_Types = 3 |
| 262 | InterAdapterMessageType_METRICS_REQUEST InterAdapterMessageType_Types = 4 |
| 263 | InterAdapterMessageType_METRICS_RESPONSE InterAdapterMessageType_Types = 5 |
| 264 | InterAdapterMessageType_ONU_IND_REQUEST InterAdapterMessageType_Types = 6 |
| 265 | InterAdapterMessageType_ONU_IND_RESPONSE InterAdapterMessageType_Types = 7 |
| 266 | InterAdapterMessageType_TECH_PROFILE_DOWNLOAD_REQUEST InterAdapterMessageType_Types = 8 |
Girish Gowdra | 475e63e | 2019-11-20 16:42:59 +0530 | [diff] [blame] | 267 | InterAdapterMessageType_DELETE_GEM_PORT_REQUEST InterAdapterMessageType_Types = 9 |
| 268 | InterAdapterMessageType_DELETE_TCONT_REQUEST InterAdapterMessageType_Types = 10 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 269 | ) |
| 270 | |
| 271 | var InterAdapterMessageType_Types_name = map[int32]string{ |
Girish Gowdra | 475e63e | 2019-11-20 16:42:59 +0530 | [diff] [blame] | 272 | 0: "FLOW_REQUEST", |
| 273 | 1: "FLOW_RESPONSE", |
| 274 | 2: "OMCI_REQUEST", |
| 275 | 3: "OMCI_RESPONSE", |
| 276 | 4: "METRICS_REQUEST", |
| 277 | 5: "METRICS_RESPONSE", |
| 278 | 6: "ONU_IND_REQUEST", |
| 279 | 7: "ONU_IND_RESPONSE", |
| 280 | 8: "TECH_PROFILE_DOWNLOAD_REQUEST", |
| 281 | 9: "DELETE_GEM_PORT_REQUEST", |
| 282 | 10: "DELETE_TCONT_REQUEST", |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 283 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 284 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 285 | var InterAdapterMessageType_Types_value = map[string]int32{ |
Matt Jeanneret | 15249fa | 2019-04-12 20:25:31 -0400 | [diff] [blame] | 286 | "FLOW_REQUEST": 0, |
| 287 | "FLOW_RESPONSE": 1, |
| 288 | "OMCI_REQUEST": 2, |
| 289 | "OMCI_RESPONSE": 3, |
| 290 | "METRICS_REQUEST": 4, |
| 291 | "METRICS_RESPONSE": 5, |
| 292 | "ONU_IND_REQUEST": 6, |
| 293 | "ONU_IND_RESPONSE": 7, |
| 294 | "TECH_PROFILE_DOWNLOAD_REQUEST": 8, |
Girish Gowdra | 475e63e | 2019-11-20 16:42:59 +0530 | [diff] [blame] | 295 | "DELETE_GEM_PORT_REQUEST": 9, |
| 296 | "DELETE_TCONT_REQUEST": 10, |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 297 | } |
| 298 | |
| 299 | func (x InterAdapterMessageType_Types) String() string { |
| 300 | return proto.EnumName(InterAdapterMessageType_Types_name, int32(x)) |
| 301 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 302 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 303 | func (InterAdapterMessageType_Types) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 304 | return fileDescriptor_941f0031a549667f, []int{14, 0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | type StrType struct { |
| 308 | Val string `protobuf:"bytes,1,opt,name=val,proto3" json:"val,omitempty"` |
| 309 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 310 | XXX_unrecognized []byte `json:"-"` |
| 311 | XXX_sizecache int32 `json:"-"` |
| 312 | } |
| 313 | |
| 314 | func (m *StrType) Reset() { *m = StrType{} } |
| 315 | func (m *StrType) String() string { return proto.CompactTextString(m) } |
| 316 | func (*StrType) ProtoMessage() {} |
| 317 | func (*StrType) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 318 | return fileDescriptor_941f0031a549667f, []int{0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 319 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 320 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 321 | func (m *StrType) XXX_Unmarshal(b []byte) error { |
| 322 | return xxx_messageInfo_StrType.Unmarshal(m, b) |
| 323 | } |
| 324 | func (m *StrType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 325 | return xxx_messageInfo_StrType.Marshal(b, m, deterministic) |
| 326 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 327 | func (m *StrType) XXX_Merge(src proto.Message) { |
| 328 | xxx_messageInfo_StrType.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 329 | } |
| 330 | func (m *StrType) XXX_Size() int { |
| 331 | return xxx_messageInfo_StrType.Size(m) |
| 332 | } |
| 333 | func (m *StrType) XXX_DiscardUnknown() { |
| 334 | xxx_messageInfo_StrType.DiscardUnknown(m) |
| 335 | } |
| 336 | |
| 337 | var xxx_messageInfo_StrType proto.InternalMessageInfo |
| 338 | |
| 339 | func (m *StrType) GetVal() string { |
| 340 | if m != nil { |
| 341 | return m.Val |
| 342 | } |
| 343 | return "" |
| 344 | } |
| 345 | |
| 346 | type IntType struct { |
| 347 | Val int64 `protobuf:"varint,1,opt,name=val,proto3" json:"val,omitempty"` |
| 348 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 349 | XXX_unrecognized []byte `json:"-"` |
| 350 | XXX_sizecache int32 `json:"-"` |
| 351 | } |
| 352 | |
| 353 | func (m *IntType) Reset() { *m = IntType{} } |
| 354 | func (m *IntType) String() string { return proto.CompactTextString(m) } |
| 355 | func (*IntType) ProtoMessage() {} |
| 356 | func (*IntType) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 357 | return fileDescriptor_941f0031a549667f, []int{1} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 358 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 359 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 360 | func (m *IntType) XXX_Unmarshal(b []byte) error { |
| 361 | return xxx_messageInfo_IntType.Unmarshal(m, b) |
| 362 | } |
| 363 | func (m *IntType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 364 | return xxx_messageInfo_IntType.Marshal(b, m, deterministic) |
| 365 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 366 | func (m *IntType) XXX_Merge(src proto.Message) { |
| 367 | xxx_messageInfo_IntType.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 368 | } |
| 369 | func (m *IntType) XXX_Size() int { |
| 370 | return xxx_messageInfo_IntType.Size(m) |
| 371 | } |
| 372 | func (m *IntType) XXX_DiscardUnknown() { |
| 373 | xxx_messageInfo_IntType.DiscardUnknown(m) |
| 374 | } |
| 375 | |
| 376 | var xxx_messageInfo_IntType proto.InternalMessageInfo |
| 377 | |
| 378 | func (m *IntType) GetVal() int64 { |
| 379 | if m != nil { |
| 380 | return m.Val |
| 381 | } |
| 382 | return 0 |
| 383 | } |
| 384 | |
| 385 | type BoolType struct { |
| 386 | Val bool `protobuf:"varint,1,opt,name=val,proto3" json:"val,omitempty"` |
| 387 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 388 | XXX_unrecognized []byte `json:"-"` |
| 389 | XXX_sizecache int32 `json:"-"` |
| 390 | } |
| 391 | |
| 392 | func (m *BoolType) Reset() { *m = BoolType{} } |
| 393 | func (m *BoolType) String() string { return proto.CompactTextString(m) } |
| 394 | func (*BoolType) ProtoMessage() {} |
| 395 | func (*BoolType) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 396 | return fileDescriptor_941f0031a549667f, []int{2} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 397 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 398 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 399 | func (m *BoolType) XXX_Unmarshal(b []byte) error { |
| 400 | return xxx_messageInfo_BoolType.Unmarshal(m, b) |
| 401 | } |
| 402 | func (m *BoolType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 403 | return xxx_messageInfo_BoolType.Marshal(b, m, deterministic) |
| 404 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 405 | func (m *BoolType) XXX_Merge(src proto.Message) { |
| 406 | xxx_messageInfo_BoolType.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 407 | } |
| 408 | func (m *BoolType) XXX_Size() int { |
| 409 | return xxx_messageInfo_BoolType.Size(m) |
| 410 | } |
| 411 | func (m *BoolType) XXX_DiscardUnknown() { |
| 412 | xxx_messageInfo_BoolType.DiscardUnknown(m) |
| 413 | } |
| 414 | |
| 415 | var xxx_messageInfo_BoolType proto.InternalMessageInfo |
| 416 | |
| 417 | func (m *BoolType) GetVal() bool { |
| 418 | if m != nil { |
| 419 | return m.Val |
| 420 | } |
| 421 | return false |
| 422 | } |
| 423 | |
| 424 | type Packet struct { |
| 425 | Payload []byte `protobuf:"bytes,1,opt,name=payload,proto3" json:"payload,omitempty"` |
| 426 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 427 | XXX_unrecognized []byte `json:"-"` |
| 428 | XXX_sizecache int32 `json:"-"` |
| 429 | } |
| 430 | |
| 431 | func (m *Packet) Reset() { *m = Packet{} } |
| 432 | func (m *Packet) String() string { return proto.CompactTextString(m) } |
| 433 | func (*Packet) ProtoMessage() {} |
| 434 | func (*Packet) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 435 | return fileDescriptor_941f0031a549667f, []int{3} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 436 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 437 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 438 | func (m *Packet) XXX_Unmarshal(b []byte) error { |
| 439 | return xxx_messageInfo_Packet.Unmarshal(m, b) |
| 440 | } |
| 441 | func (m *Packet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 442 | return xxx_messageInfo_Packet.Marshal(b, m, deterministic) |
| 443 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 444 | func (m *Packet) XXX_Merge(src proto.Message) { |
| 445 | xxx_messageInfo_Packet.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 446 | } |
| 447 | func (m *Packet) XXX_Size() int { |
| 448 | return xxx_messageInfo_Packet.Size(m) |
| 449 | } |
| 450 | func (m *Packet) XXX_DiscardUnknown() { |
| 451 | xxx_messageInfo_Packet.DiscardUnknown(m) |
| 452 | } |
| 453 | |
| 454 | var xxx_messageInfo_Packet proto.InternalMessageInfo |
| 455 | |
| 456 | func (m *Packet) GetPayload() []byte { |
| 457 | if m != nil { |
| 458 | return m.Payload |
| 459 | } |
| 460 | return nil |
| 461 | } |
| 462 | |
| 463 | type ErrorCode struct { |
| 464 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 465 | XXX_unrecognized []byte `json:"-"` |
| 466 | XXX_sizecache int32 `json:"-"` |
| 467 | } |
| 468 | |
| 469 | func (m *ErrorCode) Reset() { *m = ErrorCode{} } |
| 470 | func (m *ErrorCode) String() string { return proto.CompactTextString(m) } |
| 471 | func (*ErrorCode) ProtoMessage() {} |
| 472 | func (*ErrorCode) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 473 | return fileDescriptor_941f0031a549667f, []int{4} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 474 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 475 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 476 | func (m *ErrorCode) XXX_Unmarshal(b []byte) error { |
| 477 | return xxx_messageInfo_ErrorCode.Unmarshal(m, b) |
| 478 | } |
| 479 | func (m *ErrorCode) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 480 | return xxx_messageInfo_ErrorCode.Marshal(b, m, deterministic) |
| 481 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 482 | func (m *ErrorCode) XXX_Merge(src proto.Message) { |
| 483 | xxx_messageInfo_ErrorCode.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 484 | } |
| 485 | func (m *ErrorCode) XXX_Size() int { |
| 486 | return xxx_messageInfo_ErrorCode.Size(m) |
| 487 | } |
| 488 | func (m *ErrorCode) XXX_DiscardUnknown() { |
| 489 | xxx_messageInfo_ErrorCode.DiscardUnknown(m) |
| 490 | } |
| 491 | |
| 492 | var xxx_messageInfo_ErrorCode proto.InternalMessageInfo |
| 493 | |
| 494 | type Error struct { |
| 495 | Code *ErrorCode `protobuf:"bytes,1,opt,name=code,proto3" json:"code,omitempty"` |
| 496 | Reason string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"` |
| 497 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 498 | XXX_unrecognized []byte `json:"-"` |
| 499 | XXX_sizecache int32 `json:"-"` |
| 500 | } |
| 501 | |
| 502 | func (m *Error) Reset() { *m = Error{} } |
| 503 | func (m *Error) String() string { return proto.CompactTextString(m) } |
| 504 | func (*Error) ProtoMessage() {} |
| 505 | func (*Error) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 506 | return fileDescriptor_941f0031a549667f, []int{5} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 507 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 508 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 509 | func (m *Error) XXX_Unmarshal(b []byte) error { |
| 510 | return xxx_messageInfo_Error.Unmarshal(m, b) |
| 511 | } |
| 512 | func (m *Error) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 513 | return xxx_messageInfo_Error.Marshal(b, m, deterministic) |
| 514 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 515 | func (m *Error) XXX_Merge(src proto.Message) { |
| 516 | xxx_messageInfo_Error.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 517 | } |
| 518 | func (m *Error) XXX_Size() int { |
| 519 | return xxx_messageInfo_Error.Size(m) |
| 520 | } |
| 521 | func (m *Error) XXX_DiscardUnknown() { |
| 522 | xxx_messageInfo_Error.DiscardUnknown(m) |
| 523 | } |
| 524 | |
| 525 | var xxx_messageInfo_Error proto.InternalMessageInfo |
| 526 | |
| 527 | func (m *Error) GetCode() *ErrorCode { |
| 528 | if m != nil { |
| 529 | return m.Code |
| 530 | } |
| 531 | return nil |
| 532 | } |
| 533 | |
| 534 | func (m *Error) GetReason() string { |
| 535 | if m != nil { |
| 536 | return m.Reason |
| 537 | } |
| 538 | return "" |
| 539 | } |
| 540 | |
| 541 | type Header struct { |
| 542 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 543 | Type MessageType `protobuf:"varint,2,opt,name=type,proto3,enum=voltha.MessageType" json:"type,omitempty"` |
| 544 | FromTopic string `protobuf:"bytes,3,opt,name=from_topic,json=fromTopic,proto3" json:"from_topic,omitempty"` |
| 545 | ToTopic string `protobuf:"bytes,4,opt,name=to_topic,json=toTopic,proto3" json:"to_topic,omitempty"` |
| 546 | KeyTopic string `protobuf:"bytes,5,opt,name=key_topic,json=keyTopic,proto3" json:"key_topic,omitempty"` |
| 547 | Timestamp int64 `protobuf:"varint,6,opt,name=timestamp,proto3" json:"timestamp,omitempty"` |
| 548 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 549 | XXX_unrecognized []byte `json:"-"` |
| 550 | XXX_sizecache int32 `json:"-"` |
| 551 | } |
| 552 | |
| 553 | func (m *Header) Reset() { *m = Header{} } |
| 554 | func (m *Header) String() string { return proto.CompactTextString(m) } |
| 555 | func (*Header) ProtoMessage() {} |
| 556 | func (*Header) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 557 | return fileDescriptor_941f0031a549667f, []int{6} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 558 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 559 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 560 | func (m *Header) XXX_Unmarshal(b []byte) error { |
| 561 | return xxx_messageInfo_Header.Unmarshal(m, b) |
| 562 | } |
| 563 | func (m *Header) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 564 | return xxx_messageInfo_Header.Marshal(b, m, deterministic) |
| 565 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 566 | func (m *Header) XXX_Merge(src proto.Message) { |
| 567 | xxx_messageInfo_Header.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 568 | } |
| 569 | func (m *Header) XXX_Size() int { |
| 570 | return xxx_messageInfo_Header.Size(m) |
| 571 | } |
| 572 | func (m *Header) XXX_DiscardUnknown() { |
| 573 | xxx_messageInfo_Header.DiscardUnknown(m) |
| 574 | } |
| 575 | |
| 576 | var xxx_messageInfo_Header proto.InternalMessageInfo |
| 577 | |
| 578 | func (m *Header) GetId() string { |
| 579 | if m != nil { |
| 580 | return m.Id |
| 581 | } |
| 582 | return "" |
| 583 | } |
| 584 | |
| 585 | func (m *Header) GetType() MessageType { |
| 586 | if m != nil { |
| 587 | return m.Type |
| 588 | } |
| 589 | return MessageType_REQUEST |
| 590 | } |
| 591 | |
| 592 | func (m *Header) GetFromTopic() string { |
| 593 | if m != nil { |
| 594 | return m.FromTopic |
| 595 | } |
| 596 | return "" |
| 597 | } |
| 598 | |
| 599 | func (m *Header) GetToTopic() string { |
| 600 | if m != nil { |
| 601 | return m.ToTopic |
| 602 | } |
| 603 | return "" |
| 604 | } |
| 605 | |
| 606 | func (m *Header) GetKeyTopic() string { |
| 607 | if m != nil { |
| 608 | return m.KeyTopic |
| 609 | } |
| 610 | return "" |
| 611 | } |
| 612 | |
| 613 | func (m *Header) GetTimestamp() int64 { |
| 614 | if m != nil { |
| 615 | return m.Timestamp |
| 616 | } |
| 617 | return 0 |
| 618 | } |
| 619 | |
| 620 | type Argument struct { |
| 621 | Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` |
| 622 | Value *any.Any `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` |
| 623 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 624 | XXX_unrecognized []byte `json:"-"` |
| 625 | XXX_sizecache int32 `json:"-"` |
| 626 | } |
| 627 | |
| 628 | func (m *Argument) Reset() { *m = Argument{} } |
| 629 | func (m *Argument) String() string { return proto.CompactTextString(m) } |
| 630 | func (*Argument) ProtoMessage() {} |
| 631 | func (*Argument) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 632 | return fileDescriptor_941f0031a549667f, []int{7} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 633 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 634 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 635 | func (m *Argument) XXX_Unmarshal(b []byte) error { |
| 636 | return xxx_messageInfo_Argument.Unmarshal(m, b) |
| 637 | } |
| 638 | func (m *Argument) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 639 | return xxx_messageInfo_Argument.Marshal(b, m, deterministic) |
| 640 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 641 | func (m *Argument) XXX_Merge(src proto.Message) { |
| 642 | xxx_messageInfo_Argument.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 643 | } |
| 644 | func (m *Argument) XXX_Size() int { |
| 645 | return xxx_messageInfo_Argument.Size(m) |
| 646 | } |
| 647 | func (m *Argument) XXX_DiscardUnknown() { |
| 648 | xxx_messageInfo_Argument.DiscardUnknown(m) |
| 649 | } |
| 650 | |
| 651 | var xxx_messageInfo_Argument proto.InternalMessageInfo |
| 652 | |
| 653 | func (m *Argument) GetKey() string { |
| 654 | if m != nil { |
| 655 | return m.Key |
| 656 | } |
| 657 | return "" |
| 658 | } |
| 659 | |
| 660 | func (m *Argument) GetValue() *any.Any { |
| 661 | if m != nil { |
| 662 | return m.Value |
| 663 | } |
| 664 | return nil |
| 665 | } |
| 666 | |
| 667 | type InterContainerMessage struct { |
| 668 | Header *Header `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` |
| 669 | Body *any.Any `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"` |
| 670 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 671 | XXX_unrecognized []byte `json:"-"` |
| 672 | XXX_sizecache int32 `json:"-"` |
| 673 | } |
| 674 | |
| 675 | func (m *InterContainerMessage) Reset() { *m = InterContainerMessage{} } |
| 676 | func (m *InterContainerMessage) String() string { return proto.CompactTextString(m) } |
| 677 | func (*InterContainerMessage) ProtoMessage() {} |
| 678 | func (*InterContainerMessage) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 679 | return fileDescriptor_941f0031a549667f, []int{8} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 680 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 681 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 682 | func (m *InterContainerMessage) XXX_Unmarshal(b []byte) error { |
| 683 | return xxx_messageInfo_InterContainerMessage.Unmarshal(m, b) |
| 684 | } |
| 685 | func (m *InterContainerMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 686 | return xxx_messageInfo_InterContainerMessage.Marshal(b, m, deterministic) |
| 687 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 688 | func (m *InterContainerMessage) XXX_Merge(src proto.Message) { |
| 689 | xxx_messageInfo_InterContainerMessage.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 690 | } |
| 691 | func (m *InterContainerMessage) XXX_Size() int { |
| 692 | return xxx_messageInfo_InterContainerMessage.Size(m) |
| 693 | } |
| 694 | func (m *InterContainerMessage) XXX_DiscardUnknown() { |
| 695 | xxx_messageInfo_InterContainerMessage.DiscardUnknown(m) |
| 696 | } |
| 697 | |
| 698 | var xxx_messageInfo_InterContainerMessage proto.InternalMessageInfo |
| 699 | |
| 700 | func (m *InterContainerMessage) GetHeader() *Header { |
| 701 | if m != nil { |
| 702 | return m.Header |
| 703 | } |
| 704 | return nil |
| 705 | } |
| 706 | |
| 707 | func (m *InterContainerMessage) GetBody() *any.Any { |
| 708 | if m != nil { |
| 709 | return m.Body |
| 710 | } |
| 711 | return nil |
| 712 | } |
| 713 | |
| 714 | type InterContainerRequestBody struct { |
| 715 | Rpc string `protobuf:"bytes,2,opt,name=rpc,proto3" json:"rpc,omitempty"` |
| 716 | Args []*Argument `protobuf:"bytes,3,rep,name=args,proto3" json:"args,omitempty"` |
| 717 | ResponseRequired bool `protobuf:"varint,4,opt,name=response_required,json=responseRequired,proto3" json:"response_required,omitempty"` |
| 718 | ReplyToTopic string `protobuf:"bytes,5,opt,name=reply_to_topic,json=replyToTopic,proto3" json:"reply_to_topic,omitempty"` |
| 719 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 720 | XXX_unrecognized []byte `json:"-"` |
| 721 | XXX_sizecache int32 `json:"-"` |
| 722 | } |
| 723 | |
| 724 | func (m *InterContainerRequestBody) Reset() { *m = InterContainerRequestBody{} } |
| 725 | func (m *InterContainerRequestBody) String() string { return proto.CompactTextString(m) } |
| 726 | func (*InterContainerRequestBody) ProtoMessage() {} |
| 727 | func (*InterContainerRequestBody) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 728 | return fileDescriptor_941f0031a549667f, []int{9} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 729 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 730 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 731 | func (m *InterContainerRequestBody) XXX_Unmarshal(b []byte) error { |
| 732 | return xxx_messageInfo_InterContainerRequestBody.Unmarshal(m, b) |
| 733 | } |
| 734 | func (m *InterContainerRequestBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 735 | return xxx_messageInfo_InterContainerRequestBody.Marshal(b, m, deterministic) |
| 736 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 737 | func (m *InterContainerRequestBody) XXX_Merge(src proto.Message) { |
| 738 | xxx_messageInfo_InterContainerRequestBody.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 739 | } |
| 740 | func (m *InterContainerRequestBody) XXX_Size() int { |
| 741 | return xxx_messageInfo_InterContainerRequestBody.Size(m) |
| 742 | } |
| 743 | func (m *InterContainerRequestBody) XXX_DiscardUnknown() { |
| 744 | xxx_messageInfo_InterContainerRequestBody.DiscardUnknown(m) |
| 745 | } |
| 746 | |
| 747 | var xxx_messageInfo_InterContainerRequestBody proto.InternalMessageInfo |
| 748 | |
| 749 | func (m *InterContainerRequestBody) GetRpc() string { |
| 750 | if m != nil { |
| 751 | return m.Rpc |
| 752 | } |
| 753 | return "" |
| 754 | } |
| 755 | |
| 756 | func (m *InterContainerRequestBody) GetArgs() []*Argument { |
| 757 | if m != nil { |
| 758 | return m.Args |
| 759 | } |
| 760 | return nil |
| 761 | } |
| 762 | |
| 763 | func (m *InterContainerRequestBody) GetResponseRequired() bool { |
| 764 | if m != nil { |
| 765 | return m.ResponseRequired |
| 766 | } |
| 767 | return false |
| 768 | } |
| 769 | |
| 770 | func (m *InterContainerRequestBody) GetReplyToTopic() string { |
| 771 | if m != nil { |
| 772 | return m.ReplyToTopic |
| 773 | } |
| 774 | return "" |
| 775 | } |
| 776 | |
| 777 | type InterContainerResponseBody struct { |
| 778 | Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"` |
| 779 | Result *any.Any `protobuf:"bytes,3,opt,name=result,proto3" json:"result,omitempty"` |
| 780 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 781 | XXX_unrecognized []byte `json:"-"` |
| 782 | XXX_sizecache int32 `json:"-"` |
| 783 | } |
| 784 | |
| 785 | func (m *InterContainerResponseBody) Reset() { *m = InterContainerResponseBody{} } |
| 786 | func (m *InterContainerResponseBody) String() string { return proto.CompactTextString(m) } |
| 787 | func (*InterContainerResponseBody) ProtoMessage() {} |
| 788 | func (*InterContainerResponseBody) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 789 | return fileDescriptor_941f0031a549667f, []int{10} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 790 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 791 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 792 | func (m *InterContainerResponseBody) XXX_Unmarshal(b []byte) error { |
| 793 | return xxx_messageInfo_InterContainerResponseBody.Unmarshal(m, b) |
| 794 | } |
| 795 | func (m *InterContainerResponseBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 796 | return xxx_messageInfo_InterContainerResponseBody.Marshal(b, m, deterministic) |
| 797 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 798 | func (m *InterContainerResponseBody) XXX_Merge(src proto.Message) { |
| 799 | xxx_messageInfo_InterContainerResponseBody.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 800 | } |
| 801 | func (m *InterContainerResponseBody) XXX_Size() int { |
| 802 | return xxx_messageInfo_InterContainerResponseBody.Size(m) |
| 803 | } |
| 804 | func (m *InterContainerResponseBody) XXX_DiscardUnknown() { |
| 805 | xxx_messageInfo_InterContainerResponseBody.DiscardUnknown(m) |
| 806 | } |
| 807 | |
| 808 | var xxx_messageInfo_InterContainerResponseBody proto.InternalMessageInfo |
| 809 | |
| 810 | func (m *InterContainerResponseBody) GetSuccess() bool { |
| 811 | if m != nil { |
| 812 | return m.Success |
| 813 | } |
| 814 | return false |
| 815 | } |
| 816 | |
| 817 | func (m *InterContainerResponseBody) GetResult() *any.Any { |
| 818 | if m != nil { |
| 819 | return m.Result |
| 820 | } |
| 821 | return nil |
| 822 | } |
| 823 | |
| 824 | type SwitchCapability struct { |
| 825 | Desc *openflow_13.OfpDesc `protobuf:"bytes,1,opt,name=desc,proto3" json:"desc,omitempty"` |
| 826 | SwitchFeatures *openflow_13.OfpSwitchFeatures `protobuf:"bytes,2,opt,name=switch_features,json=switchFeatures,proto3" json:"switch_features,omitempty"` |
| 827 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 828 | XXX_unrecognized []byte `json:"-"` |
| 829 | XXX_sizecache int32 `json:"-"` |
| 830 | } |
| 831 | |
| 832 | func (m *SwitchCapability) Reset() { *m = SwitchCapability{} } |
| 833 | func (m *SwitchCapability) String() string { return proto.CompactTextString(m) } |
| 834 | func (*SwitchCapability) ProtoMessage() {} |
| 835 | func (*SwitchCapability) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 836 | return fileDescriptor_941f0031a549667f, []int{11} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 837 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 838 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 839 | func (m *SwitchCapability) XXX_Unmarshal(b []byte) error { |
| 840 | return xxx_messageInfo_SwitchCapability.Unmarshal(m, b) |
| 841 | } |
| 842 | func (m *SwitchCapability) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 843 | return xxx_messageInfo_SwitchCapability.Marshal(b, m, deterministic) |
| 844 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 845 | func (m *SwitchCapability) XXX_Merge(src proto.Message) { |
| 846 | xxx_messageInfo_SwitchCapability.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 847 | } |
| 848 | func (m *SwitchCapability) XXX_Size() int { |
| 849 | return xxx_messageInfo_SwitchCapability.Size(m) |
| 850 | } |
| 851 | func (m *SwitchCapability) XXX_DiscardUnknown() { |
| 852 | xxx_messageInfo_SwitchCapability.DiscardUnknown(m) |
| 853 | } |
| 854 | |
| 855 | var xxx_messageInfo_SwitchCapability proto.InternalMessageInfo |
| 856 | |
| 857 | func (m *SwitchCapability) GetDesc() *openflow_13.OfpDesc { |
| 858 | if m != nil { |
| 859 | return m.Desc |
| 860 | } |
| 861 | return nil |
| 862 | } |
| 863 | |
| 864 | func (m *SwitchCapability) GetSwitchFeatures() *openflow_13.OfpSwitchFeatures { |
| 865 | if m != nil { |
| 866 | return m.SwitchFeatures |
| 867 | } |
| 868 | return nil |
| 869 | } |
| 870 | |
| 871 | type PortCapability struct { |
| 872 | Port *voltha.LogicalPort `protobuf:"bytes,1,opt,name=port,proto3" json:"port,omitempty"` |
| 873 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 874 | XXX_unrecognized []byte `json:"-"` |
| 875 | XXX_sizecache int32 `json:"-"` |
| 876 | } |
| 877 | |
| 878 | func (m *PortCapability) Reset() { *m = PortCapability{} } |
| 879 | func (m *PortCapability) String() string { return proto.CompactTextString(m) } |
| 880 | func (*PortCapability) ProtoMessage() {} |
| 881 | func (*PortCapability) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 882 | return fileDescriptor_941f0031a549667f, []int{12} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 883 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 884 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 885 | func (m *PortCapability) XXX_Unmarshal(b []byte) error { |
| 886 | return xxx_messageInfo_PortCapability.Unmarshal(m, b) |
| 887 | } |
| 888 | func (m *PortCapability) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 889 | return xxx_messageInfo_PortCapability.Marshal(b, m, deterministic) |
| 890 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 891 | func (m *PortCapability) XXX_Merge(src proto.Message) { |
| 892 | xxx_messageInfo_PortCapability.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 893 | } |
| 894 | func (m *PortCapability) XXX_Size() int { |
| 895 | return xxx_messageInfo_PortCapability.Size(m) |
| 896 | } |
| 897 | func (m *PortCapability) XXX_DiscardUnknown() { |
| 898 | xxx_messageInfo_PortCapability.DiscardUnknown(m) |
| 899 | } |
| 900 | |
| 901 | var xxx_messageInfo_PortCapability proto.InternalMessageInfo |
| 902 | |
| 903 | func (m *PortCapability) GetPort() *voltha.LogicalPort { |
| 904 | if m != nil { |
| 905 | return m.Port |
| 906 | } |
| 907 | return nil |
| 908 | } |
| 909 | |
| 910 | type DeviceDiscovered struct { |
| 911 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 912 | ParentId string `protobuf:"bytes,2,opt,name=parent_id,json=parentId,proto3" json:"parent_id,omitempty"` |
| 913 | DeviceType string `protobuf:"bytes,3,opt,name=device_type,json=deviceType,proto3" json:"device_type,omitempty"` |
| 914 | Publisher string `protobuf:"bytes,4,opt,name=publisher,proto3" json:"publisher,omitempty"` |
| 915 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 916 | XXX_unrecognized []byte `json:"-"` |
| 917 | XXX_sizecache int32 `json:"-"` |
| 918 | } |
| 919 | |
| 920 | func (m *DeviceDiscovered) Reset() { *m = DeviceDiscovered{} } |
| 921 | func (m *DeviceDiscovered) String() string { return proto.CompactTextString(m) } |
| 922 | func (*DeviceDiscovered) ProtoMessage() {} |
| 923 | func (*DeviceDiscovered) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 924 | return fileDescriptor_941f0031a549667f, []int{13} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 925 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 926 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 927 | func (m *DeviceDiscovered) XXX_Unmarshal(b []byte) error { |
| 928 | return xxx_messageInfo_DeviceDiscovered.Unmarshal(m, b) |
| 929 | } |
| 930 | func (m *DeviceDiscovered) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 931 | return xxx_messageInfo_DeviceDiscovered.Marshal(b, m, deterministic) |
| 932 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 933 | func (m *DeviceDiscovered) XXX_Merge(src proto.Message) { |
| 934 | xxx_messageInfo_DeviceDiscovered.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 935 | } |
| 936 | func (m *DeviceDiscovered) XXX_Size() int { |
| 937 | return xxx_messageInfo_DeviceDiscovered.Size(m) |
| 938 | } |
| 939 | func (m *DeviceDiscovered) XXX_DiscardUnknown() { |
| 940 | xxx_messageInfo_DeviceDiscovered.DiscardUnknown(m) |
| 941 | } |
| 942 | |
| 943 | var xxx_messageInfo_DeviceDiscovered proto.InternalMessageInfo |
| 944 | |
| 945 | func (m *DeviceDiscovered) GetId() string { |
| 946 | if m != nil { |
| 947 | return m.Id |
| 948 | } |
| 949 | return "" |
| 950 | } |
| 951 | |
| 952 | func (m *DeviceDiscovered) GetParentId() string { |
| 953 | if m != nil { |
| 954 | return m.ParentId |
| 955 | } |
| 956 | return "" |
| 957 | } |
| 958 | |
| 959 | func (m *DeviceDiscovered) GetDeviceType() string { |
| 960 | if m != nil { |
| 961 | return m.DeviceType |
| 962 | } |
| 963 | return "" |
| 964 | } |
| 965 | |
| 966 | func (m *DeviceDiscovered) GetPublisher() string { |
| 967 | if m != nil { |
| 968 | return m.Publisher |
| 969 | } |
| 970 | return "" |
| 971 | } |
| 972 | |
| 973 | type InterAdapterMessageType struct { |
| 974 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 975 | XXX_unrecognized []byte `json:"-"` |
| 976 | XXX_sizecache int32 `json:"-"` |
| 977 | } |
| 978 | |
| 979 | func (m *InterAdapterMessageType) Reset() { *m = InterAdapterMessageType{} } |
| 980 | func (m *InterAdapterMessageType) String() string { return proto.CompactTextString(m) } |
| 981 | func (*InterAdapterMessageType) ProtoMessage() {} |
| 982 | func (*InterAdapterMessageType) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 983 | return fileDescriptor_941f0031a549667f, []int{14} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 984 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 985 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 986 | func (m *InterAdapterMessageType) XXX_Unmarshal(b []byte) error { |
| 987 | return xxx_messageInfo_InterAdapterMessageType.Unmarshal(m, b) |
| 988 | } |
| 989 | func (m *InterAdapterMessageType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 990 | return xxx_messageInfo_InterAdapterMessageType.Marshal(b, m, deterministic) |
| 991 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 992 | func (m *InterAdapterMessageType) XXX_Merge(src proto.Message) { |
| 993 | xxx_messageInfo_InterAdapterMessageType.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 994 | } |
| 995 | func (m *InterAdapterMessageType) XXX_Size() int { |
| 996 | return xxx_messageInfo_InterAdapterMessageType.Size(m) |
| 997 | } |
| 998 | func (m *InterAdapterMessageType) XXX_DiscardUnknown() { |
| 999 | xxx_messageInfo_InterAdapterMessageType.DiscardUnknown(m) |
| 1000 | } |
| 1001 | |
| 1002 | var xxx_messageInfo_InterAdapterMessageType proto.InternalMessageInfo |
| 1003 | |
| 1004 | type InterAdapterHeader struct { |
| 1005 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 1006 | Type InterAdapterMessageType_Types `protobuf:"varint,2,opt,name=type,proto3,enum=voltha.InterAdapterMessageType_Types" json:"type,omitempty"` |
| 1007 | FromTopic string `protobuf:"bytes,3,opt,name=from_topic,json=fromTopic,proto3" json:"from_topic,omitempty"` |
| 1008 | ToTopic string `protobuf:"bytes,4,opt,name=to_topic,json=toTopic,proto3" json:"to_topic,omitempty"` |
| 1009 | ToDeviceId string `protobuf:"bytes,5,opt,name=to_device_id,json=toDeviceId,proto3" json:"to_device_id,omitempty"` |
| 1010 | ProxyDeviceId string `protobuf:"bytes,6,opt,name=proxy_device_id,json=proxyDeviceId,proto3" json:"proxy_device_id,omitempty"` |
| 1011 | Timestamp int64 `protobuf:"varint,7,opt,name=timestamp,proto3" json:"timestamp,omitempty"` |
| 1012 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1013 | XXX_unrecognized []byte `json:"-"` |
| 1014 | XXX_sizecache int32 `json:"-"` |
| 1015 | } |
| 1016 | |
| 1017 | func (m *InterAdapterHeader) Reset() { *m = InterAdapterHeader{} } |
| 1018 | func (m *InterAdapterHeader) String() string { return proto.CompactTextString(m) } |
| 1019 | func (*InterAdapterHeader) ProtoMessage() {} |
| 1020 | func (*InterAdapterHeader) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1021 | return fileDescriptor_941f0031a549667f, []int{15} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1022 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1023 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1024 | func (m *InterAdapterHeader) XXX_Unmarshal(b []byte) error { |
| 1025 | return xxx_messageInfo_InterAdapterHeader.Unmarshal(m, b) |
| 1026 | } |
| 1027 | func (m *InterAdapterHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1028 | return xxx_messageInfo_InterAdapterHeader.Marshal(b, m, deterministic) |
| 1029 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1030 | func (m *InterAdapterHeader) XXX_Merge(src proto.Message) { |
| 1031 | xxx_messageInfo_InterAdapterHeader.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1032 | } |
| 1033 | func (m *InterAdapterHeader) XXX_Size() int { |
| 1034 | return xxx_messageInfo_InterAdapterHeader.Size(m) |
| 1035 | } |
| 1036 | func (m *InterAdapterHeader) XXX_DiscardUnknown() { |
| 1037 | xxx_messageInfo_InterAdapterHeader.DiscardUnknown(m) |
| 1038 | } |
| 1039 | |
| 1040 | var xxx_messageInfo_InterAdapterHeader proto.InternalMessageInfo |
| 1041 | |
| 1042 | func (m *InterAdapterHeader) GetId() string { |
| 1043 | if m != nil { |
| 1044 | return m.Id |
| 1045 | } |
| 1046 | return "" |
| 1047 | } |
| 1048 | |
| 1049 | func (m *InterAdapterHeader) GetType() InterAdapterMessageType_Types { |
| 1050 | if m != nil { |
| 1051 | return m.Type |
| 1052 | } |
| 1053 | return InterAdapterMessageType_FLOW_REQUEST |
| 1054 | } |
| 1055 | |
| 1056 | func (m *InterAdapterHeader) GetFromTopic() string { |
| 1057 | if m != nil { |
| 1058 | return m.FromTopic |
| 1059 | } |
| 1060 | return "" |
| 1061 | } |
| 1062 | |
| 1063 | func (m *InterAdapterHeader) GetToTopic() string { |
| 1064 | if m != nil { |
| 1065 | return m.ToTopic |
| 1066 | } |
| 1067 | return "" |
| 1068 | } |
| 1069 | |
| 1070 | func (m *InterAdapterHeader) GetToDeviceId() string { |
| 1071 | if m != nil { |
| 1072 | return m.ToDeviceId |
| 1073 | } |
| 1074 | return "" |
| 1075 | } |
| 1076 | |
| 1077 | func (m *InterAdapterHeader) GetProxyDeviceId() string { |
| 1078 | if m != nil { |
| 1079 | return m.ProxyDeviceId |
| 1080 | } |
| 1081 | return "" |
| 1082 | } |
| 1083 | |
| 1084 | func (m *InterAdapterHeader) GetTimestamp() int64 { |
| 1085 | if m != nil { |
| 1086 | return m.Timestamp |
| 1087 | } |
| 1088 | return 0 |
| 1089 | } |
| 1090 | |
| 1091 | type InterAdapterOmciMessage struct { |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 1092 | Message []byte `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"` |
| 1093 | ConnectStatus common.ConnectStatus_Types `protobuf:"varint,2,opt,name=connect_status,json=connectStatus,proto3,enum=common.ConnectStatus_Types" json:"connect_status,omitempty"` |
| 1094 | ProxyAddress *voltha.Device_ProxyAddress `protobuf:"bytes,3,opt,name=proxy_address,json=proxyAddress,proto3" json:"proxy_address,omitempty"` |
| 1095 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1096 | XXX_unrecognized []byte `json:"-"` |
| 1097 | XXX_sizecache int32 `json:"-"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1098 | } |
| 1099 | |
| 1100 | func (m *InterAdapterOmciMessage) Reset() { *m = InterAdapterOmciMessage{} } |
| 1101 | func (m *InterAdapterOmciMessage) String() string { return proto.CompactTextString(m) } |
| 1102 | func (*InterAdapterOmciMessage) ProtoMessage() {} |
| 1103 | func (*InterAdapterOmciMessage) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1104 | return fileDescriptor_941f0031a549667f, []int{16} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1105 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1106 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1107 | func (m *InterAdapterOmciMessage) XXX_Unmarshal(b []byte) error { |
| 1108 | return xxx_messageInfo_InterAdapterOmciMessage.Unmarshal(m, b) |
| 1109 | } |
| 1110 | func (m *InterAdapterOmciMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1111 | return xxx_messageInfo_InterAdapterOmciMessage.Marshal(b, m, deterministic) |
| 1112 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1113 | func (m *InterAdapterOmciMessage) XXX_Merge(src proto.Message) { |
| 1114 | xxx_messageInfo_InterAdapterOmciMessage.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1115 | } |
| 1116 | func (m *InterAdapterOmciMessage) XXX_Size() int { |
| 1117 | return xxx_messageInfo_InterAdapterOmciMessage.Size(m) |
| 1118 | } |
| 1119 | func (m *InterAdapterOmciMessage) XXX_DiscardUnknown() { |
| 1120 | xxx_messageInfo_InterAdapterOmciMessage.DiscardUnknown(m) |
| 1121 | } |
| 1122 | |
| 1123 | var xxx_messageInfo_InterAdapterOmciMessage proto.InternalMessageInfo |
| 1124 | |
| 1125 | func (m *InterAdapterOmciMessage) GetMessage() []byte { |
| 1126 | if m != nil { |
| 1127 | return m.Message |
| 1128 | } |
| 1129 | return nil |
| 1130 | } |
| 1131 | |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 1132 | func (m *InterAdapterOmciMessage) GetConnectStatus() common.ConnectStatus_Types { |
Mahir Gunyel | 4b0dab2 | 2019-05-16 13:56:09 -0700 | [diff] [blame] | 1133 | if m != nil { |
| 1134 | return m.ConnectStatus |
| 1135 | } |
| 1136 | return common.ConnectStatus_UNKNOWN |
| 1137 | } |
| 1138 | |
| 1139 | func (m *InterAdapterOmciMessage) GetProxyAddress() *voltha.Device_ProxyAddress { |
| 1140 | if m != nil { |
| 1141 | return m.ProxyAddress |
| 1142 | } |
| 1143 | return nil |
| 1144 | } |
| 1145 | |
Matt Jeanneret | 15249fa | 2019-04-12 20:25:31 -0400 | [diff] [blame] | 1146 | type InterAdapterTechProfileDownloadMessage struct { |
| 1147 | UniId uint32 `protobuf:"varint,1,opt,name=uni_id,json=uniId,proto3" json:"uni_id,omitempty"` |
| 1148 | Path string `protobuf:"bytes,2,opt,name=path,proto3" json:"path,omitempty"` |
| 1149 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1150 | XXX_unrecognized []byte `json:"-"` |
| 1151 | XXX_sizecache int32 `json:"-"` |
| 1152 | } |
| 1153 | |
| 1154 | func (m *InterAdapterTechProfileDownloadMessage) Reset() { |
| 1155 | *m = InterAdapterTechProfileDownloadMessage{} |
| 1156 | } |
| 1157 | func (m *InterAdapterTechProfileDownloadMessage) String() string { return proto.CompactTextString(m) } |
| 1158 | func (*InterAdapterTechProfileDownloadMessage) ProtoMessage() {} |
| 1159 | func (*InterAdapterTechProfileDownloadMessage) Descriptor() ([]byte, []int) { |
| 1160 | return fileDescriptor_941f0031a549667f, []int{17} |
| 1161 | } |
| 1162 | |
| 1163 | func (m *InterAdapterTechProfileDownloadMessage) XXX_Unmarshal(b []byte) error { |
| 1164 | return xxx_messageInfo_InterAdapterTechProfileDownloadMessage.Unmarshal(m, b) |
| 1165 | } |
| 1166 | func (m *InterAdapterTechProfileDownloadMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1167 | return xxx_messageInfo_InterAdapterTechProfileDownloadMessage.Marshal(b, m, deterministic) |
| 1168 | } |
| 1169 | func (m *InterAdapterTechProfileDownloadMessage) XXX_Merge(src proto.Message) { |
| 1170 | xxx_messageInfo_InterAdapterTechProfileDownloadMessage.Merge(m, src) |
| 1171 | } |
| 1172 | func (m *InterAdapterTechProfileDownloadMessage) XXX_Size() int { |
| 1173 | return xxx_messageInfo_InterAdapterTechProfileDownloadMessage.Size(m) |
| 1174 | } |
| 1175 | func (m *InterAdapterTechProfileDownloadMessage) XXX_DiscardUnknown() { |
| 1176 | xxx_messageInfo_InterAdapterTechProfileDownloadMessage.DiscardUnknown(m) |
| 1177 | } |
| 1178 | |
| 1179 | var xxx_messageInfo_InterAdapterTechProfileDownloadMessage proto.InternalMessageInfo |
| 1180 | |
| 1181 | func (m *InterAdapterTechProfileDownloadMessage) GetUniId() uint32 { |
| 1182 | if m != nil { |
| 1183 | return m.UniId |
| 1184 | } |
| 1185 | return 0 |
| 1186 | } |
| 1187 | |
| 1188 | func (m *InterAdapterTechProfileDownloadMessage) GetPath() string { |
| 1189 | if m != nil { |
| 1190 | return m.Path |
| 1191 | } |
| 1192 | return "" |
| 1193 | } |
| 1194 | |
Girish Gowdra | 475e63e | 2019-11-20 16:42:59 +0530 | [diff] [blame] | 1195 | type InterAdapterDeleteGemPortMessage struct { |
| 1196 | UniId uint32 `protobuf:"varint,1,opt,name=uni_id,json=uniId,proto3" json:"uni_id,omitempty"` |
| 1197 | TpPath string `protobuf:"bytes,2,opt,name=tp_path,json=tpPath,proto3" json:"tp_path,omitempty"` |
| 1198 | GemPortId uint32 `protobuf:"varint,3,opt,name=gem_port_id,json=gemPortId,proto3" json:"gem_port_id,omitempty"` |
| 1199 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1200 | XXX_unrecognized []byte `json:"-"` |
| 1201 | XXX_sizecache int32 `json:"-"` |
| 1202 | } |
| 1203 | |
| 1204 | func (m *InterAdapterDeleteGemPortMessage) Reset() { *m = InterAdapterDeleteGemPortMessage{} } |
| 1205 | func (m *InterAdapterDeleteGemPortMessage) String() string { return proto.CompactTextString(m) } |
| 1206 | func (*InterAdapterDeleteGemPortMessage) ProtoMessage() {} |
| 1207 | func (*InterAdapterDeleteGemPortMessage) Descriptor() ([]byte, []int) { |
| 1208 | return fileDescriptor_941f0031a549667f, []int{18} |
| 1209 | } |
| 1210 | |
| 1211 | func (m *InterAdapterDeleteGemPortMessage) XXX_Unmarshal(b []byte) error { |
| 1212 | return xxx_messageInfo_InterAdapterDeleteGemPortMessage.Unmarshal(m, b) |
| 1213 | } |
| 1214 | func (m *InterAdapterDeleteGemPortMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1215 | return xxx_messageInfo_InterAdapterDeleteGemPortMessage.Marshal(b, m, deterministic) |
| 1216 | } |
| 1217 | func (m *InterAdapterDeleteGemPortMessage) XXX_Merge(src proto.Message) { |
| 1218 | xxx_messageInfo_InterAdapterDeleteGemPortMessage.Merge(m, src) |
| 1219 | } |
| 1220 | func (m *InterAdapterDeleteGemPortMessage) XXX_Size() int { |
| 1221 | return xxx_messageInfo_InterAdapterDeleteGemPortMessage.Size(m) |
| 1222 | } |
| 1223 | func (m *InterAdapterDeleteGemPortMessage) XXX_DiscardUnknown() { |
| 1224 | xxx_messageInfo_InterAdapterDeleteGemPortMessage.DiscardUnknown(m) |
| 1225 | } |
| 1226 | |
| 1227 | var xxx_messageInfo_InterAdapterDeleteGemPortMessage proto.InternalMessageInfo |
| 1228 | |
| 1229 | func (m *InterAdapterDeleteGemPortMessage) GetUniId() uint32 { |
| 1230 | if m != nil { |
| 1231 | return m.UniId |
| 1232 | } |
| 1233 | return 0 |
| 1234 | } |
| 1235 | |
| 1236 | func (m *InterAdapterDeleteGemPortMessage) GetTpPath() string { |
| 1237 | if m != nil { |
| 1238 | return m.TpPath |
| 1239 | } |
| 1240 | return "" |
| 1241 | } |
| 1242 | |
| 1243 | func (m *InterAdapterDeleteGemPortMessage) GetGemPortId() uint32 { |
| 1244 | if m != nil { |
| 1245 | return m.GemPortId |
| 1246 | } |
| 1247 | return 0 |
| 1248 | } |
| 1249 | |
| 1250 | type InterAdapterDeleteTcontMessage struct { |
| 1251 | UniId uint32 `protobuf:"varint,1,opt,name=uni_id,json=uniId,proto3" json:"uni_id,omitempty"` |
| 1252 | TpPath string `protobuf:"bytes,2,opt,name=tp_path,json=tpPath,proto3" json:"tp_path,omitempty"` |
| 1253 | AllocId uint32 `protobuf:"varint,3,opt,name=alloc_id,json=allocId,proto3" json:"alloc_id,omitempty"` |
| 1254 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1255 | XXX_unrecognized []byte `json:"-"` |
| 1256 | XXX_sizecache int32 `json:"-"` |
| 1257 | } |
| 1258 | |
| 1259 | func (m *InterAdapterDeleteTcontMessage) Reset() { *m = InterAdapterDeleteTcontMessage{} } |
| 1260 | func (m *InterAdapterDeleteTcontMessage) String() string { return proto.CompactTextString(m) } |
| 1261 | func (*InterAdapterDeleteTcontMessage) ProtoMessage() {} |
| 1262 | func (*InterAdapterDeleteTcontMessage) Descriptor() ([]byte, []int) { |
| 1263 | return fileDescriptor_941f0031a549667f, []int{19} |
| 1264 | } |
| 1265 | |
| 1266 | func (m *InterAdapterDeleteTcontMessage) XXX_Unmarshal(b []byte) error { |
| 1267 | return xxx_messageInfo_InterAdapterDeleteTcontMessage.Unmarshal(m, b) |
| 1268 | } |
| 1269 | func (m *InterAdapterDeleteTcontMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1270 | return xxx_messageInfo_InterAdapterDeleteTcontMessage.Marshal(b, m, deterministic) |
| 1271 | } |
| 1272 | func (m *InterAdapterDeleteTcontMessage) XXX_Merge(src proto.Message) { |
| 1273 | xxx_messageInfo_InterAdapterDeleteTcontMessage.Merge(m, src) |
| 1274 | } |
| 1275 | func (m *InterAdapterDeleteTcontMessage) XXX_Size() int { |
| 1276 | return xxx_messageInfo_InterAdapterDeleteTcontMessage.Size(m) |
| 1277 | } |
| 1278 | func (m *InterAdapterDeleteTcontMessage) XXX_DiscardUnknown() { |
| 1279 | xxx_messageInfo_InterAdapterDeleteTcontMessage.DiscardUnknown(m) |
| 1280 | } |
| 1281 | |
| 1282 | var xxx_messageInfo_InterAdapterDeleteTcontMessage proto.InternalMessageInfo |
| 1283 | |
| 1284 | func (m *InterAdapterDeleteTcontMessage) GetUniId() uint32 { |
| 1285 | if m != nil { |
| 1286 | return m.UniId |
| 1287 | } |
| 1288 | return 0 |
| 1289 | } |
| 1290 | |
| 1291 | func (m *InterAdapterDeleteTcontMessage) GetTpPath() string { |
| 1292 | if m != nil { |
| 1293 | return m.TpPath |
| 1294 | } |
| 1295 | return "" |
| 1296 | } |
| 1297 | |
| 1298 | func (m *InterAdapterDeleteTcontMessage) GetAllocId() uint32 { |
| 1299 | if m != nil { |
| 1300 | return m.AllocId |
| 1301 | } |
| 1302 | return 0 |
| 1303 | } |
| 1304 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1305 | type InterAdapterResponseBody struct { |
| 1306 | Status bool `protobuf:"varint,1,opt,name=status,proto3" json:"status,omitempty"` |
| 1307 | // Types that are valid to be assigned to Payload: |
| 1308 | // *InterAdapterResponseBody_Body |
| 1309 | // *InterAdapterResponseBody_Omci |
| 1310 | Payload isInterAdapterResponseBody_Payload `protobuf_oneof:"payload"` |
| 1311 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1312 | XXX_unrecognized []byte `json:"-"` |
| 1313 | XXX_sizecache int32 `json:"-"` |
| 1314 | } |
| 1315 | |
| 1316 | func (m *InterAdapterResponseBody) Reset() { *m = InterAdapterResponseBody{} } |
| 1317 | func (m *InterAdapterResponseBody) String() string { return proto.CompactTextString(m) } |
| 1318 | func (*InterAdapterResponseBody) ProtoMessage() {} |
| 1319 | func (*InterAdapterResponseBody) Descriptor() ([]byte, []int) { |
Girish Gowdra | 475e63e | 2019-11-20 16:42:59 +0530 | [diff] [blame] | 1320 | return fileDescriptor_941f0031a549667f, []int{20} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1321 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1322 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1323 | func (m *InterAdapterResponseBody) XXX_Unmarshal(b []byte) error { |
| 1324 | return xxx_messageInfo_InterAdapterResponseBody.Unmarshal(m, b) |
| 1325 | } |
| 1326 | func (m *InterAdapterResponseBody) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1327 | return xxx_messageInfo_InterAdapterResponseBody.Marshal(b, m, deterministic) |
| 1328 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1329 | func (m *InterAdapterResponseBody) XXX_Merge(src proto.Message) { |
| 1330 | xxx_messageInfo_InterAdapterResponseBody.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1331 | } |
| 1332 | func (m *InterAdapterResponseBody) XXX_Size() int { |
| 1333 | return xxx_messageInfo_InterAdapterResponseBody.Size(m) |
| 1334 | } |
| 1335 | func (m *InterAdapterResponseBody) XXX_DiscardUnknown() { |
| 1336 | xxx_messageInfo_InterAdapterResponseBody.DiscardUnknown(m) |
| 1337 | } |
| 1338 | |
| 1339 | var xxx_messageInfo_InterAdapterResponseBody proto.InternalMessageInfo |
| 1340 | |
| 1341 | func (m *InterAdapterResponseBody) GetStatus() bool { |
| 1342 | if m != nil { |
| 1343 | return m.Status |
| 1344 | } |
| 1345 | return false |
| 1346 | } |
| 1347 | |
| 1348 | type isInterAdapterResponseBody_Payload interface { |
| 1349 | isInterAdapterResponseBody_Payload() |
| 1350 | } |
| 1351 | |
| 1352 | type InterAdapterResponseBody_Body struct { |
| 1353 | Body *any.Any `protobuf:"bytes,2,opt,name=body,proto3,oneof"` |
| 1354 | } |
| 1355 | |
| 1356 | type InterAdapterResponseBody_Omci struct { |
| 1357 | Omci *InterAdapterOmciMessage `protobuf:"bytes,3,opt,name=omci,proto3,oneof"` |
| 1358 | } |
| 1359 | |
| 1360 | func (*InterAdapterResponseBody_Body) isInterAdapterResponseBody_Payload() {} |
| 1361 | |
| 1362 | func (*InterAdapterResponseBody_Omci) isInterAdapterResponseBody_Payload() {} |
| 1363 | |
| 1364 | func (m *InterAdapterResponseBody) GetPayload() isInterAdapterResponseBody_Payload { |
| 1365 | if m != nil { |
| 1366 | return m.Payload |
| 1367 | } |
| 1368 | return nil |
| 1369 | } |
| 1370 | |
| 1371 | func (m *InterAdapterResponseBody) GetBody() *any.Any { |
| 1372 | if x, ok := m.GetPayload().(*InterAdapterResponseBody_Body); ok { |
| 1373 | return x.Body |
| 1374 | } |
| 1375 | return nil |
| 1376 | } |
| 1377 | |
| 1378 | func (m *InterAdapterResponseBody) GetOmci() *InterAdapterOmciMessage { |
| 1379 | if x, ok := m.GetPayload().(*InterAdapterResponseBody_Omci); ok { |
| 1380 | return x.Omci |
| 1381 | } |
| 1382 | return nil |
| 1383 | } |
| 1384 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1385 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 1386 | func (*InterAdapterResponseBody) XXX_OneofWrappers() []interface{} { |
| 1387 | return []interface{}{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1388 | (*InterAdapterResponseBody_Body)(nil), |
| 1389 | (*InterAdapterResponseBody_Omci)(nil), |
| 1390 | } |
| 1391 | } |
| 1392 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1393 | type InterAdapterMessage struct { |
| 1394 | Header *InterAdapterHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"` |
| 1395 | Body *any.Any `protobuf:"bytes,2,opt,name=body,proto3" json:"body,omitempty"` |
| 1396 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 1397 | XXX_unrecognized []byte `json:"-"` |
| 1398 | XXX_sizecache int32 `json:"-"` |
| 1399 | } |
| 1400 | |
| 1401 | func (m *InterAdapterMessage) Reset() { *m = InterAdapterMessage{} } |
| 1402 | func (m *InterAdapterMessage) String() string { return proto.CompactTextString(m) } |
| 1403 | func (*InterAdapterMessage) ProtoMessage() {} |
| 1404 | func (*InterAdapterMessage) Descriptor() ([]byte, []int) { |
Girish Gowdra | 475e63e | 2019-11-20 16:42:59 +0530 | [diff] [blame] | 1405 | return fileDescriptor_941f0031a549667f, []int{21} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1406 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1407 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1408 | func (m *InterAdapterMessage) XXX_Unmarshal(b []byte) error { |
| 1409 | return xxx_messageInfo_InterAdapterMessage.Unmarshal(m, b) |
| 1410 | } |
| 1411 | func (m *InterAdapterMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 1412 | return xxx_messageInfo_InterAdapterMessage.Marshal(b, m, deterministic) |
| 1413 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1414 | func (m *InterAdapterMessage) XXX_Merge(src proto.Message) { |
| 1415 | xxx_messageInfo_InterAdapterMessage.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1416 | } |
| 1417 | func (m *InterAdapterMessage) XXX_Size() int { |
| 1418 | return xxx_messageInfo_InterAdapterMessage.Size(m) |
| 1419 | } |
| 1420 | func (m *InterAdapterMessage) XXX_DiscardUnknown() { |
| 1421 | xxx_messageInfo_InterAdapterMessage.DiscardUnknown(m) |
| 1422 | } |
| 1423 | |
| 1424 | var xxx_messageInfo_InterAdapterMessage proto.InternalMessageInfo |
| 1425 | |
| 1426 | func (m *InterAdapterMessage) GetHeader() *InterAdapterHeader { |
| 1427 | if m != nil { |
| 1428 | return m.Header |
| 1429 | } |
| 1430 | return nil |
| 1431 | } |
| 1432 | |
| 1433 | func (m *InterAdapterMessage) GetBody() *any.Any { |
| 1434 | if m != nil { |
| 1435 | return m.Body |
| 1436 | } |
| 1437 | return nil |
| 1438 | } |
| 1439 | |
| 1440 | func init() { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1441 | proto.RegisterEnum("voltha.MessageType", MessageType_name, MessageType_value) |
| 1442 | proto.RegisterEnum("voltha.ErrorCodeCodes", ErrorCodeCodes_name, ErrorCodeCodes_value) |
| 1443 | proto.RegisterEnum("voltha.InterAdapterMessageType_Types", InterAdapterMessageType_Types_name, InterAdapterMessageType_Types_value) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1444 | proto.RegisterType((*StrType)(nil), "voltha.StrType") |
| 1445 | proto.RegisterType((*IntType)(nil), "voltha.IntType") |
| 1446 | proto.RegisterType((*BoolType)(nil), "voltha.BoolType") |
| 1447 | proto.RegisterType((*Packet)(nil), "voltha.Packet") |
| 1448 | proto.RegisterType((*ErrorCode)(nil), "voltha.ErrorCode") |
| 1449 | proto.RegisterType((*Error)(nil), "voltha.Error") |
| 1450 | proto.RegisterType((*Header)(nil), "voltha.Header") |
| 1451 | proto.RegisterType((*Argument)(nil), "voltha.Argument") |
| 1452 | proto.RegisterType((*InterContainerMessage)(nil), "voltha.InterContainerMessage") |
| 1453 | proto.RegisterType((*InterContainerRequestBody)(nil), "voltha.InterContainerRequestBody") |
| 1454 | proto.RegisterType((*InterContainerResponseBody)(nil), "voltha.InterContainerResponseBody") |
| 1455 | proto.RegisterType((*SwitchCapability)(nil), "voltha.SwitchCapability") |
| 1456 | proto.RegisterType((*PortCapability)(nil), "voltha.PortCapability") |
| 1457 | proto.RegisterType((*DeviceDiscovered)(nil), "voltha.DeviceDiscovered") |
| 1458 | proto.RegisterType((*InterAdapterMessageType)(nil), "voltha.InterAdapterMessageType") |
| 1459 | proto.RegisterType((*InterAdapterHeader)(nil), "voltha.InterAdapterHeader") |
| 1460 | proto.RegisterType((*InterAdapterOmciMessage)(nil), "voltha.InterAdapterOmciMessage") |
Matt Jeanneret | 15249fa | 2019-04-12 20:25:31 -0400 | [diff] [blame] | 1461 | proto.RegisterType((*InterAdapterTechProfileDownloadMessage)(nil), "voltha.InterAdapterTechProfileDownloadMessage") |
Girish Gowdra | 475e63e | 2019-11-20 16:42:59 +0530 | [diff] [blame] | 1462 | proto.RegisterType((*InterAdapterDeleteGemPortMessage)(nil), "voltha.InterAdapterDeleteGemPortMessage") |
| 1463 | proto.RegisterType((*InterAdapterDeleteTcontMessage)(nil), "voltha.InterAdapterDeleteTcontMessage") |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1464 | proto.RegisterType((*InterAdapterResponseBody)(nil), "voltha.InterAdapterResponseBody") |
| 1465 | proto.RegisterType((*InterAdapterMessage)(nil), "voltha.InterAdapterMessage") |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | func init() { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1469 | proto.RegisterFile("voltha_protos/inter_container.proto", fileDescriptor_941f0031a549667f) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1470 | } |
| 1471 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1472 | var fileDescriptor_941f0031a549667f = []byte{ |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 1473 | // 1311 bytes of a gzipped FileDescriptorProto |
| 1474 | 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xcb, 0x6e, 0xdb, 0x46, |
| 1475 | 0x14, 0x8d, 0xde, 0xd2, 0x95, 0xad, 0xc8, 0xe3, 0x38, 0x96, 0xed, 0x3c, 0x5c, 0x36, 0xaf, 0xa6, |
| 1476 | 0xad, 0x8c, 0x3a, 0x28, 0xda, 0xac, 0x5a, 0x59, 0xa2, 0x63, 0x02, 0xb6, 0xa4, 0x52, 0x72, 0x02, |
| 1477 | 0x74, 0x43, 0xd0, 0xe4, 0x58, 0x22, 0x4c, 0x71, 0x98, 0xe1, 0xd0, 0x29, 0x37, 0x05, 0xba, 0xeb, |
| 1478 | 0x4f, 0x14, 0xe8, 0xaa, 0x9f, 0x50, 0xa0, 0x7f, 0x57, 0xcc, 0x83, 0x12, 0xa5, 0xc4, 0x0d, 0x90, |
| 1479 | 0xee, 0x38, 0xf7, 0x9c, 0x79, 0x9d, 0x7b, 0xef, 0x19, 0xc2, 0xe7, 0xd7, 0xc4, 0x67, 0x53, 0xdb, |
| 1480 | 0x0a, 0x29, 0x61, 0x24, 0x3a, 0xf0, 0x02, 0x86, 0xa9, 0xe5, 0x90, 0x80, 0xd9, 0x5e, 0x80, 0x69, |
| 1481 | 0x5b, 0x84, 0x51, 0x59, 0x92, 0x76, 0x77, 0x97, 0xc9, 0x0e, 0x99, 0xcd, 0x48, 0x20, 0x39, 0xab, |
| 1482 | 0x98, 0x1c, 0x29, 0x6c, 0x67, 0x42, 0xc8, 0xc4, 0xc7, 0x07, 0x62, 0x74, 0x11, 0x5f, 0x1e, 0xd8, |
| 1483 | 0x41, 0xa2, 0xa0, 0x87, 0xcb, 0xd3, 0x48, 0x88, 0x83, 0x4b, 0x9f, 0xbc, 0xb3, 0xbe, 0x79, 0xa1, |
| 1484 | 0x08, 0xda, 0x32, 0xc1, 0x27, 0x13, 0xcf, 0xb1, 0x7d, 0xcb, 0xc5, 0xd7, 0x9e, 0x83, 0x25, 0x47, |
| 1485 | 0xdb, 0x83, 0xca, 0x88, 0xd1, 0x71, 0x12, 0x62, 0xd4, 0x84, 0xc2, 0xb5, 0xed, 0xb7, 0x72, 0xfb, |
| 1486 | 0xb9, 0x67, 0x35, 0x93, 0x7f, 0x72, 0xd0, 0x08, 0xd8, 0x2a, 0x58, 0x90, 0xe0, 0x3d, 0xa8, 0x1e, |
| 1487 | 0x11, 0xe2, 0xaf, 0xa2, 0x55, 0x89, 0x6a, 0x50, 0x1e, 0xda, 0xce, 0x15, 0x66, 0xa8, 0x05, 0x95, |
| 1488 | 0xd0, 0x4e, 0x7c, 0x62, 0xbb, 0x02, 0x5f, 0x33, 0xd3, 0xa1, 0xa6, 0x43, 0x4d, 0xa7, 0x94, 0xd0, |
| 1489 | 0x2e, 0x71, 0xb1, 0xf6, 0x3d, 0x94, 0x1c, 0xe2, 0xe2, 0x08, 0x6d, 0xc3, 0xe6, 0x79, 0x7f, 0x74, |
| 1490 | 0x3e, 0x1c, 0x0e, 0xcc, 0xb1, 0xde, 0xb3, 0x4c, 0xfd, 0xa7, 0x73, 0x7d, 0x34, 0x6e, 0xde, 0x42, |
| 1491 | 0x77, 0x01, 0x19, 0xfd, 0xd7, 0x9d, 0x53, 0xa3, 0x67, 0x0d, 0x3b, 0x66, 0xe7, 0x4c, 0x1f, 0xeb, |
| 1492 | 0xe6, 0xa8, 0x99, 0xd3, 0x8e, 0xa1, 0x24, 0x96, 0x41, 0x8f, 0xa1, 0xc8, 0x97, 0x10, 0xdb, 0xd4, |
| 1493 | 0x0f, 0x37, 0xda, 0x4a, 0xc8, 0xf9, 0x1e, 0xa6, 0x80, 0xd1, 0x5d, 0x28, 0x53, 0x6c, 0x47, 0x24, |
| 1494 | 0x68, 0xe5, 0xc5, 0x55, 0xd5, 0x48, 0xfb, 0x3b, 0x07, 0xe5, 0x13, 0x6c, 0xbb, 0x98, 0xa2, 0x06, |
| 1495 | 0xe4, 0x3d, 0x57, 0x29, 0x91, 0xf7, 0x5c, 0xf4, 0x14, 0x8a, 0x2c, 0x09, 0xb1, 0x98, 0xd0, 0x38, |
| 1496 | 0xdc, 0x4c, 0x57, 0x3e, 0xc3, 0x51, 0x64, 0x4f, 0x30, 0x97, 0xc0, 0x14, 0x04, 0x74, 0x1f, 0xe0, |
| 1497 | 0x92, 0x92, 0x99, 0xc5, 0x48, 0xe8, 0x39, 0xad, 0x82, 0x58, 0xa0, 0xc6, 0x23, 0x63, 0x1e, 0x40, |
| 1498 | 0x3b, 0x50, 0x65, 0x44, 0x81, 0x45, 0x01, 0x56, 0x18, 0x91, 0xd0, 0x1e, 0xd4, 0xae, 0x70, 0xa2, |
| 1499 | 0xb0, 0x92, 0xc0, 0xaa, 0x57, 0x38, 0x91, 0xe0, 0x3d, 0xa8, 0x31, 0x6f, 0x86, 0x23, 0x66, 0xcf, |
| 1500 | 0xc2, 0x56, 0x59, 0xe4, 0x60, 0x11, 0xd0, 0x4e, 0xa0, 0xda, 0xa1, 0x93, 0x78, 0x86, 0x03, 0xc6, |
| 1501 | 0x33, 0x71, 0x85, 0x93, 0x34, 0x89, 0x57, 0x38, 0x41, 0xcf, 0xa1, 0x74, 0x6d, 0xfb, 0xb1, 0x3c, |
| 1502 | 0x7c, 0xfd, 0xf0, 0x4e, 0x5b, 0x56, 0x54, 0x3b, 0xad, 0xa8, 0x76, 0x27, 0x48, 0x4c, 0x49, 0xd1, |
| 1503 | 0x3c, 0xd8, 0x32, 0x78, 0x19, 0x77, 0xd3, 0x2a, 0x56, 0x37, 0x44, 0x4f, 0xa0, 0x3c, 0x15, 0xd2, |
| 1504 | 0x28, 0x71, 0x1b, 0xa9, 0x04, 0x52, 0x30, 0x53, 0xa1, 0xe8, 0x19, 0x14, 0x2f, 0x88, 0x9b, 0xfc, |
| 1505 | 0xe7, 0x5e, 0x82, 0xa1, 0xfd, 0x95, 0x83, 0x9d, 0xe5, 0xbd, 0x4c, 0xfc, 0x36, 0xc6, 0x11, 0x3b, |
| 1506 | 0x22, 0x6e, 0xc2, 0xaf, 0x41, 0x43, 0x47, 0x25, 0x88, 0x7f, 0xa2, 0x47, 0x50, 0xb4, 0xe9, 0x24, |
| 1507 | 0x6a, 0x15, 0xf6, 0x0b, 0xcf, 0xea, 0x87, 0xcd, 0x74, 0xff, 0xf4, 0xe2, 0xa6, 0x40, 0xd1, 0x97, |
| 1508 | 0xb0, 0x41, 0x71, 0x14, 0x92, 0x20, 0xc2, 0x16, 0xc5, 0x6f, 0x63, 0x8f, 0x62, 0x57, 0x28, 0x5d, |
| 1509 | 0x35, 0x9b, 0x29, 0x60, 0xaa, 0x38, 0x7a, 0x04, 0x0d, 0x8a, 0x43, 0x9f, 0x8b, 0xbe, 0xa4, 0xfb, |
| 1510 | 0x9a, 0x88, 0x8e, 0x65, 0x62, 0x34, 0x17, 0x76, 0x57, 0xcf, 0x29, 0xd7, 0x11, 0x07, 0x6d, 0x41, |
| 1511 | 0x25, 0x8a, 0x1d, 0x07, 0x47, 0x91, 0xaa, 0xfe, 0x74, 0x88, 0xbe, 0xe2, 0x65, 0x16, 0xc5, 0x3e, |
| 1512 | 0x13, 0x65, 0x70, 0x93, 0x18, 0x8a, 0xa3, 0xfd, 0x9e, 0x83, 0xe6, 0xe8, 0x9d, 0xc7, 0x9c, 0x69, |
| 1513 | 0xd7, 0x0e, 0xed, 0x0b, 0xcf, 0xf7, 0x58, 0x82, 0xbe, 0x80, 0xa2, 0x8b, 0x23, 0x47, 0x69, 0xbe, |
| 1514 | 0xd5, 0xce, 0xb6, 0x38, 0xb9, 0x0c, 0x2d, 0x0e, 0x9a, 0x82, 0x82, 0x0c, 0xb8, 0x1d, 0x89, 0xe9, |
| 1515 | 0xd6, 0x25, 0xb6, 0x59, 0x4c, 0x71, 0xa4, 0x72, 0xb0, 0xff, 0xde, 0xac, 0x15, 0x9e, 0xd9, 0x90, |
| 1516 | 0x81, 0x63, 0x35, 0xd6, 0x5e, 0x42, 0x63, 0x48, 0x28, 0xcb, 0x9c, 0xe3, 0x29, 0x14, 0x43, 0x42, |
| 1517 | 0x99, 0x3a, 0xc7, 0xbc, 0xfc, 0x4f, 0xa5, 0xa1, 0x70, 0xb2, 0x29, 0x08, 0xda, 0xaf, 0xd0, 0xec, |
| 1518 | 0x09, 0x77, 0xe9, 0x79, 0x91, 0x43, 0xae, 0x31, 0x57, 0x79, 0xb5, 0x97, 0xf6, 0xa0, 0x16, 0xda, |
| 1519 | 0x14, 0x07, 0xcc, 0xf2, 0x5c, 0x95, 0xe0, 0xaa, 0x0c, 0x18, 0x2e, 0x7a, 0x08, 0x75, 0x69, 0x4f, |
| 1520 | 0x96, 0xe8, 0x37, 0xd9, 0x40, 0x20, 0x43, 0xc2, 0x69, 0xee, 0x41, 0x2d, 0x8c, 0x2f, 0x7c, 0x2f, |
| 1521 | 0x9a, 0x62, 0xaa, 0x5a, 0x68, 0x11, 0xd0, 0xfe, 0xc8, 0xc3, 0xb6, 0x48, 0x56, 0xc7, 0xb5, 0x43, |
| 1522 | 0x36, 0x2f, 0x5f, 0x3e, 0x53, 0xfb, 0x2d, 0x0f, 0x25, 0xfe, 0x11, 0xa1, 0x26, 0xac, 0x1d, 0x9f, |
| 1523 | 0x0e, 0xde, 0x64, 0xac, 0x65, 0x03, 0xd6, 0x55, 0x64, 0x34, 0x1c, 0xf4, 0x47, 0x7a, 0x33, 0xc7, |
| 1524 | 0x49, 0x83, 0xb3, 0xae, 0x31, 0x27, 0xe5, 0x39, 0x49, 0x45, 0x14, 0xa9, 0x80, 0x36, 0xe1, 0xf6, |
| 1525 | 0x99, 0x3e, 0x36, 0x8d, 0xee, 0x68, 0xce, 0x2b, 0xa2, 0x3b, 0xd0, 0x5c, 0x04, 0x15, 0xb5, 0xc4, |
| 1526 | 0xa9, 0x83, 0xfe, 0xb9, 0x65, 0xf4, 0x17, 0x96, 0x56, 0xe6, 0xd4, 0x45, 0x50, 0x51, 0x2b, 0xe8, |
| 1527 | 0x33, 0xb8, 0x3f, 0xd6, 0xbb, 0x27, 0xd6, 0xd0, 0x1c, 0x1c, 0x1b, 0xa7, 0xba, 0xd5, 0x1b, 0xbc, |
| 1528 | 0xe9, 0x9f, 0x0e, 0x3a, 0x8b, 0x89, 0x55, 0xb4, 0x07, 0xdb, 0x3d, 0xfd, 0x54, 0x1f, 0xeb, 0xd6, |
| 1529 | 0x2b, 0xfd, 0xcc, 0xe2, 0x56, 0x39, 0x07, 0x6b, 0xa8, 0x05, 0x77, 0x14, 0x38, 0xee, 0x0e, 0xfa, |
| 1530 | 0x0b, 0x04, 0xb8, 0x06, 0x28, 0xab, 0xcf, 0x0d, 0x76, 0xf7, 0x72, 0xc9, 0xee, 0x1e, 0xa7, 0xf9, |
| 1531 | 0xbe, 0x41, 0xd9, 0xb6, 0x50, 0xf5, 0x7f, 0x1b, 0xe0, 0x3e, 0xac, 0x31, 0xa2, 0x1e, 0x27, 0x5e, |
| 1532 | 0x1a, 0xb2, 0x17, 0x81, 0x11, 0x59, 0x51, 0x86, 0x8b, 0x9e, 0xc0, 0xed, 0x90, 0x92, 0x5f, 0x92, |
| 1533 | 0x0c, 0xa9, 0x2c, 0x48, 0xeb, 0x22, 0x3c, 0xe7, 0x2d, 0xb9, 0x65, 0x65, 0xd5, 0x2d, 0xff, 0xc9, |
| 1534 | 0x2d, 0xd7, 0xc8, 0x60, 0xe6, 0x78, 0xa9, 0xcd, 0xb5, 0xa0, 0x32, 0x93, 0x9f, 0xe9, 0x5b, 0xa5, |
| 1535 | 0x86, 0xe8, 0x08, 0x1a, 0x0e, 0x09, 0x02, 0xec, 0x30, 0x2b, 0x62, 0x36, 0x8b, 0x23, 0x25, 0xce, |
| 1536 | 0x5e, 0x5b, 0x3d, 0xe5, 0x5d, 0x89, 0x8e, 0x04, 0xa8, 0x24, 0x59, 0x77, 0xb2, 0x41, 0xf4, 0x23, |
| 1537 | 0xc8, 0x83, 0x5a, 0xb6, 0xeb, 0x52, 0xee, 0x18, 0xd2, 0x18, 0xf6, 0x52, 0x7d, 0xe5, 0x05, 0xda, |
| 1538 | 0x43, 0xce, 0xe9, 0x48, 0x8a, 0xb9, 0x16, 0x66, 0x46, 0xda, 0x08, 0x9e, 0x64, 0x8f, 0x3e, 0xc6, |
| 1539 | 0xce, 0x74, 0x48, 0xc9, 0xa5, 0xe7, 0xe3, 0x1e, 0x79, 0x17, 0xf0, 0x47, 0x35, 0xbd, 0xc9, 0x16, |
| 1540 | 0x94, 0xe3, 0xc0, 0xb3, 0x54, 0x5a, 0xd7, 0xcd, 0x52, 0x1c, 0x78, 0x86, 0x8b, 0x10, 0x14, 0x43, |
| 1541 | 0x9b, 0x4d, 0x55, 0xdf, 0x89, 0x6f, 0x8d, 0xc2, 0x7e, 0x76, 0xd1, 0x1e, 0xf6, 0x31, 0xc3, 0xaf, |
| 1542 | 0xf0, 0x8c, 0xf7, 0xf5, 0x47, 0x96, 0xdb, 0x86, 0x0a, 0x0b, 0xad, 0xcc, 0x8a, 0x65, 0x16, 0x0e, |
| 1543 | 0x6d, 0x36, 0x45, 0x0f, 0xa0, 0x3e, 0xc1, 0x33, 0x8b, 0x9b, 0x02, 0x9f, 0x54, 0x10, 0x93, 0x6a, |
| 1544 | 0x13, 0xb9, 0xa8, 0xe1, 0x6a, 0x57, 0xf0, 0xe0, 0xfd, 0x3d, 0xc7, 0xfc, 0xe7, 0xe9, 0x53, 0x77, |
| 1545 | 0xdc, 0x81, 0xaa, 0xed, 0xfb, 0xc4, 0x59, 0x6c, 0x57, 0x11, 0x63, 0xc3, 0xd5, 0xfe, 0xcc, 0x41, |
| 1546 | 0x2b, 0xbb, 0xdb, 0x92, 0x81, 0xdf, 0x85, 0xb2, 0x4a, 0xa8, 0xf4, 0x6f, 0x35, 0x42, 0xcf, 0x3f, |
| 1547 | 0xfe, 0x92, 0x9d, 0xdc, 0x92, 0x6f, 0x19, 0xfa, 0x16, 0x8a, 0x64, 0xe6, 0x78, 0x2a, 0x9f, 0x0f, |
| 1548 | 0x3f, 0xd4, 0x2f, 0x99, 0x2a, 0xe3, 0xd3, 0x38, 0xfd, 0xa8, 0x36, 0xff, 0x33, 0xd2, 0x22, 0xd8, |
| 1549 | 0xfc, 0x40, 0x77, 0xa1, 0xc3, 0x95, 0x67, 0x77, 0xf7, 0x43, 0x4b, 0x7f, 0xea, 0x13, 0xfc, 0xfc, |
| 1550 | 0x07, 0xa8, 0x67, 0xda, 0x18, 0xd5, 0xa1, 0xb2, 0x70, 0xc4, 0x35, 0xa8, 0x66, 0xcc, 0x70, 0x0b, |
| 1551 | 0x36, 0x7a, 0xfa, 0x6b, 0xa3, 0xab, 0x5b, 0x3d, 0x63, 0xd4, 0x1d, 0xbc, 0xd6, 0x4d, 0xbd, 0xd7, |
| 1552 | 0xcc, 0x1f, 0xf5, 0x61, 0x93, 0xd0, 0x89, 0x78, 0x60, 0x1c, 0x42, 0x5d, 0x75, 0xb8, 0x9f, 0xbf, |
| 1553 | 0x9b, 0x78, 0x6c, 0x1a, 0x5f, 0xf0, 0xce, 0x38, 0x48, 0x31, 0xf5, 0x57, 0xfb, 0x75, 0xfa, 0x8f, |
| 1554 | 0xfb, 0xe2, 0x60, 0x42, 0x56, 0x7f, 0x99, 0x87, 0xb7, 0x86, 0xb9, 0x61, 0xf1, 0xa2, 0x2c, 0x38, |
| 1555 | 0x2f, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x52, 0x46, 0x45, 0x14, 0x60, 0x0b, 0x00, 0x00, |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1556 | } |