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/openflow_13.proto |
| 3 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4 | package openflow_13 |
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" |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 9 | _ "google.golang.org/genproto/googleapis/api/annotations" |
| 10 | math "math" |
| 11 | ) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 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. |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 22 | const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 23 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 24 | // Port numbering. Ports are numbered starting from 1. |
| 25 | type OfpPortNo int32 |
| 26 | |
| 27 | const ( |
| 28 | OfpPortNo_OFPP_INVALID OfpPortNo = 0 |
| 29 | // Maximum number of physical and logical switch ports. |
| 30 | OfpPortNo_OFPP_MAX OfpPortNo = 2147483392 |
| 31 | // Reserved OpenFlow Port (fake output "ports"). |
| 32 | OfpPortNo_OFPP_IN_PORT OfpPortNo = 2147483640 |
| 33 | OfpPortNo_OFPP_TABLE OfpPortNo = 2147483641 |
| 34 | OfpPortNo_OFPP_NORMAL OfpPortNo = 2147483642 |
| 35 | OfpPortNo_OFPP_FLOOD OfpPortNo = 2147483643 |
| 36 | OfpPortNo_OFPP_ALL OfpPortNo = 2147483644 |
| 37 | OfpPortNo_OFPP_CONTROLLER OfpPortNo = 2147483645 |
| 38 | OfpPortNo_OFPP_LOCAL OfpPortNo = 2147483646 |
| 39 | OfpPortNo_OFPP_ANY OfpPortNo = 2147483647 |
| 40 | ) |
| 41 | |
| 42 | var OfpPortNo_name = map[int32]string{ |
| 43 | 0: "OFPP_INVALID", |
| 44 | 2147483392: "OFPP_MAX", |
| 45 | 2147483640: "OFPP_IN_PORT", |
| 46 | 2147483641: "OFPP_TABLE", |
| 47 | 2147483642: "OFPP_NORMAL", |
| 48 | 2147483643: "OFPP_FLOOD", |
| 49 | 2147483644: "OFPP_ALL", |
| 50 | 2147483645: "OFPP_CONTROLLER", |
| 51 | 2147483646: "OFPP_LOCAL", |
| 52 | 2147483647: "OFPP_ANY", |
| 53 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 54 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 55 | var OfpPortNo_value = map[string]int32{ |
| 56 | "OFPP_INVALID": 0, |
| 57 | "OFPP_MAX": 2147483392, |
| 58 | "OFPP_IN_PORT": 2147483640, |
| 59 | "OFPP_TABLE": 2147483641, |
| 60 | "OFPP_NORMAL": 2147483642, |
| 61 | "OFPP_FLOOD": 2147483643, |
| 62 | "OFPP_ALL": 2147483644, |
| 63 | "OFPP_CONTROLLER": 2147483645, |
| 64 | "OFPP_LOCAL": 2147483646, |
| 65 | "OFPP_ANY": 2147483647, |
| 66 | } |
| 67 | |
| 68 | func (x OfpPortNo) String() string { |
| 69 | return proto.EnumName(OfpPortNo_name, int32(x)) |
| 70 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 71 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 72 | func (OfpPortNo) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 73 | return fileDescriptor_08e3a4e375aeddc7, []int{0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | type OfpType int32 |
| 77 | |
| 78 | const ( |
| 79 | // Immutable messages. |
| 80 | OfpType_OFPT_HELLO OfpType = 0 |
| 81 | OfpType_OFPT_ERROR OfpType = 1 |
| 82 | OfpType_OFPT_ECHO_REQUEST OfpType = 2 |
| 83 | OfpType_OFPT_ECHO_REPLY OfpType = 3 |
| 84 | OfpType_OFPT_EXPERIMENTER OfpType = 4 |
| 85 | // Switch configuration messages. |
| 86 | OfpType_OFPT_FEATURES_REQUEST OfpType = 5 |
| 87 | OfpType_OFPT_FEATURES_REPLY OfpType = 6 |
| 88 | OfpType_OFPT_GET_CONFIG_REQUEST OfpType = 7 |
| 89 | OfpType_OFPT_GET_CONFIG_REPLY OfpType = 8 |
| 90 | OfpType_OFPT_SET_CONFIG OfpType = 9 |
| 91 | // Asynchronous messages. |
| 92 | OfpType_OFPT_PACKET_IN OfpType = 10 |
| 93 | OfpType_OFPT_FLOW_REMOVED OfpType = 11 |
| 94 | OfpType_OFPT_PORT_STATUS OfpType = 12 |
| 95 | // Controller command messages. |
| 96 | OfpType_OFPT_PACKET_OUT OfpType = 13 |
| 97 | OfpType_OFPT_FLOW_MOD OfpType = 14 |
| 98 | OfpType_OFPT_GROUP_MOD OfpType = 15 |
| 99 | OfpType_OFPT_PORT_MOD OfpType = 16 |
| 100 | OfpType_OFPT_TABLE_MOD OfpType = 17 |
| 101 | // Multipart messages. |
| 102 | OfpType_OFPT_MULTIPART_REQUEST OfpType = 18 |
| 103 | OfpType_OFPT_MULTIPART_REPLY OfpType = 19 |
| 104 | // Barrier messages. |
| 105 | OfpType_OFPT_BARRIER_REQUEST OfpType = 20 |
| 106 | OfpType_OFPT_BARRIER_REPLY OfpType = 21 |
| 107 | // Queue Configuration messages. |
| 108 | OfpType_OFPT_QUEUE_GET_CONFIG_REQUEST OfpType = 22 |
| 109 | OfpType_OFPT_QUEUE_GET_CONFIG_REPLY OfpType = 23 |
| 110 | // Controller role change request messages. |
| 111 | OfpType_OFPT_ROLE_REQUEST OfpType = 24 |
| 112 | OfpType_OFPT_ROLE_REPLY OfpType = 25 |
| 113 | // Asynchronous message configuration. |
| 114 | OfpType_OFPT_GET_ASYNC_REQUEST OfpType = 26 |
| 115 | OfpType_OFPT_GET_ASYNC_REPLY OfpType = 27 |
| 116 | OfpType_OFPT_SET_ASYNC OfpType = 28 |
| 117 | // Meters and rate limiters configuration messages. |
| 118 | OfpType_OFPT_METER_MOD OfpType = 29 |
| 119 | ) |
| 120 | |
| 121 | var OfpType_name = map[int32]string{ |
| 122 | 0: "OFPT_HELLO", |
| 123 | 1: "OFPT_ERROR", |
| 124 | 2: "OFPT_ECHO_REQUEST", |
| 125 | 3: "OFPT_ECHO_REPLY", |
| 126 | 4: "OFPT_EXPERIMENTER", |
| 127 | 5: "OFPT_FEATURES_REQUEST", |
| 128 | 6: "OFPT_FEATURES_REPLY", |
| 129 | 7: "OFPT_GET_CONFIG_REQUEST", |
| 130 | 8: "OFPT_GET_CONFIG_REPLY", |
| 131 | 9: "OFPT_SET_CONFIG", |
| 132 | 10: "OFPT_PACKET_IN", |
| 133 | 11: "OFPT_FLOW_REMOVED", |
| 134 | 12: "OFPT_PORT_STATUS", |
| 135 | 13: "OFPT_PACKET_OUT", |
| 136 | 14: "OFPT_FLOW_MOD", |
| 137 | 15: "OFPT_GROUP_MOD", |
| 138 | 16: "OFPT_PORT_MOD", |
| 139 | 17: "OFPT_TABLE_MOD", |
| 140 | 18: "OFPT_MULTIPART_REQUEST", |
| 141 | 19: "OFPT_MULTIPART_REPLY", |
| 142 | 20: "OFPT_BARRIER_REQUEST", |
| 143 | 21: "OFPT_BARRIER_REPLY", |
| 144 | 22: "OFPT_QUEUE_GET_CONFIG_REQUEST", |
| 145 | 23: "OFPT_QUEUE_GET_CONFIG_REPLY", |
| 146 | 24: "OFPT_ROLE_REQUEST", |
| 147 | 25: "OFPT_ROLE_REPLY", |
| 148 | 26: "OFPT_GET_ASYNC_REQUEST", |
| 149 | 27: "OFPT_GET_ASYNC_REPLY", |
| 150 | 28: "OFPT_SET_ASYNC", |
| 151 | 29: "OFPT_METER_MOD", |
| 152 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 153 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 154 | var OfpType_value = map[string]int32{ |
| 155 | "OFPT_HELLO": 0, |
| 156 | "OFPT_ERROR": 1, |
| 157 | "OFPT_ECHO_REQUEST": 2, |
| 158 | "OFPT_ECHO_REPLY": 3, |
| 159 | "OFPT_EXPERIMENTER": 4, |
| 160 | "OFPT_FEATURES_REQUEST": 5, |
| 161 | "OFPT_FEATURES_REPLY": 6, |
| 162 | "OFPT_GET_CONFIG_REQUEST": 7, |
| 163 | "OFPT_GET_CONFIG_REPLY": 8, |
| 164 | "OFPT_SET_CONFIG": 9, |
| 165 | "OFPT_PACKET_IN": 10, |
| 166 | "OFPT_FLOW_REMOVED": 11, |
| 167 | "OFPT_PORT_STATUS": 12, |
| 168 | "OFPT_PACKET_OUT": 13, |
| 169 | "OFPT_FLOW_MOD": 14, |
| 170 | "OFPT_GROUP_MOD": 15, |
| 171 | "OFPT_PORT_MOD": 16, |
| 172 | "OFPT_TABLE_MOD": 17, |
| 173 | "OFPT_MULTIPART_REQUEST": 18, |
| 174 | "OFPT_MULTIPART_REPLY": 19, |
| 175 | "OFPT_BARRIER_REQUEST": 20, |
| 176 | "OFPT_BARRIER_REPLY": 21, |
| 177 | "OFPT_QUEUE_GET_CONFIG_REQUEST": 22, |
| 178 | "OFPT_QUEUE_GET_CONFIG_REPLY": 23, |
| 179 | "OFPT_ROLE_REQUEST": 24, |
| 180 | "OFPT_ROLE_REPLY": 25, |
| 181 | "OFPT_GET_ASYNC_REQUEST": 26, |
| 182 | "OFPT_GET_ASYNC_REPLY": 27, |
| 183 | "OFPT_SET_ASYNC": 28, |
| 184 | "OFPT_METER_MOD": 29, |
| 185 | } |
| 186 | |
| 187 | func (x OfpType) String() string { |
| 188 | return proto.EnumName(OfpType_name, int32(x)) |
| 189 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 190 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 191 | func (OfpType) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 192 | return fileDescriptor_08e3a4e375aeddc7, []int{1} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | // Hello elements types. |
| 196 | type OfpHelloElemType int32 |
| 197 | |
| 198 | const ( |
| 199 | OfpHelloElemType_OFPHET_INVALID OfpHelloElemType = 0 |
| 200 | OfpHelloElemType_OFPHET_VERSIONBITMAP OfpHelloElemType = 1 |
| 201 | ) |
| 202 | |
| 203 | var OfpHelloElemType_name = map[int32]string{ |
| 204 | 0: "OFPHET_INVALID", |
| 205 | 1: "OFPHET_VERSIONBITMAP", |
| 206 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 207 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 208 | var OfpHelloElemType_value = map[string]int32{ |
| 209 | "OFPHET_INVALID": 0, |
| 210 | "OFPHET_VERSIONBITMAP": 1, |
| 211 | } |
| 212 | |
| 213 | func (x OfpHelloElemType) String() string { |
| 214 | return proto.EnumName(OfpHelloElemType_name, int32(x)) |
| 215 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 216 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 217 | func (OfpHelloElemType) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 218 | return fileDescriptor_08e3a4e375aeddc7, []int{2} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 219 | } |
| 220 | |
| 221 | type OfpConfigFlags int32 |
| 222 | |
| 223 | const ( |
| 224 | // Handling of IP fragments. |
| 225 | OfpConfigFlags_OFPC_FRAG_NORMAL OfpConfigFlags = 0 |
| 226 | OfpConfigFlags_OFPC_FRAG_DROP OfpConfigFlags = 1 |
| 227 | OfpConfigFlags_OFPC_FRAG_REASM OfpConfigFlags = 2 |
| 228 | OfpConfigFlags_OFPC_FRAG_MASK OfpConfigFlags = 3 |
| 229 | ) |
| 230 | |
| 231 | var OfpConfigFlags_name = map[int32]string{ |
| 232 | 0: "OFPC_FRAG_NORMAL", |
| 233 | 1: "OFPC_FRAG_DROP", |
| 234 | 2: "OFPC_FRAG_REASM", |
| 235 | 3: "OFPC_FRAG_MASK", |
| 236 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 237 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 238 | var OfpConfigFlags_value = map[string]int32{ |
| 239 | "OFPC_FRAG_NORMAL": 0, |
| 240 | "OFPC_FRAG_DROP": 1, |
| 241 | "OFPC_FRAG_REASM": 2, |
| 242 | "OFPC_FRAG_MASK": 3, |
| 243 | } |
| 244 | |
| 245 | func (x OfpConfigFlags) String() string { |
| 246 | return proto.EnumName(OfpConfigFlags_name, int32(x)) |
| 247 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 248 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 249 | func (OfpConfigFlags) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 250 | return fileDescriptor_08e3a4e375aeddc7, []int{3} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | // Flags to configure the table. Reserved for future use. |
| 254 | type OfpTableConfig int32 |
| 255 | |
| 256 | const ( |
| 257 | OfpTableConfig_OFPTC_INVALID OfpTableConfig = 0 |
| 258 | OfpTableConfig_OFPTC_DEPRECATED_MASK OfpTableConfig = 3 |
| 259 | ) |
| 260 | |
| 261 | var OfpTableConfig_name = map[int32]string{ |
| 262 | 0: "OFPTC_INVALID", |
| 263 | 3: "OFPTC_DEPRECATED_MASK", |
| 264 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 265 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 266 | var OfpTableConfig_value = map[string]int32{ |
| 267 | "OFPTC_INVALID": 0, |
| 268 | "OFPTC_DEPRECATED_MASK": 3, |
| 269 | } |
| 270 | |
| 271 | func (x OfpTableConfig) String() string { |
| 272 | return proto.EnumName(OfpTableConfig_name, int32(x)) |
| 273 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 274 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 275 | func (OfpTableConfig) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 276 | return fileDescriptor_08e3a4e375aeddc7, []int{4} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | // Table numbering. Tables can use any number up to OFPT_MAX. |
| 280 | type OfpTable int32 |
| 281 | |
| 282 | const ( |
| 283 | OfpTable_OFPTT_INVALID OfpTable = 0 |
| 284 | // Last usable table number. |
| 285 | OfpTable_OFPTT_MAX OfpTable = 254 |
| 286 | // Fake tables. |
| 287 | OfpTable_OFPTT_ALL OfpTable = 255 |
| 288 | ) |
| 289 | |
| 290 | var OfpTable_name = map[int32]string{ |
| 291 | 0: "OFPTT_INVALID", |
| 292 | 254: "OFPTT_MAX", |
| 293 | 255: "OFPTT_ALL", |
| 294 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 295 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 296 | var OfpTable_value = map[string]int32{ |
| 297 | "OFPTT_INVALID": 0, |
| 298 | "OFPTT_MAX": 254, |
| 299 | "OFPTT_ALL": 255, |
| 300 | } |
| 301 | |
| 302 | func (x OfpTable) String() string { |
| 303 | return proto.EnumName(OfpTable_name, int32(x)) |
| 304 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 305 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 306 | func (OfpTable) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 307 | return fileDescriptor_08e3a4e375aeddc7, []int{5} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 308 | } |
| 309 | |
| 310 | // Capabilities supported by the datapath. |
| 311 | type OfpCapabilities int32 |
| 312 | |
| 313 | const ( |
| 314 | OfpCapabilities_OFPC_INVALID OfpCapabilities = 0 |
| 315 | OfpCapabilities_OFPC_FLOW_STATS OfpCapabilities = 1 |
| 316 | OfpCapabilities_OFPC_TABLE_STATS OfpCapabilities = 2 |
| 317 | OfpCapabilities_OFPC_PORT_STATS OfpCapabilities = 4 |
| 318 | OfpCapabilities_OFPC_GROUP_STATS OfpCapabilities = 8 |
| 319 | OfpCapabilities_OFPC_IP_REASM OfpCapabilities = 32 |
| 320 | OfpCapabilities_OFPC_QUEUE_STATS OfpCapabilities = 64 |
| 321 | OfpCapabilities_OFPC_PORT_BLOCKED OfpCapabilities = 256 |
| 322 | ) |
| 323 | |
| 324 | var OfpCapabilities_name = map[int32]string{ |
| 325 | 0: "OFPC_INVALID", |
| 326 | 1: "OFPC_FLOW_STATS", |
| 327 | 2: "OFPC_TABLE_STATS", |
| 328 | 4: "OFPC_PORT_STATS", |
| 329 | 8: "OFPC_GROUP_STATS", |
| 330 | 32: "OFPC_IP_REASM", |
| 331 | 64: "OFPC_QUEUE_STATS", |
| 332 | 256: "OFPC_PORT_BLOCKED", |
| 333 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 334 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 335 | var OfpCapabilities_value = map[string]int32{ |
| 336 | "OFPC_INVALID": 0, |
| 337 | "OFPC_FLOW_STATS": 1, |
| 338 | "OFPC_TABLE_STATS": 2, |
| 339 | "OFPC_PORT_STATS": 4, |
| 340 | "OFPC_GROUP_STATS": 8, |
| 341 | "OFPC_IP_REASM": 32, |
| 342 | "OFPC_QUEUE_STATS": 64, |
| 343 | "OFPC_PORT_BLOCKED": 256, |
| 344 | } |
| 345 | |
| 346 | func (x OfpCapabilities) String() string { |
| 347 | return proto.EnumName(OfpCapabilities_name, int32(x)) |
| 348 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 349 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 350 | func (OfpCapabilities) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 351 | return fileDescriptor_08e3a4e375aeddc7, []int{6} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | // Flags to indicate behavior of the physical port. These flags are |
| 355 | // used in ofp_port to describe the current configuration. They are |
| 356 | // used in the ofp_port_mod message to configure the port's behavior. |
| 357 | type OfpPortConfig int32 |
| 358 | |
| 359 | const ( |
| 360 | OfpPortConfig_OFPPC_INVALID OfpPortConfig = 0 |
| 361 | OfpPortConfig_OFPPC_PORT_DOWN OfpPortConfig = 1 |
| 362 | OfpPortConfig_OFPPC_NO_RECV OfpPortConfig = 4 |
| 363 | OfpPortConfig_OFPPC_NO_FWD OfpPortConfig = 32 |
| 364 | OfpPortConfig_OFPPC_NO_PACKET_IN OfpPortConfig = 64 |
| 365 | ) |
| 366 | |
| 367 | var OfpPortConfig_name = map[int32]string{ |
| 368 | 0: "OFPPC_INVALID", |
| 369 | 1: "OFPPC_PORT_DOWN", |
| 370 | 4: "OFPPC_NO_RECV", |
| 371 | 32: "OFPPC_NO_FWD", |
| 372 | 64: "OFPPC_NO_PACKET_IN", |
| 373 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 374 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 375 | var OfpPortConfig_value = map[string]int32{ |
| 376 | "OFPPC_INVALID": 0, |
| 377 | "OFPPC_PORT_DOWN": 1, |
| 378 | "OFPPC_NO_RECV": 4, |
| 379 | "OFPPC_NO_FWD": 32, |
| 380 | "OFPPC_NO_PACKET_IN": 64, |
| 381 | } |
| 382 | |
| 383 | func (x OfpPortConfig) String() string { |
| 384 | return proto.EnumName(OfpPortConfig_name, int32(x)) |
| 385 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 386 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 387 | func (OfpPortConfig) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 388 | return fileDescriptor_08e3a4e375aeddc7, []int{7} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 389 | } |
| 390 | |
| 391 | // Current state of the physical port. These are not configurable from |
| 392 | // the controller. |
| 393 | type OfpPortState int32 |
| 394 | |
| 395 | const ( |
| 396 | OfpPortState_OFPPS_INVALID OfpPortState = 0 |
| 397 | OfpPortState_OFPPS_LINK_DOWN OfpPortState = 1 |
| 398 | OfpPortState_OFPPS_BLOCKED OfpPortState = 2 |
| 399 | OfpPortState_OFPPS_LIVE OfpPortState = 4 |
| 400 | ) |
| 401 | |
| 402 | var OfpPortState_name = map[int32]string{ |
| 403 | 0: "OFPPS_INVALID", |
| 404 | 1: "OFPPS_LINK_DOWN", |
| 405 | 2: "OFPPS_BLOCKED", |
| 406 | 4: "OFPPS_LIVE", |
| 407 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 408 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 409 | var OfpPortState_value = map[string]int32{ |
| 410 | "OFPPS_INVALID": 0, |
| 411 | "OFPPS_LINK_DOWN": 1, |
| 412 | "OFPPS_BLOCKED": 2, |
| 413 | "OFPPS_LIVE": 4, |
| 414 | } |
| 415 | |
| 416 | func (x OfpPortState) String() string { |
| 417 | return proto.EnumName(OfpPortState_name, int32(x)) |
| 418 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 419 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 420 | func (OfpPortState) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 421 | return fileDescriptor_08e3a4e375aeddc7, []int{8} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 422 | } |
| 423 | |
| 424 | // Features of ports available in a datapath. |
| 425 | type OfpPortFeatures int32 |
| 426 | |
| 427 | const ( |
| 428 | OfpPortFeatures_OFPPF_INVALID OfpPortFeatures = 0 |
| 429 | OfpPortFeatures_OFPPF_10MB_HD OfpPortFeatures = 1 |
| 430 | OfpPortFeatures_OFPPF_10MB_FD OfpPortFeatures = 2 |
| 431 | OfpPortFeatures_OFPPF_100MB_HD OfpPortFeatures = 4 |
| 432 | OfpPortFeatures_OFPPF_100MB_FD OfpPortFeatures = 8 |
| 433 | OfpPortFeatures_OFPPF_1GB_HD OfpPortFeatures = 16 |
| 434 | OfpPortFeatures_OFPPF_1GB_FD OfpPortFeatures = 32 |
| 435 | OfpPortFeatures_OFPPF_10GB_FD OfpPortFeatures = 64 |
| 436 | OfpPortFeatures_OFPPF_40GB_FD OfpPortFeatures = 128 |
| 437 | OfpPortFeatures_OFPPF_100GB_FD OfpPortFeatures = 256 |
| 438 | OfpPortFeatures_OFPPF_1TB_FD OfpPortFeatures = 512 |
| 439 | OfpPortFeatures_OFPPF_OTHER OfpPortFeatures = 1024 |
| 440 | OfpPortFeatures_OFPPF_COPPER OfpPortFeatures = 2048 |
| 441 | OfpPortFeatures_OFPPF_FIBER OfpPortFeatures = 4096 |
| 442 | OfpPortFeatures_OFPPF_AUTONEG OfpPortFeatures = 8192 |
| 443 | OfpPortFeatures_OFPPF_PAUSE OfpPortFeatures = 16384 |
| 444 | OfpPortFeatures_OFPPF_PAUSE_ASYM OfpPortFeatures = 32768 |
| 445 | ) |
| 446 | |
| 447 | var OfpPortFeatures_name = map[int32]string{ |
| 448 | 0: "OFPPF_INVALID", |
| 449 | 1: "OFPPF_10MB_HD", |
| 450 | 2: "OFPPF_10MB_FD", |
| 451 | 4: "OFPPF_100MB_HD", |
| 452 | 8: "OFPPF_100MB_FD", |
| 453 | 16: "OFPPF_1GB_HD", |
| 454 | 32: "OFPPF_1GB_FD", |
| 455 | 64: "OFPPF_10GB_FD", |
| 456 | 128: "OFPPF_40GB_FD", |
| 457 | 256: "OFPPF_100GB_FD", |
| 458 | 512: "OFPPF_1TB_FD", |
| 459 | 1024: "OFPPF_OTHER", |
| 460 | 2048: "OFPPF_COPPER", |
| 461 | 4096: "OFPPF_FIBER", |
| 462 | 8192: "OFPPF_AUTONEG", |
| 463 | 16384: "OFPPF_PAUSE", |
| 464 | 32768: "OFPPF_PAUSE_ASYM", |
| 465 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 466 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 467 | var OfpPortFeatures_value = map[string]int32{ |
| 468 | "OFPPF_INVALID": 0, |
| 469 | "OFPPF_10MB_HD": 1, |
| 470 | "OFPPF_10MB_FD": 2, |
| 471 | "OFPPF_100MB_HD": 4, |
| 472 | "OFPPF_100MB_FD": 8, |
| 473 | "OFPPF_1GB_HD": 16, |
| 474 | "OFPPF_1GB_FD": 32, |
| 475 | "OFPPF_10GB_FD": 64, |
| 476 | "OFPPF_40GB_FD": 128, |
| 477 | "OFPPF_100GB_FD": 256, |
| 478 | "OFPPF_1TB_FD": 512, |
| 479 | "OFPPF_OTHER": 1024, |
| 480 | "OFPPF_COPPER": 2048, |
| 481 | "OFPPF_FIBER": 4096, |
| 482 | "OFPPF_AUTONEG": 8192, |
| 483 | "OFPPF_PAUSE": 16384, |
| 484 | "OFPPF_PAUSE_ASYM": 32768, |
| 485 | } |
| 486 | |
| 487 | func (x OfpPortFeatures) String() string { |
| 488 | return proto.EnumName(OfpPortFeatures_name, int32(x)) |
| 489 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 490 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 491 | func (OfpPortFeatures) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 492 | return fileDescriptor_08e3a4e375aeddc7, []int{9} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 493 | } |
| 494 | |
| 495 | // What changed about the physical port |
| 496 | type OfpPortReason int32 |
| 497 | |
| 498 | const ( |
| 499 | OfpPortReason_OFPPR_ADD OfpPortReason = 0 |
| 500 | OfpPortReason_OFPPR_DELETE OfpPortReason = 1 |
| 501 | OfpPortReason_OFPPR_MODIFY OfpPortReason = 2 |
| 502 | ) |
| 503 | |
| 504 | var OfpPortReason_name = map[int32]string{ |
| 505 | 0: "OFPPR_ADD", |
| 506 | 1: "OFPPR_DELETE", |
| 507 | 2: "OFPPR_MODIFY", |
| 508 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 509 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 510 | var OfpPortReason_value = map[string]int32{ |
| 511 | "OFPPR_ADD": 0, |
| 512 | "OFPPR_DELETE": 1, |
| 513 | "OFPPR_MODIFY": 2, |
| 514 | } |
| 515 | |
| 516 | func (x OfpPortReason) String() string { |
| 517 | return proto.EnumName(OfpPortReason_name, int32(x)) |
| 518 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 519 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 520 | func (OfpPortReason) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 521 | return fileDescriptor_08e3a4e375aeddc7, []int{10} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 522 | } |
| 523 | |
| 524 | // The match type indicates the match structure (set of fields that compose the |
| 525 | // match) in use. The match type is placed in the type field at the beginning |
| 526 | // of all match structures. The "OpenFlow Extensible Match" type corresponds |
| 527 | // to OXM TLV format described below and must be supported by all OpenFlow |
| 528 | // switches. Extensions that define other match types may be published on the |
| 529 | // ONF wiki. Support for extensions is optional. |
| 530 | type OfpMatchType int32 |
| 531 | |
| 532 | const ( |
| 533 | OfpMatchType_OFPMT_STANDARD OfpMatchType = 0 |
| 534 | OfpMatchType_OFPMT_OXM OfpMatchType = 1 |
| 535 | ) |
| 536 | |
| 537 | var OfpMatchType_name = map[int32]string{ |
| 538 | 0: "OFPMT_STANDARD", |
| 539 | 1: "OFPMT_OXM", |
| 540 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 541 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 542 | var OfpMatchType_value = map[string]int32{ |
| 543 | "OFPMT_STANDARD": 0, |
| 544 | "OFPMT_OXM": 1, |
| 545 | } |
| 546 | |
| 547 | func (x OfpMatchType) String() string { |
| 548 | return proto.EnumName(OfpMatchType_name, int32(x)) |
| 549 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 550 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 551 | func (OfpMatchType) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 552 | return fileDescriptor_08e3a4e375aeddc7, []int{11} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 553 | } |
| 554 | |
| 555 | // OXM Class IDs. |
| 556 | // The high order bit differentiate reserved classes from member classes. |
| 557 | // Classes 0x0000 to 0x7FFF are member classes, allocated by ONF. |
| 558 | // Classes 0x8000 to 0xFFFE are reserved classes, reserved for standardisation. |
| 559 | type OfpOxmClass int32 |
| 560 | |
| 561 | const ( |
| 562 | OfpOxmClass_OFPXMC_NXM_0 OfpOxmClass = 0 |
| 563 | OfpOxmClass_OFPXMC_NXM_1 OfpOxmClass = 1 |
| 564 | OfpOxmClass_OFPXMC_OPENFLOW_BASIC OfpOxmClass = 32768 |
| 565 | OfpOxmClass_OFPXMC_EXPERIMENTER OfpOxmClass = 65535 |
| 566 | ) |
| 567 | |
| 568 | var OfpOxmClass_name = map[int32]string{ |
| 569 | 0: "OFPXMC_NXM_0", |
| 570 | 1: "OFPXMC_NXM_1", |
| 571 | 32768: "OFPXMC_OPENFLOW_BASIC", |
| 572 | 65535: "OFPXMC_EXPERIMENTER", |
| 573 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 574 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 575 | var OfpOxmClass_value = map[string]int32{ |
| 576 | "OFPXMC_NXM_0": 0, |
| 577 | "OFPXMC_NXM_1": 1, |
| 578 | "OFPXMC_OPENFLOW_BASIC": 32768, |
| 579 | "OFPXMC_EXPERIMENTER": 65535, |
| 580 | } |
| 581 | |
| 582 | func (x OfpOxmClass) String() string { |
| 583 | return proto.EnumName(OfpOxmClass_name, int32(x)) |
| 584 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 585 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 586 | func (OfpOxmClass) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 587 | return fileDescriptor_08e3a4e375aeddc7, []int{12} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 588 | } |
| 589 | |
| 590 | // OXM Flow field types for OpenFlow basic class. |
| 591 | type OxmOfbFieldTypes int32 |
| 592 | |
| 593 | const ( |
| 594 | OxmOfbFieldTypes_OFPXMT_OFB_IN_PORT OxmOfbFieldTypes = 0 |
| 595 | OxmOfbFieldTypes_OFPXMT_OFB_IN_PHY_PORT OxmOfbFieldTypes = 1 |
| 596 | OxmOfbFieldTypes_OFPXMT_OFB_METADATA OxmOfbFieldTypes = 2 |
| 597 | OxmOfbFieldTypes_OFPXMT_OFB_ETH_DST OxmOfbFieldTypes = 3 |
| 598 | OxmOfbFieldTypes_OFPXMT_OFB_ETH_SRC OxmOfbFieldTypes = 4 |
| 599 | OxmOfbFieldTypes_OFPXMT_OFB_ETH_TYPE OxmOfbFieldTypes = 5 |
| 600 | OxmOfbFieldTypes_OFPXMT_OFB_VLAN_VID OxmOfbFieldTypes = 6 |
| 601 | OxmOfbFieldTypes_OFPXMT_OFB_VLAN_PCP OxmOfbFieldTypes = 7 |
| 602 | OxmOfbFieldTypes_OFPXMT_OFB_IP_DSCP OxmOfbFieldTypes = 8 |
| 603 | OxmOfbFieldTypes_OFPXMT_OFB_IP_ECN OxmOfbFieldTypes = 9 |
| 604 | OxmOfbFieldTypes_OFPXMT_OFB_IP_PROTO OxmOfbFieldTypes = 10 |
| 605 | OxmOfbFieldTypes_OFPXMT_OFB_IPV4_SRC OxmOfbFieldTypes = 11 |
| 606 | OxmOfbFieldTypes_OFPXMT_OFB_IPV4_DST OxmOfbFieldTypes = 12 |
| 607 | OxmOfbFieldTypes_OFPXMT_OFB_TCP_SRC OxmOfbFieldTypes = 13 |
| 608 | OxmOfbFieldTypes_OFPXMT_OFB_TCP_DST OxmOfbFieldTypes = 14 |
| 609 | OxmOfbFieldTypes_OFPXMT_OFB_UDP_SRC OxmOfbFieldTypes = 15 |
| 610 | OxmOfbFieldTypes_OFPXMT_OFB_UDP_DST OxmOfbFieldTypes = 16 |
| 611 | OxmOfbFieldTypes_OFPXMT_OFB_SCTP_SRC OxmOfbFieldTypes = 17 |
| 612 | OxmOfbFieldTypes_OFPXMT_OFB_SCTP_DST OxmOfbFieldTypes = 18 |
| 613 | OxmOfbFieldTypes_OFPXMT_OFB_ICMPV4_TYPE OxmOfbFieldTypes = 19 |
| 614 | OxmOfbFieldTypes_OFPXMT_OFB_ICMPV4_CODE OxmOfbFieldTypes = 20 |
| 615 | OxmOfbFieldTypes_OFPXMT_OFB_ARP_OP OxmOfbFieldTypes = 21 |
| 616 | OxmOfbFieldTypes_OFPXMT_OFB_ARP_SPA OxmOfbFieldTypes = 22 |
| 617 | OxmOfbFieldTypes_OFPXMT_OFB_ARP_TPA OxmOfbFieldTypes = 23 |
| 618 | OxmOfbFieldTypes_OFPXMT_OFB_ARP_SHA OxmOfbFieldTypes = 24 |
| 619 | OxmOfbFieldTypes_OFPXMT_OFB_ARP_THA OxmOfbFieldTypes = 25 |
| 620 | OxmOfbFieldTypes_OFPXMT_OFB_IPV6_SRC OxmOfbFieldTypes = 26 |
| 621 | OxmOfbFieldTypes_OFPXMT_OFB_IPV6_DST OxmOfbFieldTypes = 27 |
| 622 | OxmOfbFieldTypes_OFPXMT_OFB_IPV6_FLABEL OxmOfbFieldTypes = 28 |
| 623 | OxmOfbFieldTypes_OFPXMT_OFB_ICMPV6_TYPE OxmOfbFieldTypes = 29 |
| 624 | OxmOfbFieldTypes_OFPXMT_OFB_ICMPV6_CODE OxmOfbFieldTypes = 30 |
| 625 | OxmOfbFieldTypes_OFPXMT_OFB_IPV6_ND_TARGET OxmOfbFieldTypes = 31 |
| 626 | OxmOfbFieldTypes_OFPXMT_OFB_IPV6_ND_SLL OxmOfbFieldTypes = 32 |
| 627 | OxmOfbFieldTypes_OFPXMT_OFB_IPV6_ND_TLL OxmOfbFieldTypes = 33 |
| 628 | OxmOfbFieldTypes_OFPXMT_OFB_MPLS_LABEL OxmOfbFieldTypes = 34 |
| 629 | OxmOfbFieldTypes_OFPXMT_OFB_MPLS_TC OxmOfbFieldTypes = 35 |
| 630 | OxmOfbFieldTypes_OFPXMT_OFB_MPLS_BOS OxmOfbFieldTypes = 36 |
| 631 | OxmOfbFieldTypes_OFPXMT_OFB_PBB_ISID OxmOfbFieldTypes = 37 |
| 632 | OxmOfbFieldTypes_OFPXMT_OFB_TUNNEL_ID OxmOfbFieldTypes = 38 |
| 633 | OxmOfbFieldTypes_OFPXMT_OFB_IPV6_EXTHDR OxmOfbFieldTypes = 39 |
| 634 | ) |
| 635 | |
| 636 | var OxmOfbFieldTypes_name = map[int32]string{ |
| 637 | 0: "OFPXMT_OFB_IN_PORT", |
| 638 | 1: "OFPXMT_OFB_IN_PHY_PORT", |
| 639 | 2: "OFPXMT_OFB_METADATA", |
| 640 | 3: "OFPXMT_OFB_ETH_DST", |
| 641 | 4: "OFPXMT_OFB_ETH_SRC", |
| 642 | 5: "OFPXMT_OFB_ETH_TYPE", |
| 643 | 6: "OFPXMT_OFB_VLAN_VID", |
| 644 | 7: "OFPXMT_OFB_VLAN_PCP", |
| 645 | 8: "OFPXMT_OFB_IP_DSCP", |
| 646 | 9: "OFPXMT_OFB_IP_ECN", |
| 647 | 10: "OFPXMT_OFB_IP_PROTO", |
| 648 | 11: "OFPXMT_OFB_IPV4_SRC", |
| 649 | 12: "OFPXMT_OFB_IPV4_DST", |
| 650 | 13: "OFPXMT_OFB_TCP_SRC", |
| 651 | 14: "OFPXMT_OFB_TCP_DST", |
| 652 | 15: "OFPXMT_OFB_UDP_SRC", |
| 653 | 16: "OFPXMT_OFB_UDP_DST", |
| 654 | 17: "OFPXMT_OFB_SCTP_SRC", |
| 655 | 18: "OFPXMT_OFB_SCTP_DST", |
| 656 | 19: "OFPXMT_OFB_ICMPV4_TYPE", |
| 657 | 20: "OFPXMT_OFB_ICMPV4_CODE", |
| 658 | 21: "OFPXMT_OFB_ARP_OP", |
| 659 | 22: "OFPXMT_OFB_ARP_SPA", |
| 660 | 23: "OFPXMT_OFB_ARP_TPA", |
| 661 | 24: "OFPXMT_OFB_ARP_SHA", |
| 662 | 25: "OFPXMT_OFB_ARP_THA", |
| 663 | 26: "OFPXMT_OFB_IPV6_SRC", |
| 664 | 27: "OFPXMT_OFB_IPV6_DST", |
| 665 | 28: "OFPXMT_OFB_IPV6_FLABEL", |
| 666 | 29: "OFPXMT_OFB_ICMPV6_TYPE", |
| 667 | 30: "OFPXMT_OFB_ICMPV6_CODE", |
| 668 | 31: "OFPXMT_OFB_IPV6_ND_TARGET", |
| 669 | 32: "OFPXMT_OFB_IPV6_ND_SLL", |
| 670 | 33: "OFPXMT_OFB_IPV6_ND_TLL", |
| 671 | 34: "OFPXMT_OFB_MPLS_LABEL", |
| 672 | 35: "OFPXMT_OFB_MPLS_TC", |
| 673 | 36: "OFPXMT_OFB_MPLS_BOS", |
| 674 | 37: "OFPXMT_OFB_PBB_ISID", |
| 675 | 38: "OFPXMT_OFB_TUNNEL_ID", |
| 676 | 39: "OFPXMT_OFB_IPV6_EXTHDR", |
| 677 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 678 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 679 | var OxmOfbFieldTypes_value = map[string]int32{ |
| 680 | "OFPXMT_OFB_IN_PORT": 0, |
| 681 | "OFPXMT_OFB_IN_PHY_PORT": 1, |
| 682 | "OFPXMT_OFB_METADATA": 2, |
| 683 | "OFPXMT_OFB_ETH_DST": 3, |
| 684 | "OFPXMT_OFB_ETH_SRC": 4, |
| 685 | "OFPXMT_OFB_ETH_TYPE": 5, |
| 686 | "OFPXMT_OFB_VLAN_VID": 6, |
| 687 | "OFPXMT_OFB_VLAN_PCP": 7, |
| 688 | "OFPXMT_OFB_IP_DSCP": 8, |
| 689 | "OFPXMT_OFB_IP_ECN": 9, |
| 690 | "OFPXMT_OFB_IP_PROTO": 10, |
| 691 | "OFPXMT_OFB_IPV4_SRC": 11, |
| 692 | "OFPXMT_OFB_IPV4_DST": 12, |
| 693 | "OFPXMT_OFB_TCP_SRC": 13, |
| 694 | "OFPXMT_OFB_TCP_DST": 14, |
| 695 | "OFPXMT_OFB_UDP_SRC": 15, |
| 696 | "OFPXMT_OFB_UDP_DST": 16, |
| 697 | "OFPXMT_OFB_SCTP_SRC": 17, |
| 698 | "OFPXMT_OFB_SCTP_DST": 18, |
| 699 | "OFPXMT_OFB_ICMPV4_TYPE": 19, |
| 700 | "OFPXMT_OFB_ICMPV4_CODE": 20, |
| 701 | "OFPXMT_OFB_ARP_OP": 21, |
| 702 | "OFPXMT_OFB_ARP_SPA": 22, |
| 703 | "OFPXMT_OFB_ARP_TPA": 23, |
| 704 | "OFPXMT_OFB_ARP_SHA": 24, |
| 705 | "OFPXMT_OFB_ARP_THA": 25, |
| 706 | "OFPXMT_OFB_IPV6_SRC": 26, |
| 707 | "OFPXMT_OFB_IPV6_DST": 27, |
| 708 | "OFPXMT_OFB_IPV6_FLABEL": 28, |
| 709 | "OFPXMT_OFB_ICMPV6_TYPE": 29, |
| 710 | "OFPXMT_OFB_ICMPV6_CODE": 30, |
| 711 | "OFPXMT_OFB_IPV6_ND_TARGET": 31, |
| 712 | "OFPXMT_OFB_IPV6_ND_SLL": 32, |
| 713 | "OFPXMT_OFB_IPV6_ND_TLL": 33, |
| 714 | "OFPXMT_OFB_MPLS_LABEL": 34, |
| 715 | "OFPXMT_OFB_MPLS_TC": 35, |
| 716 | "OFPXMT_OFB_MPLS_BOS": 36, |
| 717 | "OFPXMT_OFB_PBB_ISID": 37, |
| 718 | "OFPXMT_OFB_TUNNEL_ID": 38, |
| 719 | "OFPXMT_OFB_IPV6_EXTHDR": 39, |
| 720 | } |
| 721 | |
| 722 | func (x OxmOfbFieldTypes) String() string { |
| 723 | return proto.EnumName(OxmOfbFieldTypes_name, int32(x)) |
| 724 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 725 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 726 | func (OxmOfbFieldTypes) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 727 | return fileDescriptor_08e3a4e375aeddc7, []int{13} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 728 | } |
| 729 | |
| 730 | // The VLAN id is 12-bits, so we can use the entire 16 bits to indicate |
| 731 | // special conditions. |
| 732 | type OfpVlanId int32 |
| 733 | |
| 734 | const ( |
| 735 | OfpVlanId_OFPVID_NONE OfpVlanId = 0 |
| 736 | OfpVlanId_OFPVID_PRESENT OfpVlanId = 4096 |
| 737 | ) |
| 738 | |
| 739 | var OfpVlanId_name = map[int32]string{ |
| 740 | 0: "OFPVID_NONE", |
| 741 | 4096: "OFPVID_PRESENT", |
| 742 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 743 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 744 | var OfpVlanId_value = map[string]int32{ |
| 745 | "OFPVID_NONE": 0, |
| 746 | "OFPVID_PRESENT": 4096, |
| 747 | } |
| 748 | |
| 749 | func (x OfpVlanId) String() string { |
| 750 | return proto.EnumName(OfpVlanId_name, int32(x)) |
| 751 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 752 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 753 | func (OfpVlanId) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 754 | return fileDescriptor_08e3a4e375aeddc7, []int{14} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 755 | } |
| 756 | |
| 757 | // Bit definitions for IPv6 Extension Header pseudo-field. |
| 758 | type OfpIpv6ExthdrFlags int32 |
| 759 | |
| 760 | const ( |
| 761 | OfpIpv6ExthdrFlags_OFPIEH_INVALID OfpIpv6ExthdrFlags = 0 |
| 762 | OfpIpv6ExthdrFlags_OFPIEH_NONEXT OfpIpv6ExthdrFlags = 1 |
| 763 | OfpIpv6ExthdrFlags_OFPIEH_ESP OfpIpv6ExthdrFlags = 2 |
| 764 | OfpIpv6ExthdrFlags_OFPIEH_AUTH OfpIpv6ExthdrFlags = 4 |
| 765 | OfpIpv6ExthdrFlags_OFPIEH_DEST OfpIpv6ExthdrFlags = 8 |
| 766 | OfpIpv6ExthdrFlags_OFPIEH_FRAG OfpIpv6ExthdrFlags = 16 |
| 767 | OfpIpv6ExthdrFlags_OFPIEH_ROUTER OfpIpv6ExthdrFlags = 32 |
| 768 | OfpIpv6ExthdrFlags_OFPIEH_HOP OfpIpv6ExthdrFlags = 64 |
| 769 | OfpIpv6ExthdrFlags_OFPIEH_UNREP OfpIpv6ExthdrFlags = 128 |
| 770 | OfpIpv6ExthdrFlags_OFPIEH_UNSEQ OfpIpv6ExthdrFlags = 256 |
| 771 | ) |
| 772 | |
| 773 | var OfpIpv6ExthdrFlags_name = map[int32]string{ |
| 774 | 0: "OFPIEH_INVALID", |
| 775 | 1: "OFPIEH_NONEXT", |
| 776 | 2: "OFPIEH_ESP", |
| 777 | 4: "OFPIEH_AUTH", |
| 778 | 8: "OFPIEH_DEST", |
| 779 | 16: "OFPIEH_FRAG", |
| 780 | 32: "OFPIEH_ROUTER", |
| 781 | 64: "OFPIEH_HOP", |
| 782 | 128: "OFPIEH_UNREP", |
| 783 | 256: "OFPIEH_UNSEQ", |
| 784 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 785 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 786 | var OfpIpv6ExthdrFlags_value = map[string]int32{ |
| 787 | "OFPIEH_INVALID": 0, |
| 788 | "OFPIEH_NONEXT": 1, |
| 789 | "OFPIEH_ESP": 2, |
| 790 | "OFPIEH_AUTH": 4, |
| 791 | "OFPIEH_DEST": 8, |
| 792 | "OFPIEH_FRAG": 16, |
| 793 | "OFPIEH_ROUTER": 32, |
| 794 | "OFPIEH_HOP": 64, |
| 795 | "OFPIEH_UNREP": 128, |
| 796 | "OFPIEH_UNSEQ": 256, |
| 797 | } |
| 798 | |
| 799 | func (x OfpIpv6ExthdrFlags) String() string { |
| 800 | return proto.EnumName(OfpIpv6ExthdrFlags_name, int32(x)) |
| 801 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 802 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 803 | func (OfpIpv6ExthdrFlags) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 804 | return fileDescriptor_08e3a4e375aeddc7, []int{15} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 805 | } |
| 806 | |
| 807 | type OfpActionType int32 |
| 808 | |
| 809 | const ( |
| 810 | OfpActionType_OFPAT_OUTPUT OfpActionType = 0 |
| 811 | OfpActionType_OFPAT_COPY_TTL_OUT OfpActionType = 11 |
| 812 | OfpActionType_OFPAT_COPY_TTL_IN OfpActionType = 12 |
| 813 | OfpActionType_OFPAT_SET_MPLS_TTL OfpActionType = 15 |
| 814 | OfpActionType_OFPAT_DEC_MPLS_TTL OfpActionType = 16 |
| 815 | OfpActionType_OFPAT_PUSH_VLAN OfpActionType = 17 |
| 816 | OfpActionType_OFPAT_POP_VLAN OfpActionType = 18 |
| 817 | OfpActionType_OFPAT_PUSH_MPLS OfpActionType = 19 |
| 818 | OfpActionType_OFPAT_POP_MPLS OfpActionType = 20 |
| 819 | OfpActionType_OFPAT_SET_QUEUE OfpActionType = 21 |
| 820 | OfpActionType_OFPAT_GROUP OfpActionType = 22 |
| 821 | OfpActionType_OFPAT_SET_NW_TTL OfpActionType = 23 |
| 822 | OfpActionType_OFPAT_DEC_NW_TTL OfpActionType = 24 |
| 823 | OfpActionType_OFPAT_SET_FIELD OfpActionType = 25 |
| 824 | OfpActionType_OFPAT_PUSH_PBB OfpActionType = 26 |
| 825 | OfpActionType_OFPAT_POP_PBB OfpActionType = 27 |
| 826 | OfpActionType_OFPAT_EXPERIMENTER OfpActionType = 65535 |
| 827 | ) |
| 828 | |
| 829 | var OfpActionType_name = map[int32]string{ |
| 830 | 0: "OFPAT_OUTPUT", |
| 831 | 11: "OFPAT_COPY_TTL_OUT", |
| 832 | 12: "OFPAT_COPY_TTL_IN", |
| 833 | 15: "OFPAT_SET_MPLS_TTL", |
| 834 | 16: "OFPAT_DEC_MPLS_TTL", |
| 835 | 17: "OFPAT_PUSH_VLAN", |
| 836 | 18: "OFPAT_POP_VLAN", |
| 837 | 19: "OFPAT_PUSH_MPLS", |
| 838 | 20: "OFPAT_POP_MPLS", |
| 839 | 21: "OFPAT_SET_QUEUE", |
| 840 | 22: "OFPAT_GROUP", |
| 841 | 23: "OFPAT_SET_NW_TTL", |
| 842 | 24: "OFPAT_DEC_NW_TTL", |
| 843 | 25: "OFPAT_SET_FIELD", |
| 844 | 26: "OFPAT_PUSH_PBB", |
| 845 | 27: "OFPAT_POP_PBB", |
| 846 | 65535: "OFPAT_EXPERIMENTER", |
| 847 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 848 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 849 | var OfpActionType_value = map[string]int32{ |
| 850 | "OFPAT_OUTPUT": 0, |
| 851 | "OFPAT_COPY_TTL_OUT": 11, |
| 852 | "OFPAT_COPY_TTL_IN": 12, |
| 853 | "OFPAT_SET_MPLS_TTL": 15, |
| 854 | "OFPAT_DEC_MPLS_TTL": 16, |
| 855 | "OFPAT_PUSH_VLAN": 17, |
| 856 | "OFPAT_POP_VLAN": 18, |
| 857 | "OFPAT_PUSH_MPLS": 19, |
| 858 | "OFPAT_POP_MPLS": 20, |
| 859 | "OFPAT_SET_QUEUE": 21, |
| 860 | "OFPAT_GROUP": 22, |
| 861 | "OFPAT_SET_NW_TTL": 23, |
| 862 | "OFPAT_DEC_NW_TTL": 24, |
| 863 | "OFPAT_SET_FIELD": 25, |
| 864 | "OFPAT_PUSH_PBB": 26, |
| 865 | "OFPAT_POP_PBB": 27, |
| 866 | "OFPAT_EXPERIMENTER": 65535, |
| 867 | } |
| 868 | |
| 869 | func (x OfpActionType) String() string { |
| 870 | return proto.EnumName(OfpActionType_name, int32(x)) |
| 871 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 872 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 873 | func (OfpActionType) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 874 | return fileDescriptor_08e3a4e375aeddc7, []int{16} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 875 | } |
| 876 | |
| 877 | type OfpControllerMaxLen int32 |
| 878 | |
| 879 | const ( |
| 880 | OfpControllerMaxLen_OFPCML_INVALID OfpControllerMaxLen = 0 |
| 881 | OfpControllerMaxLen_OFPCML_MAX OfpControllerMaxLen = 65509 |
| 882 | OfpControllerMaxLen_OFPCML_NO_BUFFER OfpControllerMaxLen = 65535 |
| 883 | ) |
| 884 | |
| 885 | var OfpControllerMaxLen_name = map[int32]string{ |
| 886 | 0: "OFPCML_INVALID", |
| 887 | 65509: "OFPCML_MAX", |
| 888 | 65535: "OFPCML_NO_BUFFER", |
| 889 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 890 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 891 | var OfpControllerMaxLen_value = map[string]int32{ |
| 892 | "OFPCML_INVALID": 0, |
| 893 | "OFPCML_MAX": 65509, |
| 894 | "OFPCML_NO_BUFFER": 65535, |
| 895 | } |
| 896 | |
| 897 | func (x OfpControllerMaxLen) String() string { |
| 898 | return proto.EnumName(OfpControllerMaxLen_name, int32(x)) |
| 899 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 900 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 901 | func (OfpControllerMaxLen) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 902 | return fileDescriptor_08e3a4e375aeddc7, []int{17} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 903 | } |
| 904 | |
| 905 | type OfpInstructionType int32 |
| 906 | |
| 907 | const ( |
| 908 | OfpInstructionType_OFPIT_INVALID OfpInstructionType = 0 |
| 909 | OfpInstructionType_OFPIT_GOTO_TABLE OfpInstructionType = 1 |
| 910 | OfpInstructionType_OFPIT_WRITE_METADATA OfpInstructionType = 2 |
| 911 | OfpInstructionType_OFPIT_WRITE_ACTIONS OfpInstructionType = 3 |
| 912 | OfpInstructionType_OFPIT_APPLY_ACTIONS OfpInstructionType = 4 |
| 913 | OfpInstructionType_OFPIT_CLEAR_ACTIONS OfpInstructionType = 5 |
| 914 | OfpInstructionType_OFPIT_METER OfpInstructionType = 6 |
| 915 | OfpInstructionType_OFPIT_EXPERIMENTER OfpInstructionType = 65535 |
| 916 | ) |
| 917 | |
| 918 | var OfpInstructionType_name = map[int32]string{ |
| 919 | 0: "OFPIT_INVALID", |
| 920 | 1: "OFPIT_GOTO_TABLE", |
| 921 | 2: "OFPIT_WRITE_METADATA", |
| 922 | 3: "OFPIT_WRITE_ACTIONS", |
| 923 | 4: "OFPIT_APPLY_ACTIONS", |
| 924 | 5: "OFPIT_CLEAR_ACTIONS", |
| 925 | 6: "OFPIT_METER", |
| 926 | 65535: "OFPIT_EXPERIMENTER", |
| 927 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 928 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 929 | var OfpInstructionType_value = map[string]int32{ |
| 930 | "OFPIT_INVALID": 0, |
| 931 | "OFPIT_GOTO_TABLE": 1, |
| 932 | "OFPIT_WRITE_METADATA": 2, |
| 933 | "OFPIT_WRITE_ACTIONS": 3, |
| 934 | "OFPIT_APPLY_ACTIONS": 4, |
| 935 | "OFPIT_CLEAR_ACTIONS": 5, |
| 936 | "OFPIT_METER": 6, |
| 937 | "OFPIT_EXPERIMENTER": 65535, |
| 938 | } |
| 939 | |
| 940 | func (x OfpInstructionType) String() string { |
| 941 | return proto.EnumName(OfpInstructionType_name, int32(x)) |
| 942 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 943 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 944 | func (OfpInstructionType) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 945 | return fileDescriptor_08e3a4e375aeddc7, []int{18} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 946 | } |
| 947 | |
| 948 | type OfpFlowModCommand int32 |
| 949 | |
| 950 | const ( |
| 951 | OfpFlowModCommand_OFPFC_ADD OfpFlowModCommand = 0 |
| 952 | OfpFlowModCommand_OFPFC_MODIFY OfpFlowModCommand = 1 |
| 953 | OfpFlowModCommand_OFPFC_MODIFY_STRICT OfpFlowModCommand = 2 |
| 954 | OfpFlowModCommand_OFPFC_DELETE OfpFlowModCommand = 3 |
| 955 | OfpFlowModCommand_OFPFC_DELETE_STRICT OfpFlowModCommand = 4 |
| 956 | ) |
| 957 | |
| 958 | var OfpFlowModCommand_name = map[int32]string{ |
| 959 | 0: "OFPFC_ADD", |
| 960 | 1: "OFPFC_MODIFY", |
| 961 | 2: "OFPFC_MODIFY_STRICT", |
| 962 | 3: "OFPFC_DELETE", |
| 963 | 4: "OFPFC_DELETE_STRICT", |
| 964 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 965 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 966 | var OfpFlowModCommand_value = map[string]int32{ |
| 967 | "OFPFC_ADD": 0, |
| 968 | "OFPFC_MODIFY": 1, |
| 969 | "OFPFC_MODIFY_STRICT": 2, |
| 970 | "OFPFC_DELETE": 3, |
| 971 | "OFPFC_DELETE_STRICT": 4, |
| 972 | } |
| 973 | |
| 974 | func (x OfpFlowModCommand) String() string { |
| 975 | return proto.EnumName(OfpFlowModCommand_name, int32(x)) |
| 976 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 977 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 978 | func (OfpFlowModCommand) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 979 | return fileDescriptor_08e3a4e375aeddc7, []int{19} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 980 | } |
| 981 | |
| 982 | type OfpFlowModFlags int32 |
| 983 | |
| 984 | const ( |
| 985 | OfpFlowModFlags_OFPFF_INVALID OfpFlowModFlags = 0 |
| 986 | OfpFlowModFlags_OFPFF_SEND_FLOW_REM OfpFlowModFlags = 1 |
| 987 | OfpFlowModFlags_OFPFF_CHECK_OVERLAP OfpFlowModFlags = 2 |
| 988 | OfpFlowModFlags_OFPFF_RESET_COUNTS OfpFlowModFlags = 4 |
| 989 | OfpFlowModFlags_OFPFF_NO_PKT_COUNTS OfpFlowModFlags = 8 |
| 990 | OfpFlowModFlags_OFPFF_NO_BYT_COUNTS OfpFlowModFlags = 16 |
| 991 | ) |
| 992 | |
| 993 | var OfpFlowModFlags_name = map[int32]string{ |
| 994 | 0: "OFPFF_INVALID", |
| 995 | 1: "OFPFF_SEND_FLOW_REM", |
| 996 | 2: "OFPFF_CHECK_OVERLAP", |
| 997 | 4: "OFPFF_RESET_COUNTS", |
| 998 | 8: "OFPFF_NO_PKT_COUNTS", |
| 999 | 16: "OFPFF_NO_BYT_COUNTS", |
| 1000 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1001 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1002 | var OfpFlowModFlags_value = map[string]int32{ |
| 1003 | "OFPFF_INVALID": 0, |
| 1004 | "OFPFF_SEND_FLOW_REM": 1, |
| 1005 | "OFPFF_CHECK_OVERLAP": 2, |
| 1006 | "OFPFF_RESET_COUNTS": 4, |
| 1007 | "OFPFF_NO_PKT_COUNTS": 8, |
| 1008 | "OFPFF_NO_BYT_COUNTS": 16, |
| 1009 | } |
| 1010 | |
| 1011 | func (x OfpFlowModFlags) String() string { |
| 1012 | return proto.EnumName(OfpFlowModFlags_name, int32(x)) |
| 1013 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1014 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1015 | func (OfpFlowModFlags) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1016 | return fileDescriptor_08e3a4e375aeddc7, []int{20} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1017 | } |
| 1018 | |
| 1019 | // Group numbering. Groups can use any number up to OFPG_MAX. |
| 1020 | type OfpGroup int32 |
| 1021 | |
| 1022 | const ( |
| 1023 | OfpGroup_OFPG_INVALID OfpGroup = 0 |
| 1024 | // Last usable group number. |
| 1025 | OfpGroup_OFPG_MAX OfpGroup = 2147483392 |
| 1026 | // Fake groups. |
| 1027 | OfpGroup_OFPG_ALL OfpGroup = 2147483644 |
| 1028 | OfpGroup_OFPG_ANY OfpGroup = 2147483647 |
| 1029 | ) |
| 1030 | |
| 1031 | var OfpGroup_name = map[int32]string{ |
| 1032 | 0: "OFPG_INVALID", |
| 1033 | 2147483392: "OFPG_MAX", |
| 1034 | 2147483644: "OFPG_ALL", |
| 1035 | 2147483647: "OFPG_ANY", |
| 1036 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1037 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1038 | var OfpGroup_value = map[string]int32{ |
| 1039 | "OFPG_INVALID": 0, |
| 1040 | "OFPG_MAX": 2147483392, |
| 1041 | "OFPG_ALL": 2147483644, |
| 1042 | "OFPG_ANY": 2147483647, |
| 1043 | } |
| 1044 | |
| 1045 | func (x OfpGroup) String() string { |
| 1046 | return proto.EnumName(OfpGroup_name, int32(x)) |
| 1047 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1048 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1049 | func (OfpGroup) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1050 | return fileDescriptor_08e3a4e375aeddc7, []int{21} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1051 | } |
| 1052 | |
| 1053 | // Group commands |
| 1054 | type OfpGroupModCommand int32 |
| 1055 | |
| 1056 | const ( |
| 1057 | OfpGroupModCommand_OFPGC_ADD OfpGroupModCommand = 0 |
| 1058 | OfpGroupModCommand_OFPGC_MODIFY OfpGroupModCommand = 1 |
| 1059 | OfpGroupModCommand_OFPGC_DELETE OfpGroupModCommand = 2 |
| 1060 | ) |
| 1061 | |
| 1062 | var OfpGroupModCommand_name = map[int32]string{ |
| 1063 | 0: "OFPGC_ADD", |
| 1064 | 1: "OFPGC_MODIFY", |
| 1065 | 2: "OFPGC_DELETE", |
| 1066 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1067 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1068 | var OfpGroupModCommand_value = map[string]int32{ |
| 1069 | "OFPGC_ADD": 0, |
| 1070 | "OFPGC_MODIFY": 1, |
| 1071 | "OFPGC_DELETE": 2, |
| 1072 | } |
| 1073 | |
| 1074 | func (x OfpGroupModCommand) String() string { |
| 1075 | return proto.EnumName(OfpGroupModCommand_name, int32(x)) |
| 1076 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1077 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1078 | func (OfpGroupModCommand) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1079 | return fileDescriptor_08e3a4e375aeddc7, []int{22} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1080 | } |
| 1081 | |
| 1082 | // Group types. Values in the range [128; 255] are reserved for experimental |
| 1083 | // use. |
| 1084 | type OfpGroupType int32 |
| 1085 | |
| 1086 | const ( |
| 1087 | OfpGroupType_OFPGT_ALL OfpGroupType = 0 |
| 1088 | OfpGroupType_OFPGT_SELECT OfpGroupType = 1 |
| 1089 | OfpGroupType_OFPGT_INDIRECT OfpGroupType = 2 |
| 1090 | OfpGroupType_OFPGT_FF OfpGroupType = 3 |
| 1091 | ) |
| 1092 | |
| 1093 | var OfpGroupType_name = map[int32]string{ |
| 1094 | 0: "OFPGT_ALL", |
| 1095 | 1: "OFPGT_SELECT", |
| 1096 | 2: "OFPGT_INDIRECT", |
| 1097 | 3: "OFPGT_FF", |
| 1098 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1099 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1100 | var OfpGroupType_value = map[string]int32{ |
| 1101 | "OFPGT_ALL": 0, |
| 1102 | "OFPGT_SELECT": 1, |
| 1103 | "OFPGT_INDIRECT": 2, |
| 1104 | "OFPGT_FF": 3, |
| 1105 | } |
| 1106 | |
| 1107 | func (x OfpGroupType) String() string { |
| 1108 | return proto.EnumName(OfpGroupType_name, int32(x)) |
| 1109 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1110 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1111 | func (OfpGroupType) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1112 | return fileDescriptor_08e3a4e375aeddc7, []int{23} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1113 | } |
| 1114 | |
| 1115 | // Why is this packet being sent to the controller? |
| 1116 | type OfpPacketInReason int32 |
| 1117 | |
| 1118 | const ( |
| 1119 | OfpPacketInReason_OFPR_NO_MATCH OfpPacketInReason = 0 |
| 1120 | OfpPacketInReason_OFPR_ACTION OfpPacketInReason = 1 |
| 1121 | OfpPacketInReason_OFPR_INVALID_TTL OfpPacketInReason = 2 |
| 1122 | ) |
| 1123 | |
| 1124 | var OfpPacketInReason_name = map[int32]string{ |
| 1125 | 0: "OFPR_NO_MATCH", |
| 1126 | 1: "OFPR_ACTION", |
| 1127 | 2: "OFPR_INVALID_TTL", |
| 1128 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1129 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1130 | var OfpPacketInReason_value = map[string]int32{ |
| 1131 | "OFPR_NO_MATCH": 0, |
| 1132 | "OFPR_ACTION": 1, |
| 1133 | "OFPR_INVALID_TTL": 2, |
| 1134 | } |
| 1135 | |
| 1136 | func (x OfpPacketInReason) String() string { |
| 1137 | return proto.EnumName(OfpPacketInReason_name, int32(x)) |
| 1138 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1139 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1140 | func (OfpPacketInReason) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1141 | return fileDescriptor_08e3a4e375aeddc7, []int{24} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1142 | } |
| 1143 | |
| 1144 | // Why was this flow removed? |
| 1145 | type OfpFlowRemovedReason int32 |
| 1146 | |
| 1147 | const ( |
| 1148 | OfpFlowRemovedReason_OFPRR_IDLE_TIMEOUT OfpFlowRemovedReason = 0 |
| 1149 | OfpFlowRemovedReason_OFPRR_HARD_TIMEOUT OfpFlowRemovedReason = 1 |
| 1150 | OfpFlowRemovedReason_OFPRR_DELETE OfpFlowRemovedReason = 2 |
| 1151 | OfpFlowRemovedReason_OFPRR_GROUP_DELETE OfpFlowRemovedReason = 3 |
| 1152 | OfpFlowRemovedReason_OFPRR_METER_DELETE OfpFlowRemovedReason = 4 |
| 1153 | ) |
| 1154 | |
| 1155 | var OfpFlowRemovedReason_name = map[int32]string{ |
| 1156 | 0: "OFPRR_IDLE_TIMEOUT", |
| 1157 | 1: "OFPRR_HARD_TIMEOUT", |
| 1158 | 2: "OFPRR_DELETE", |
| 1159 | 3: "OFPRR_GROUP_DELETE", |
| 1160 | 4: "OFPRR_METER_DELETE", |
| 1161 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1162 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1163 | var OfpFlowRemovedReason_value = map[string]int32{ |
| 1164 | "OFPRR_IDLE_TIMEOUT": 0, |
| 1165 | "OFPRR_HARD_TIMEOUT": 1, |
| 1166 | "OFPRR_DELETE": 2, |
| 1167 | "OFPRR_GROUP_DELETE": 3, |
| 1168 | "OFPRR_METER_DELETE": 4, |
| 1169 | } |
| 1170 | |
| 1171 | func (x OfpFlowRemovedReason) String() string { |
| 1172 | return proto.EnumName(OfpFlowRemovedReason_name, int32(x)) |
| 1173 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1174 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1175 | func (OfpFlowRemovedReason) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1176 | return fileDescriptor_08e3a4e375aeddc7, []int{25} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1177 | } |
| 1178 | |
| 1179 | // Meter numbering. Flow meters can use any number up to OFPM_MAX. |
| 1180 | type OfpMeter int32 |
| 1181 | |
| 1182 | const ( |
| 1183 | OfpMeter_OFPM_ZERO OfpMeter = 0 |
| 1184 | // Last usable meter. |
| 1185 | OfpMeter_OFPM_MAX OfpMeter = 2147418112 |
| 1186 | // Virtual meters. |
| 1187 | OfpMeter_OFPM_SLOWPATH OfpMeter = 2147483645 |
| 1188 | OfpMeter_OFPM_CONTROLLER OfpMeter = 2147483646 |
| 1189 | OfpMeter_OFPM_ALL OfpMeter = 2147483647 |
| 1190 | ) |
| 1191 | |
| 1192 | var OfpMeter_name = map[int32]string{ |
| 1193 | 0: "OFPM_ZERO", |
| 1194 | 2147418112: "OFPM_MAX", |
| 1195 | 2147483645: "OFPM_SLOWPATH", |
| 1196 | 2147483646: "OFPM_CONTROLLER", |
| 1197 | 2147483647: "OFPM_ALL", |
| 1198 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1199 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1200 | var OfpMeter_value = map[string]int32{ |
| 1201 | "OFPM_ZERO": 0, |
| 1202 | "OFPM_MAX": 2147418112, |
| 1203 | "OFPM_SLOWPATH": 2147483645, |
| 1204 | "OFPM_CONTROLLER": 2147483646, |
| 1205 | "OFPM_ALL": 2147483647, |
| 1206 | } |
| 1207 | |
| 1208 | func (x OfpMeter) String() string { |
| 1209 | return proto.EnumName(OfpMeter_name, int32(x)) |
| 1210 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1211 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1212 | func (OfpMeter) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1213 | return fileDescriptor_08e3a4e375aeddc7, []int{26} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1214 | } |
| 1215 | |
| 1216 | // Meter band types |
| 1217 | type OfpMeterBandType int32 |
| 1218 | |
| 1219 | const ( |
| 1220 | OfpMeterBandType_OFPMBT_INVALID OfpMeterBandType = 0 |
| 1221 | OfpMeterBandType_OFPMBT_DROP OfpMeterBandType = 1 |
| 1222 | OfpMeterBandType_OFPMBT_DSCP_REMARK OfpMeterBandType = 2 |
| 1223 | OfpMeterBandType_OFPMBT_EXPERIMENTER OfpMeterBandType = 65535 |
| 1224 | ) |
| 1225 | |
| 1226 | var OfpMeterBandType_name = map[int32]string{ |
| 1227 | 0: "OFPMBT_INVALID", |
| 1228 | 1: "OFPMBT_DROP", |
| 1229 | 2: "OFPMBT_DSCP_REMARK", |
| 1230 | 65535: "OFPMBT_EXPERIMENTER", |
| 1231 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1232 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1233 | var OfpMeterBandType_value = map[string]int32{ |
| 1234 | "OFPMBT_INVALID": 0, |
| 1235 | "OFPMBT_DROP": 1, |
| 1236 | "OFPMBT_DSCP_REMARK": 2, |
| 1237 | "OFPMBT_EXPERIMENTER": 65535, |
| 1238 | } |
| 1239 | |
| 1240 | func (x OfpMeterBandType) String() string { |
| 1241 | return proto.EnumName(OfpMeterBandType_name, int32(x)) |
| 1242 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1243 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1244 | func (OfpMeterBandType) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1245 | return fileDescriptor_08e3a4e375aeddc7, []int{27} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1246 | } |
| 1247 | |
| 1248 | // Meter commands |
| 1249 | type OfpMeterModCommand int32 |
| 1250 | |
| 1251 | const ( |
| 1252 | OfpMeterModCommand_OFPMC_ADD OfpMeterModCommand = 0 |
| 1253 | OfpMeterModCommand_OFPMC_MODIFY OfpMeterModCommand = 1 |
| 1254 | OfpMeterModCommand_OFPMC_DELETE OfpMeterModCommand = 2 |
| 1255 | ) |
| 1256 | |
| 1257 | var OfpMeterModCommand_name = map[int32]string{ |
| 1258 | 0: "OFPMC_ADD", |
| 1259 | 1: "OFPMC_MODIFY", |
| 1260 | 2: "OFPMC_DELETE", |
| 1261 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1262 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1263 | var OfpMeterModCommand_value = map[string]int32{ |
| 1264 | "OFPMC_ADD": 0, |
| 1265 | "OFPMC_MODIFY": 1, |
| 1266 | "OFPMC_DELETE": 2, |
| 1267 | } |
| 1268 | |
| 1269 | func (x OfpMeterModCommand) String() string { |
| 1270 | return proto.EnumName(OfpMeterModCommand_name, int32(x)) |
| 1271 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1272 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1273 | func (OfpMeterModCommand) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1274 | return fileDescriptor_08e3a4e375aeddc7, []int{28} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1275 | } |
| 1276 | |
| 1277 | // Meter configuration flags |
| 1278 | type OfpMeterFlags int32 |
| 1279 | |
| 1280 | const ( |
| 1281 | OfpMeterFlags_OFPMF_INVALID OfpMeterFlags = 0 |
| 1282 | OfpMeterFlags_OFPMF_KBPS OfpMeterFlags = 1 |
| 1283 | OfpMeterFlags_OFPMF_PKTPS OfpMeterFlags = 2 |
| 1284 | OfpMeterFlags_OFPMF_BURST OfpMeterFlags = 4 |
| 1285 | OfpMeterFlags_OFPMF_STATS OfpMeterFlags = 8 |
| 1286 | ) |
| 1287 | |
| 1288 | var OfpMeterFlags_name = map[int32]string{ |
| 1289 | 0: "OFPMF_INVALID", |
| 1290 | 1: "OFPMF_KBPS", |
| 1291 | 2: "OFPMF_PKTPS", |
| 1292 | 4: "OFPMF_BURST", |
| 1293 | 8: "OFPMF_STATS", |
| 1294 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1295 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1296 | var OfpMeterFlags_value = map[string]int32{ |
| 1297 | "OFPMF_INVALID": 0, |
| 1298 | "OFPMF_KBPS": 1, |
| 1299 | "OFPMF_PKTPS": 2, |
| 1300 | "OFPMF_BURST": 4, |
| 1301 | "OFPMF_STATS": 8, |
| 1302 | } |
| 1303 | |
| 1304 | func (x OfpMeterFlags) String() string { |
| 1305 | return proto.EnumName(OfpMeterFlags_name, int32(x)) |
| 1306 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1307 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1308 | func (OfpMeterFlags) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1309 | return fileDescriptor_08e3a4e375aeddc7, []int{29} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1310 | } |
| 1311 | |
| 1312 | // Values for 'type' in ofp_error_message. These values are immutable: they |
| 1313 | // will not change in future versions of the protocol (although new values may |
| 1314 | // be added). |
| 1315 | type OfpErrorType int32 |
| 1316 | |
| 1317 | const ( |
| 1318 | OfpErrorType_OFPET_HELLO_FAILED OfpErrorType = 0 |
| 1319 | OfpErrorType_OFPET_BAD_REQUEST OfpErrorType = 1 |
| 1320 | OfpErrorType_OFPET_BAD_ACTION OfpErrorType = 2 |
| 1321 | OfpErrorType_OFPET_BAD_INSTRUCTION OfpErrorType = 3 |
| 1322 | OfpErrorType_OFPET_BAD_MATCH OfpErrorType = 4 |
| 1323 | OfpErrorType_OFPET_FLOW_MOD_FAILED OfpErrorType = 5 |
| 1324 | OfpErrorType_OFPET_GROUP_MOD_FAILED OfpErrorType = 6 |
| 1325 | OfpErrorType_OFPET_PORT_MOD_FAILED OfpErrorType = 7 |
| 1326 | OfpErrorType_OFPET_TABLE_MOD_FAILED OfpErrorType = 8 |
| 1327 | OfpErrorType_OFPET_QUEUE_OP_FAILED OfpErrorType = 9 |
| 1328 | OfpErrorType_OFPET_SWITCH_CONFIG_FAILED OfpErrorType = 10 |
| 1329 | OfpErrorType_OFPET_ROLE_REQUEST_FAILED OfpErrorType = 11 |
| 1330 | OfpErrorType_OFPET_METER_MOD_FAILED OfpErrorType = 12 |
| 1331 | OfpErrorType_OFPET_TABLE_FEATURES_FAILED OfpErrorType = 13 |
| 1332 | OfpErrorType_OFPET_EXPERIMENTER OfpErrorType = 65535 |
| 1333 | ) |
| 1334 | |
| 1335 | var OfpErrorType_name = map[int32]string{ |
| 1336 | 0: "OFPET_HELLO_FAILED", |
| 1337 | 1: "OFPET_BAD_REQUEST", |
| 1338 | 2: "OFPET_BAD_ACTION", |
| 1339 | 3: "OFPET_BAD_INSTRUCTION", |
| 1340 | 4: "OFPET_BAD_MATCH", |
| 1341 | 5: "OFPET_FLOW_MOD_FAILED", |
| 1342 | 6: "OFPET_GROUP_MOD_FAILED", |
| 1343 | 7: "OFPET_PORT_MOD_FAILED", |
| 1344 | 8: "OFPET_TABLE_MOD_FAILED", |
| 1345 | 9: "OFPET_QUEUE_OP_FAILED", |
| 1346 | 10: "OFPET_SWITCH_CONFIG_FAILED", |
| 1347 | 11: "OFPET_ROLE_REQUEST_FAILED", |
| 1348 | 12: "OFPET_METER_MOD_FAILED", |
| 1349 | 13: "OFPET_TABLE_FEATURES_FAILED", |
| 1350 | 65535: "OFPET_EXPERIMENTER", |
| 1351 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1352 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1353 | var OfpErrorType_value = map[string]int32{ |
| 1354 | "OFPET_HELLO_FAILED": 0, |
| 1355 | "OFPET_BAD_REQUEST": 1, |
| 1356 | "OFPET_BAD_ACTION": 2, |
| 1357 | "OFPET_BAD_INSTRUCTION": 3, |
| 1358 | "OFPET_BAD_MATCH": 4, |
| 1359 | "OFPET_FLOW_MOD_FAILED": 5, |
| 1360 | "OFPET_GROUP_MOD_FAILED": 6, |
| 1361 | "OFPET_PORT_MOD_FAILED": 7, |
| 1362 | "OFPET_TABLE_MOD_FAILED": 8, |
| 1363 | "OFPET_QUEUE_OP_FAILED": 9, |
| 1364 | "OFPET_SWITCH_CONFIG_FAILED": 10, |
| 1365 | "OFPET_ROLE_REQUEST_FAILED": 11, |
| 1366 | "OFPET_METER_MOD_FAILED": 12, |
| 1367 | "OFPET_TABLE_FEATURES_FAILED": 13, |
| 1368 | "OFPET_EXPERIMENTER": 65535, |
| 1369 | } |
| 1370 | |
| 1371 | func (x OfpErrorType) String() string { |
| 1372 | return proto.EnumName(OfpErrorType_name, int32(x)) |
| 1373 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1374 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1375 | func (OfpErrorType) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1376 | return fileDescriptor_08e3a4e375aeddc7, []int{30} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1377 | } |
| 1378 | |
| 1379 | // ofp_error_msg 'code' values for OFPET_HELLO_FAILED. 'data' contains an |
| 1380 | // ASCII text string that may give failure details. |
| 1381 | type OfpHelloFailedCode int32 |
| 1382 | |
| 1383 | const ( |
| 1384 | OfpHelloFailedCode_OFPHFC_INCOMPATIBLE OfpHelloFailedCode = 0 |
| 1385 | OfpHelloFailedCode_OFPHFC_EPERM OfpHelloFailedCode = 1 |
| 1386 | ) |
| 1387 | |
| 1388 | var OfpHelloFailedCode_name = map[int32]string{ |
| 1389 | 0: "OFPHFC_INCOMPATIBLE", |
| 1390 | 1: "OFPHFC_EPERM", |
| 1391 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1392 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1393 | var OfpHelloFailedCode_value = map[string]int32{ |
| 1394 | "OFPHFC_INCOMPATIBLE": 0, |
| 1395 | "OFPHFC_EPERM": 1, |
| 1396 | } |
| 1397 | |
| 1398 | func (x OfpHelloFailedCode) String() string { |
| 1399 | return proto.EnumName(OfpHelloFailedCode_name, int32(x)) |
| 1400 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1401 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1402 | func (OfpHelloFailedCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1403 | return fileDescriptor_08e3a4e375aeddc7, []int{31} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1404 | } |
| 1405 | |
| 1406 | // ofp_error_msg 'code' values for OFPET_BAD_REQUEST. 'data' contains at least |
| 1407 | // the first 64 bytes of the failed request. |
| 1408 | type OfpBadRequestCode int32 |
| 1409 | |
| 1410 | const ( |
| 1411 | OfpBadRequestCode_OFPBRC_BAD_VERSION OfpBadRequestCode = 0 |
| 1412 | OfpBadRequestCode_OFPBRC_BAD_TYPE OfpBadRequestCode = 1 |
| 1413 | OfpBadRequestCode_OFPBRC_BAD_MULTIPART OfpBadRequestCode = 2 |
| 1414 | OfpBadRequestCode_OFPBRC_BAD_EXPERIMENTER OfpBadRequestCode = 3 |
| 1415 | OfpBadRequestCode_OFPBRC_BAD_EXP_TYPE OfpBadRequestCode = 4 |
| 1416 | OfpBadRequestCode_OFPBRC_EPERM OfpBadRequestCode = 5 |
| 1417 | OfpBadRequestCode_OFPBRC_BAD_LEN OfpBadRequestCode = 6 |
| 1418 | OfpBadRequestCode_OFPBRC_BUFFER_EMPTY OfpBadRequestCode = 7 |
| 1419 | OfpBadRequestCode_OFPBRC_BUFFER_UNKNOWN OfpBadRequestCode = 8 |
| 1420 | OfpBadRequestCode_OFPBRC_BAD_TABLE_ID OfpBadRequestCode = 9 |
| 1421 | OfpBadRequestCode_OFPBRC_IS_SLAVE OfpBadRequestCode = 10 |
| 1422 | OfpBadRequestCode_OFPBRC_BAD_PORT OfpBadRequestCode = 11 |
| 1423 | OfpBadRequestCode_OFPBRC_BAD_PACKET OfpBadRequestCode = 12 |
| 1424 | OfpBadRequestCode_OFPBRC_MULTIPART_BUFFER_OVERFLOW OfpBadRequestCode = 13 |
| 1425 | ) |
| 1426 | |
| 1427 | var OfpBadRequestCode_name = map[int32]string{ |
| 1428 | 0: "OFPBRC_BAD_VERSION", |
| 1429 | 1: "OFPBRC_BAD_TYPE", |
| 1430 | 2: "OFPBRC_BAD_MULTIPART", |
| 1431 | 3: "OFPBRC_BAD_EXPERIMENTER", |
| 1432 | 4: "OFPBRC_BAD_EXP_TYPE", |
| 1433 | 5: "OFPBRC_EPERM", |
| 1434 | 6: "OFPBRC_BAD_LEN", |
| 1435 | 7: "OFPBRC_BUFFER_EMPTY", |
| 1436 | 8: "OFPBRC_BUFFER_UNKNOWN", |
| 1437 | 9: "OFPBRC_BAD_TABLE_ID", |
| 1438 | 10: "OFPBRC_IS_SLAVE", |
| 1439 | 11: "OFPBRC_BAD_PORT", |
| 1440 | 12: "OFPBRC_BAD_PACKET", |
| 1441 | 13: "OFPBRC_MULTIPART_BUFFER_OVERFLOW", |
| 1442 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1443 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1444 | var OfpBadRequestCode_value = map[string]int32{ |
| 1445 | "OFPBRC_BAD_VERSION": 0, |
| 1446 | "OFPBRC_BAD_TYPE": 1, |
| 1447 | "OFPBRC_BAD_MULTIPART": 2, |
| 1448 | "OFPBRC_BAD_EXPERIMENTER": 3, |
| 1449 | "OFPBRC_BAD_EXP_TYPE": 4, |
| 1450 | "OFPBRC_EPERM": 5, |
| 1451 | "OFPBRC_BAD_LEN": 6, |
| 1452 | "OFPBRC_BUFFER_EMPTY": 7, |
| 1453 | "OFPBRC_BUFFER_UNKNOWN": 8, |
| 1454 | "OFPBRC_BAD_TABLE_ID": 9, |
| 1455 | "OFPBRC_IS_SLAVE": 10, |
| 1456 | "OFPBRC_BAD_PORT": 11, |
| 1457 | "OFPBRC_BAD_PACKET": 12, |
| 1458 | "OFPBRC_MULTIPART_BUFFER_OVERFLOW": 13, |
| 1459 | } |
| 1460 | |
| 1461 | func (x OfpBadRequestCode) String() string { |
| 1462 | return proto.EnumName(OfpBadRequestCode_name, int32(x)) |
| 1463 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1464 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1465 | func (OfpBadRequestCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1466 | return fileDescriptor_08e3a4e375aeddc7, []int{32} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1467 | } |
| 1468 | |
| 1469 | // ofp_error_msg 'code' values for OFPET_BAD_ACTION. 'data' contains at least |
| 1470 | // the first 64 bytes of the failed request. |
| 1471 | type OfpBadActionCode int32 |
| 1472 | |
| 1473 | const ( |
| 1474 | OfpBadActionCode_OFPBAC_BAD_TYPE OfpBadActionCode = 0 |
| 1475 | OfpBadActionCode_OFPBAC_BAD_LEN OfpBadActionCode = 1 |
| 1476 | OfpBadActionCode_OFPBAC_BAD_EXPERIMENTER OfpBadActionCode = 2 |
| 1477 | OfpBadActionCode_OFPBAC_BAD_EXP_TYPE OfpBadActionCode = 3 |
| 1478 | OfpBadActionCode_OFPBAC_BAD_OUT_PORT OfpBadActionCode = 4 |
| 1479 | OfpBadActionCode_OFPBAC_BAD_ARGUMENT OfpBadActionCode = 5 |
| 1480 | OfpBadActionCode_OFPBAC_EPERM OfpBadActionCode = 6 |
| 1481 | OfpBadActionCode_OFPBAC_TOO_MANY OfpBadActionCode = 7 |
| 1482 | OfpBadActionCode_OFPBAC_BAD_QUEUE OfpBadActionCode = 8 |
| 1483 | OfpBadActionCode_OFPBAC_BAD_OUT_GROUP OfpBadActionCode = 9 |
| 1484 | OfpBadActionCode_OFPBAC_MATCH_INCONSISTENT OfpBadActionCode = 10 |
| 1485 | OfpBadActionCode_OFPBAC_UNSUPPORTED_ORDER OfpBadActionCode = 11 |
| 1486 | OfpBadActionCode_OFPBAC_BAD_TAG OfpBadActionCode = 12 |
| 1487 | OfpBadActionCode_OFPBAC_BAD_SET_TYPE OfpBadActionCode = 13 |
| 1488 | OfpBadActionCode_OFPBAC_BAD_SET_LEN OfpBadActionCode = 14 |
| 1489 | OfpBadActionCode_OFPBAC_BAD_SET_ARGUMENT OfpBadActionCode = 15 |
| 1490 | ) |
| 1491 | |
| 1492 | var OfpBadActionCode_name = map[int32]string{ |
| 1493 | 0: "OFPBAC_BAD_TYPE", |
| 1494 | 1: "OFPBAC_BAD_LEN", |
| 1495 | 2: "OFPBAC_BAD_EXPERIMENTER", |
| 1496 | 3: "OFPBAC_BAD_EXP_TYPE", |
| 1497 | 4: "OFPBAC_BAD_OUT_PORT", |
| 1498 | 5: "OFPBAC_BAD_ARGUMENT", |
| 1499 | 6: "OFPBAC_EPERM", |
| 1500 | 7: "OFPBAC_TOO_MANY", |
| 1501 | 8: "OFPBAC_BAD_QUEUE", |
| 1502 | 9: "OFPBAC_BAD_OUT_GROUP", |
| 1503 | 10: "OFPBAC_MATCH_INCONSISTENT", |
| 1504 | 11: "OFPBAC_UNSUPPORTED_ORDER", |
| 1505 | 12: "OFPBAC_BAD_TAG", |
| 1506 | 13: "OFPBAC_BAD_SET_TYPE", |
| 1507 | 14: "OFPBAC_BAD_SET_LEN", |
| 1508 | 15: "OFPBAC_BAD_SET_ARGUMENT", |
| 1509 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1510 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1511 | var OfpBadActionCode_value = map[string]int32{ |
| 1512 | "OFPBAC_BAD_TYPE": 0, |
| 1513 | "OFPBAC_BAD_LEN": 1, |
| 1514 | "OFPBAC_BAD_EXPERIMENTER": 2, |
| 1515 | "OFPBAC_BAD_EXP_TYPE": 3, |
| 1516 | "OFPBAC_BAD_OUT_PORT": 4, |
| 1517 | "OFPBAC_BAD_ARGUMENT": 5, |
| 1518 | "OFPBAC_EPERM": 6, |
| 1519 | "OFPBAC_TOO_MANY": 7, |
| 1520 | "OFPBAC_BAD_QUEUE": 8, |
| 1521 | "OFPBAC_BAD_OUT_GROUP": 9, |
| 1522 | "OFPBAC_MATCH_INCONSISTENT": 10, |
| 1523 | "OFPBAC_UNSUPPORTED_ORDER": 11, |
| 1524 | "OFPBAC_BAD_TAG": 12, |
| 1525 | "OFPBAC_BAD_SET_TYPE": 13, |
| 1526 | "OFPBAC_BAD_SET_LEN": 14, |
| 1527 | "OFPBAC_BAD_SET_ARGUMENT": 15, |
| 1528 | } |
| 1529 | |
| 1530 | func (x OfpBadActionCode) String() string { |
| 1531 | return proto.EnumName(OfpBadActionCode_name, int32(x)) |
| 1532 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1533 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1534 | func (OfpBadActionCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1535 | return fileDescriptor_08e3a4e375aeddc7, []int{33} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1536 | } |
| 1537 | |
| 1538 | // ofp_error_msg 'code' values for OFPET_BAD_INSTRUCTION. 'data' contains at |
| 1539 | // least the first 64 bytes of the failed request. |
| 1540 | type OfpBadInstructionCode int32 |
| 1541 | |
| 1542 | const ( |
| 1543 | OfpBadInstructionCode_OFPBIC_UNKNOWN_INST OfpBadInstructionCode = 0 |
| 1544 | OfpBadInstructionCode_OFPBIC_UNSUP_INST OfpBadInstructionCode = 1 |
| 1545 | OfpBadInstructionCode_OFPBIC_BAD_TABLE_ID OfpBadInstructionCode = 2 |
| 1546 | OfpBadInstructionCode_OFPBIC_UNSUP_METADATA OfpBadInstructionCode = 3 |
| 1547 | OfpBadInstructionCode_OFPBIC_UNSUP_METADATA_MASK OfpBadInstructionCode = 4 |
| 1548 | OfpBadInstructionCode_OFPBIC_BAD_EXPERIMENTER OfpBadInstructionCode = 5 |
| 1549 | OfpBadInstructionCode_OFPBIC_BAD_EXP_TYPE OfpBadInstructionCode = 6 |
| 1550 | OfpBadInstructionCode_OFPBIC_BAD_LEN OfpBadInstructionCode = 7 |
| 1551 | OfpBadInstructionCode_OFPBIC_EPERM OfpBadInstructionCode = 8 |
| 1552 | ) |
| 1553 | |
| 1554 | var OfpBadInstructionCode_name = map[int32]string{ |
| 1555 | 0: "OFPBIC_UNKNOWN_INST", |
| 1556 | 1: "OFPBIC_UNSUP_INST", |
| 1557 | 2: "OFPBIC_BAD_TABLE_ID", |
| 1558 | 3: "OFPBIC_UNSUP_METADATA", |
| 1559 | 4: "OFPBIC_UNSUP_METADATA_MASK", |
| 1560 | 5: "OFPBIC_BAD_EXPERIMENTER", |
| 1561 | 6: "OFPBIC_BAD_EXP_TYPE", |
| 1562 | 7: "OFPBIC_BAD_LEN", |
| 1563 | 8: "OFPBIC_EPERM", |
| 1564 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1565 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1566 | var OfpBadInstructionCode_value = map[string]int32{ |
| 1567 | "OFPBIC_UNKNOWN_INST": 0, |
| 1568 | "OFPBIC_UNSUP_INST": 1, |
| 1569 | "OFPBIC_BAD_TABLE_ID": 2, |
| 1570 | "OFPBIC_UNSUP_METADATA": 3, |
| 1571 | "OFPBIC_UNSUP_METADATA_MASK": 4, |
| 1572 | "OFPBIC_BAD_EXPERIMENTER": 5, |
| 1573 | "OFPBIC_BAD_EXP_TYPE": 6, |
| 1574 | "OFPBIC_BAD_LEN": 7, |
| 1575 | "OFPBIC_EPERM": 8, |
| 1576 | } |
| 1577 | |
| 1578 | func (x OfpBadInstructionCode) String() string { |
| 1579 | return proto.EnumName(OfpBadInstructionCode_name, int32(x)) |
| 1580 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1581 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1582 | func (OfpBadInstructionCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1583 | return fileDescriptor_08e3a4e375aeddc7, []int{34} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1584 | } |
| 1585 | |
| 1586 | // ofp_error_msg 'code' values for OFPET_BAD_MATCH. 'data' contains at least |
| 1587 | // the first 64 bytes of the failed request. |
| 1588 | type OfpBadMatchCode int32 |
| 1589 | |
| 1590 | const ( |
| 1591 | OfpBadMatchCode_OFPBMC_BAD_TYPE OfpBadMatchCode = 0 |
| 1592 | OfpBadMatchCode_OFPBMC_BAD_LEN OfpBadMatchCode = 1 |
| 1593 | OfpBadMatchCode_OFPBMC_BAD_TAG OfpBadMatchCode = 2 |
| 1594 | OfpBadMatchCode_OFPBMC_BAD_DL_ADDR_MASK OfpBadMatchCode = 3 |
| 1595 | OfpBadMatchCode_OFPBMC_BAD_NW_ADDR_MASK OfpBadMatchCode = 4 |
| 1596 | OfpBadMatchCode_OFPBMC_BAD_WILDCARDS OfpBadMatchCode = 5 |
| 1597 | OfpBadMatchCode_OFPBMC_BAD_FIELD OfpBadMatchCode = 6 |
| 1598 | OfpBadMatchCode_OFPBMC_BAD_VALUE OfpBadMatchCode = 7 |
| 1599 | OfpBadMatchCode_OFPBMC_BAD_MASK OfpBadMatchCode = 8 |
| 1600 | OfpBadMatchCode_OFPBMC_BAD_PREREQ OfpBadMatchCode = 9 |
| 1601 | OfpBadMatchCode_OFPBMC_DUP_FIELD OfpBadMatchCode = 10 |
| 1602 | OfpBadMatchCode_OFPBMC_EPERM OfpBadMatchCode = 11 |
| 1603 | ) |
| 1604 | |
| 1605 | var OfpBadMatchCode_name = map[int32]string{ |
| 1606 | 0: "OFPBMC_BAD_TYPE", |
| 1607 | 1: "OFPBMC_BAD_LEN", |
| 1608 | 2: "OFPBMC_BAD_TAG", |
| 1609 | 3: "OFPBMC_BAD_DL_ADDR_MASK", |
| 1610 | 4: "OFPBMC_BAD_NW_ADDR_MASK", |
| 1611 | 5: "OFPBMC_BAD_WILDCARDS", |
| 1612 | 6: "OFPBMC_BAD_FIELD", |
| 1613 | 7: "OFPBMC_BAD_VALUE", |
| 1614 | 8: "OFPBMC_BAD_MASK", |
| 1615 | 9: "OFPBMC_BAD_PREREQ", |
| 1616 | 10: "OFPBMC_DUP_FIELD", |
| 1617 | 11: "OFPBMC_EPERM", |
| 1618 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1619 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1620 | var OfpBadMatchCode_value = map[string]int32{ |
| 1621 | "OFPBMC_BAD_TYPE": 0, |
| 1622 | "OFPBMC_BAD_LEN": 1, |
| 1623 | "OFPBMC_BAD_TAG": 2, |
| 1624 | "OFPBMC_BAD_DL_ADDR_MASK": 3, |
| 1625 | "OFPBMC_BAD_NW_ADDR_MASK": 4, |
| 1626 | "OFPBMC_BAD_WILDCARDS": 5, |
| 1627 | "OFPBMC_BAD_FIELD": 6, |
| 1628 | "OFPBMC_BAD_VALUE": 7, |
| 1629 | "OFPBMC_BAD_MASK": 8, |
| 1630 | "OFPBMC_BAD_PREREQ": 9, |
| 1631 | "OFPBMC_DUP_FIELD": 10, |
| 1632 | "OFPBMC_EPERM": 11, |
| 1633 | } |
| 1634 | |
| 1635 | func (x OfpBadMatchCode) String() string { |
| 1636 | return proto.EnumName(OfpBadMatchCode_name, int32(x)) |
| 1637 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1638 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1639 | func (OfpBadMatchCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1640 | return fileDescriptor_08e3a4e375aeddc7, []int{35} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1641 | } |
| 1642 | |
| 1643 | // ofp_error_msg 'code' values for OFPET_FLOW_MOD_FAILED. 'data' contains |
| 1644 | // at least the first 64 bytes of the failed request. |
| 1645 | type OfpFlowModFailedCode int32 |
| 1646 | |
| 1647 | const ( |
| 1648 | OfpFlowModFailedCode_OFPFMFC_UNKNOWN OfpFlowModFailedCode = 0 |
| 1649 | OfpFlowModFailedCode_OFPFMFC_TABLE_FULL OfpFlowModFailedCode = 1 |
| 1650 | OfpFlowModFailedCode_OFPFMFC_BAD_TABLE_ID OfpFlowModFailedCode = 2 |
| 1651 | OfpFlowModFailedCode_OFPFMFC_OVERLAP OfpFlowModFailedCode = 3 |
| 1652 | OfpFlowModFailedCode_OFPFMFC_EPERM OfpFlowModFailedCode = 4 |
| 1653 | OfpFlowModFailedCode_OFPFMFC_BAD_TIMEOUT OfpFlowModFailedCode = 5 |
| 1654 | OfpFlowModFailedCode_OFPFMFC_BAD_COMMAND OfpFlowModFailedCode = 6 |
| 1655 | OfpFlowModFailedCode_OFPFMFC_BAD_FLAGS OfpFlowModFailedCode = 7 |
| 1656 | ) |
| 1657 | |
| 1658 | var OfpFlowModFailedCode_name = map[int32]string{ |
| 1659 | 0: "OFPFMFC_UNKNOWN", |
| 1660 | 1: "OFPFMFC_TABLE_FULL", |
| 1661 | 2: "OFPFMFC_BAD_TABLE_ID", |
| 1662 | 3: "OFPFMFC_OVERLAP", |
| 1663 | 4: "OFPFMFC_EPERM", |
| 1664 | 5: "OFPFMFC_BAD_TIMEOUT", |
| 1665 | 6: "OFPFMFC_BAD_COMMAND", |
| 1666 | 7: "OFPFMFC_BAD_FLAGS", |
| 1667 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1668 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1669 | var OfpFlowModFailedCode_value = map[string]int32{ |
| 1670 | "OFPFMFC_UNKNOWN": 0, |
| 1671 | "OFPFMFC_TABLE_FULL": 1, |
| 1672 | "OFPFMFC_BAD_TABLE_ID": 2, |
| 1673 | "OFPFMFC_OVERLAP": 3, |
| 1674 | "OFPFMFC_EPERM": 4, |
| 1675 | "OFPFMFC_BAD_TIMEOUT": 5, |
| 1676 | "OFPFMFC_BAD_COMMAND": 6, |
| 1677 | "OFPFMFC_BAD_FLAGS": 7, |
| 1678 | } |
| 1679 | |
| 1680 | func (x OfpFlowModFailedCode) String() string { |
| 1681 | return proto.EnumName(OfpFlowModFailedCode_name, int32(x)) |
| 1682 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1683 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1684 | func (OfpFlowModFailedCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1685 | return fileDescriptor_08e3a4e375aeddc7, []int{36} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1686 | } |
| 1687 | |
| 1688 | // ofp_error_msg 'code' values for OFPET_GROUP_MOD_FAILED. 'data' contains |
| 1689 | // at least the first 64 bytes of the failed request. |
| 1690 | type OfpGroupModFailedCode int32 |
| 1691 | |
| 1692 | const ( |
| 1693 | OfpGroupModFailedCode_OFPGMFC_GROUP_EXISTS OfpGroupModFailedCode = 0 |
| 1694 | OfpGroupModFailedCode_OFPGMFC_INVALID_GROUP OfpGroupModFailedCode = 1 |
| 1695 | OfpGroupModFailedCode_OFPGMFC_WEIGHT_UNSUPPORTED OfpGroupModFailedCode = 2 |
| 1696 | OfpGroupModFailedCode_OFPGMFC_OUT_OF_GROUPS OfpGroupModFailedCode = 3 |
| 1697 | OfpGroupModFailedCode_OFPGMFC_OUT_OF_BUCKETS OfpGroupModFailedCode = 4 |
| 1698 | OfpGroupModFailedCode_OFPGMFC_CHAINING_UNSUPPORTED OfpGroupModFailedCode = 5 |
| 1699 | OfpGroupModFailedCode_OFPGMFC_WATCH_UNSUPPORTED OfpGroupModFailedCode = 6 |
| 1700 | OfpGroupModFailedCode_OFPGMFC_LOOP OfpGroupModFailedCode = 7 |
| 1701 | OfpGroupModFailedCode_OFPGMFC_UNKNOWN_GROUP OfpGroupModFailedCode = 8 |
| 1702 | OfpGroupModFailedCode_OFPGMFC_CHAINED_GROUP OfpGroupModFailedCode = 9 |
| 1703 | OfpGroupModFailedCode_OFPGMFC_BAD_TYPE OfpGroupModFailedCode = 10 |
| 1704 | OfpGroupModFailedCode_OFPGMFC_BAD_COMMAND OfpGroupModFailedCode = 11 |
| 1705 | OfpGroupModFailedCode_OFPGMFC_BAD_BUCKET OfpGroupModFailedCode = 12 |
| 1706 | OfpGroupModFailedCode_OFPGMFC_BAD_WATCH OfpGroupModFailedCode = 13 |
| 1707 | OfpGroupModFailedCode_OFPGMFC_EPERM OfpGroupModFailedCode = 14 |
| 1708 | ) |
| 1709 | |
| 1710 | var OfpGroupModFailedCode_name = map[int32]string{ |
| 1711 | 0: "OFPGMFC_GROUP_EXISTS", |
| 1712 | 1: "OFPGMFC_INVALID_GROUP", |
| 1713 | 2: "OFPGMFC_WEIGHT_UNSUPPORTED", |
| 1714 | 3: "OFPGMFC_OUT_OF_GROUPS", |
| 1715 | 4: "OFPGMFC_OUT_OF_BUCKETS", |
| 1716 | 5: "OFPGMFC_CHAINING_UNSUPPORTED", |
| 1717 | 6: "OFPGMFC_WATCH_UNSUPPORTED", |
| 1718 | 7: "OFPGMFC_LOOP", |
| 1719 | 8: "OFPGMFC_UNKNOWN_GROUP", |
| 1720 | 9: "OFPGMFC_CHAINED_GROUP", |
| 1721 | 10: "OFPGMFC_BAD_TYPE", |
| 1722 | 11: "OFPGMFC_BAD_COMMAND", |
| 1723 | 12: "OFPGMFC_BAD_BUCKET", |
| 1724 | 13: "OFPGMFC_BAD_WATCH", |
| 1725 | 14: "OFPGMFC_EPERM", |
| 1726 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1727 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1728 | var OfpGroupModFailedCode_value = map[string]int32{ |
| 1729 | "OFPGMFC_GROUP_EXISTS": 0, |
| 1730 | "OFPGMFC_INVALID_GROUP": 1, |
| 1731 | "OFPGMFC_WEIGHT_UNSUPPORTED": 2, |
| 1732 | "OFPGMFC_OUT_OF_GROUPS": 3, |
| 1733 | "OFPGMFC_OUT_OF_BUCKETS": 4, |
| 1734 | "OFPGMFC_CHAINING_UNSUPPORTED": 5, |
| 1735 | "OFPGMFC_WATCH_UNSUPPORTED": 6, |
| 1736 | "OFPGMFC_LOOP": 7, |
| 1737 | "OFPGMFC_UNKNOWN_GROUP": 8, |
| 1738 | "OFPGMFC_CHAINED_GROUP": 9, |
| 1739 | "OFPGMFC_BAD_TYPE": 10, |
| 1740 | "OFPGMFC_BAD_COMMAND": 11, |
| 1741 | "OFPGMFC_BAD_BUCKET": 12, |
| 1742 | "OFPGMFC_BAD_WATCH": 13, |
| 1743 | "OFPGMFC_EPERM": 14, |
| 1744 | } |
| 1745 | |
| 1746 | func (x OfpGroupModFailedCode) String() string { |
| 1747 | return proto.EnumName(OfpGroupModFailedCode_name, int32(x)) |
| 1748 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1749 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1750 | func (OfpGroupModFailedCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1751 | return fileDescriptor_08e3a4e375aeddc7, []int{37} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1752 | } |
| 1753 | |
| 1754 | // ofp_error_msg 'code' values for OFPET_PORT_MOD_FAILED. 'data' contains |
| 1755 | // at least the first 64 bytes of the failed request. |
| 1756 | type OfpPortModFailedCode int32 |
| 1757 | |
| 1758 | const ( |
| 1759 | OfpPortModFailedCode_OFPPMFC_BAD_PORT OfpPortModFailedCode = 0 |
| 1760 | OfpPortModFailedCode_OFPPMFC_BAD_HW_ADDR OfpPortModFailedCode = 1 |
| 1761 | OfpPortModFailedCode_OFPPMFC_BAD_CONFIG OfpPortModFailedCode = 2 |
| 1762 | OfpPortModFailedCode_OFPPMFC_BAD_ADVERTISE OfpPortModFailedCode = 3 |
| 1763 | OfpPortModFailedCode_OFPPMFC_EPERM OfpPortModFailedCode = 4 |
| 1764 | ) |
| 1765 | |
| 1766 | var OfpPortModFailedCode_name = map[int32]string{ |
| 1767 | 0: "OFPPMFC_BAD_PORT", |
| 1768 | 1: "OFPPMFC_BAD_HW_ADDR", |
| 1769 | 2: "OFPPMFC_BAD_CONFIG", |
| 1770 | 3: "OFPPMFC_BAD_ADVERTISE", |
| 1771 | 4: "OFPPMFC_EPERM", |
| 1772 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1773 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1774 | var OfpPortModFailedCode_value = map[string]int32{ |
| 1775 | "OFPPMFC_BAD_PORT": 0, |
| 1776 | "OFPPMFC_BAD_HW_ADDR": 1, |
| 1777 | "OFPPMFC_BAD_CONFIG": 2, |
| 1778 | "OFPPMFC_BAD_ADVERTISE": 3, |
| 1779 | "OFPPMFC_EPERM": 4, |
| 1780 | } |
| 1781 | |
| 1782 | func (x OfpPortModFailedCode) String() string { |
| 1783 | return proto.EnumName(OfpPortModFailedCode_name, int32(x)) |
| 1784 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1785 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1786 | func (OfpPortModFailedCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1787 | return fileDescriptor_08e3a4e375aeddc7, []int{38} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1788 | } |
| 1789 | |
| 1790 | // ofp_error_msg 'code' values for OFPET_TABLE_MOD_FAILED. 'data' contains |
| 1791 | // at least the first 64 bytes of the failed request. |
| 1792 | type OfpTableModFailedCode int32 |
| 1793 | |
| 1794 | const ( |
| 1795 | OfpTableModFailedCode_OFPTMFC_BAD_TABLE OfpTableModFailedCode = 0 |
| 1796 | OfpTableModFailedCode_OFPTMFC_BAD_CONFIG OfpTableModFailedCode = 1 |
| 1797 | OfpTableModFailedCode_OFPTMFC_EPERM OfpTableModFailedCode = 2 |
| 1798 | ) |
| 1799 | |
| 1800 | var OfpTableModFailedCode_name = map[int32]string{ |
| 1801 | 0: "OFPTMFC_BAD_TABLE", |
| 1802 | 1: "OFPTMFC_BAD_CONFIG", |
| 1803 | 2: "OFPTMFC_EPERM", |
| 1804 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1805 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1806 | var OfpTableModFailedCode_value = map[string]int32{ |
| 1807 | "OFPTMFC_BAD_TABLE": 0, |
| 1808 | "OFPTMFC_BAD_CONFIG": 1, |
| 1809 | "OFPTMFC_EPERM": 2, |
| 1810 | } |
| 1811 | |
| 1812 | func (x OfpTableModFailedCode) String() string { |
| 1813 | return proto.EnumName(OfpTableModFailedCode_name, int32(x)) |
| 1814 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1815 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1816 | func (OfpTableModFailedCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1817 | return fileDescriptor_08e3a4e375aeddc7, []int{39} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1818 | } |
| 1819 | |
| 1820 | // ofp_error msg 'code' values for OFPET_QUEUE_OP_FAILED. 'data' contains |
| 1821 | // at least the first 64 bytes of the failed request |
| 1822 | type OfpQueueOpFailedCode int32 |
| 1823 | |
| 1824 | const ( |
| 1825 | OfpQueueOpFailedCode_OFPQOFC_BAD_PORT OfpQueueOpFailedCode = 0 |
| 1826 | OfpQueueOpFailedCode_OFPQOFC_BAD_QUEUE OfpQueueOpFailedCode = 1 |
| 1827 | OfpQueueOpFailedCode_OFPQOFC_EPERM OfpQueueOpFailedCode = 2 |
| 1828 | ) |
| 1829 | |
| 1830 | var OfpQueueOpFailedCode_name = map[int32]string{ |
| 1831 | 0: "OFPQOFC_BAD_PORT", |
| 1832 | 1: "OFPQOFC_BAD_QUEUE", |
| 1833 | 2: "OFPQOFC_EPERM", |
| 1834 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1835 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1836 | var OfpQueueOpFailedCode_value = map[string]int32{ |
| 1837 | "OFPQOFC_BAD_PORT": 0, |
| 1838 | "OFPQOFC_BAD_QUEUE": 1, |
| 1839 | "OFPQOFC_EPERM": 2, |
| 1840 | } |
| 1841 | |
| 1842 | func (x OfpQueueOpFailedCode) String() string { |
| 1843 | return proto.EnumName(OfpQueueOpFailedCode_name, int32(x)) |
| 1844 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1845 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1846 | func (OfpQueueOpFailedCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1847 | return fileDescriptor_08e3a4e375aeddc7, []int{40} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1848 | } |
| 1849 | |
| 1850 | // ofp_error_msg 'code' values for OFPET_SWITCH_CONFIG_FAILED. 'data' contains |
| 1851 | // at least the first 64 bytes of the failed request. |
| 1852 | type OfpSwitchConfigFailedCode int32 |
| 1853 | |
| 1854 | const ( |
| 1855 | OfpSwitchConfigFailedCode_OFPSCFC_BAD_FLAGS OfpSwitchConfigFailedCode = 0 |
| 1856 | OfpSwitchConfigFailedCode_OFPSCFC_BAD_LEN OfpSwitchConfigFailedCode = 1 |
| 1857 | OfpSwitchConfigFailedCode_OFPSCFC_EPERM OfpSwitchConfigFailedCode = 2 |
| 1858 | ) |
| 1859 | |
| 1860 | var OfpSwitchConfigFailedCode_name = map[int32]string{ |
| 1861 | 0: "OFPSCFC_BAD_FLAGS", |
| 1862 | 1: "OFPSCFC_BAD_LEN", |
| 1863 | 2: "OFPSCFC_EPERM", |
| 1864 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1865 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1866 | var OfpSwitchConfigFailedCode_value = map[string]int32{ |
| 1867 | "OFPSCFC_BAD_FLAGS": 0, |
| 1868 | "OFPSCFC_BAD_LEN": 1, |
| 1869 | "OFPSCFC_EPERM": 2, |
| 1870 | } |
| 1871 | |
| 1872 | func (x OfpSwitchConfigFailedCode) String() string { |
| 1873 | return proto.EnumName(OfpSwitchConfigFailedCode_name, int32(x)) |
| 1874 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1875 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1876 | func (OfpSwitchConfigFailedCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1877 | return fileDescriptor_08e3a4e375aeddc7, []int{41} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1878 | } |
| 1879 | |
| 1880 | // ofp_error_msg 'code' values for OFPET_ROLE_REQUEST_FAILED. 'data' contains |
| 1881 | // at least the first 64 bytes of the failed request. |
| 1882 | type OfpRoleRequestFailedCode int32 |
| 1883 | |
| 1884 | const ( |
| 1885 | OfpRoleRequestFailedCode_OFPRRFC_STALE OfpRoleRequestFailedCode = 0 |
| 1886 | OfpRoleRequestFailedCode_OFPRRFC_UNSUP OfpRoleRequestFailedCode = 1 |
| 1887 | OfpRoleRequestFailedCode_OFPRRFC_BAD_ROLE OfpRoleRequestFailedCode = 2 |
| 1888 | ) |
| 1889 | |
| 1890 | var OfpRoleRequestFailedCode_name = map[int32]string{ |
| 1891 | 0: "OFPRRFC_STALE", |
| 1892 | 1: "OFPRRFC_UNSUP", |
| 1893 | 2: "OFPRRFC_BAD_ROLE", |
| 1894 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1895 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1896 | var OfpRoleRequestFailedCode_value = map[string]int32{ |
| 1897 | "OFPRRFC_STALE": 0, |
| 1898 | "OFPRRFC_UNSUP": 1, |
| 1899 | "OFPRRFC_BAD_ROLE": 2, |
| 1900 | } |
| 1901 | |
| 1902 | func (x OfpRoleRequestFailedCode) String() string { |
| 1903 | return proto.EnumName(OfpRoleRequestFailedCode_name, int32(x)) |
| 1904 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1905 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1906 | func (OfpRoleRequestFailedCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1907 | return fileDescriptor_08e3a4e375aeddc7, []int{42} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1908 | } |
| 1909 | |
| 1910 | // ofp_error_msg 'code' values for OFPET_METER_MOD_FAILED. 'data' contains |
| 1911 | // at least the first 64 bytes of the failed request. |
| 1912 | type OfpMeterModFailedCode int32 |
| 1913 | |
| 1914 | const ( |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 1915 | OfpMeterModFailedCode_OFPMMFC_UNKNOWN OfpMeterModFailedCode = 0 |
| 1916 | OfpMeterModFailedCode_OFPMMFC_METER_EXISTS OfpMeterModFailedCode = 1 |
| 1917 | OfpMeterModFailedCode_OFPMMFC_INVALID_METER OfpMeterModFailedCode = 2 |
| 1918 | OfpMeterModFailedCode_OFPMMFC_UNKNOWN_METER OfpMeterModFailedCode = 3 |
| 1919 | OfpMeterModFailedCode_OFPMMFC_BAD_COMMAND OfpMeterModFailedCode = 4 |
| 1920 | OfpMeterModFailedCode_OFPMMFC_BAD_FLAGS OfpMeterModFailedCode = 5 |
| 1921 | OfpMeterModFailedCode_OFPMMFC_BAD_RATE OfpMeterModFailedCode = 6 |
| 1922 | OfpMeterModFailedCode_OFPMMFC_BAD_BURST OfpMeterModFailedCode = 7 |
| 1923 | OfpMeterModFailedCode_OFPMMFC_BAD_BAND OfpMeterModFailedCode = 8 |
| 1924 | OfpMeterModFailedCode_OFPMMFC_BAD_BAND_DETAIL OfpMeterModFailedCode = 9 |
| 1925 | OfpMeterModFailedCode_OFPMMFC_OUT_OF_METERS OfpMeterModFailedCode = 10 |
| 1926 | OfpMeterModFailedCode_OFPMMFC_OUT_OF_BANDS OfpMeterModFailedCode = 11 |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1927 | ) |
| 1928 | |
| 1929 | var OfpMeterModFailedCode_name = map[int32]string{ |
| 1930 | 0: "OFPMMFC_UNKNOWN", |
| 1931 | 1: "OFPMMFC_METER_EXISTS", |
| 1932 | 2: "OFPMMFC_INVALID_METER", |
| 1933 | 3: "OFPMMFC_UNKNOWN_METER", |
| 1934 | 4: "OFPMMFC_BAD_COMMAND", |
| 1935 | 5: "OFPMMFC_BAD_FLAGS", |
| 1936 | 6: "OFPMMFC_BAD_RATE", |
| 1937 | 7: "OFPMMFC_BAD_BURST", |
| 1938 | 8: "OFPMMFC_BAD_BAND", |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 1939 | 9: "OFPMMFC_BAD_BAND_DETAIL", |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1940 | 10: "OFPMMFC_OUT_OF_METERS", |
| 1941 | 11: "OFPMMFC_OUT_OF_BANDS", |
| 1942 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1943 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1944 | var OfpMeterModFailedCode_value = map[string]int32{ |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 1945 | "OFPMMFC_UNKNOWN": 0, |
| 1946 | "OFPMMFC_METER_EXISTS": 1, |
| 1947 | "OFPMMFC_INVALID_METER": 2, |
| 1948 | "OFPMMFC_UNKNOWN_METER": 3, |
| 1949 | "OFPMMFC_BAD_COMMAND": 4, |
| 1950 | "OFPMMFC_BAD_FLAGS": 5, |
| 1951 | "OFPMMFC_BAD_RATE": 6, |
| 1952 | "OFPMMFC_BAD_BURST": 7, |
| 1953 | "OFPMMFC_BAD_BAND": 8, |
| 1954 | "OFPMMFC_BAD_BAND_DETAIL": 9, |
| 1955 | "OFPMMFC_OUT_OF_METERS": 10, |
| 1956 | "OFPMMFC_OUT_OF_BANDS": 11, |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1957 | } |
| 1958 | |
| 1959 | func (x OfpMeterModFailedCode) String() string { |
| 1960 | return proto.EnumName(OfpMeterModFailedCode_name, int32(x)) |
| 1961 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1962 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1963 | func (OfpMeterModFailedCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1964 | return fileDescriptor_08e3a4e375aeddc7, []int{43} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1965 | } |
| 1966 | |
| 1967 | // ofp_error_msg 'code' values for OFPET_TABLE_FEATURES_FAILED. 'data' contains |
| 1968 | // at least the first 64 bytes of the failed request. |
| 1969 | type OfpTableFeaturesFailedCode int32 |
| 1970 | |
| 1971 | const ( |
| 1972 | OfpTableFeaturesFailedCode_OFPTFFC_BAD_TABLE OfpTableFeaturesFailedCode = 0 |
| 1973 | OfpTableFeaturesFailedCode_OFPTFFC_BAD_METADATA OfpTableFeaturesFailedCode = 1 |
| 1974 | OfpTableFeaturesFailedCode_OFPTFFC_BAD_TYPE OfpTableFeaturesFailedCode = 2 |
| 1975 | OfpTableFeaturesFailedCode_OFPTFFC_BAD_LEN OfpTableFeaturesFailedCode = 3 |
| 1976 | OfpTableFeaturesFailedCode_OFPTFFC_BAD_ARGUMENT OfpTableFeaturesFailedCode = 4 |
| 1977 | OfpTableFeaturesFailedCode_OFPTFFC_EPERM OfpTableFeaturesFailedCode = 5 |
| 1978 | ) |
| 1979 | |
| 1980 | var OfpTableFeaturesFailedCode_name = map[int32]string{ |
| 1981 | 0: "OFPTFFC_BAD_TABLE", |
| 1982 | 1: "OFPTFFC_BAD_METADATA", |
| 1983 | 2: "OFPTFFC_BAD_TYPE", |
| 1984 | 3: "OFPTFFC_BAD_LEN", |
| 1985 | 4: "OFPTFFC_BAD_ARGUMENT", |
| 1986 | 5: "OFPTFFC_EPERM", |
| 1987 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 1988 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 1989 | var OfpTableFeaturesFailedCode_value = map[string]int32{ |
| 1990 | "OFPTFFC_BAD_TABLE": 0, |
| 1991 | "OFPTFFC_BAD_METADATA": 1, |
| 1992 | "OFPTFFC_BAD_TYPE": 2, |
| 1993 | "OFPTFFC_BAD_LEN": 3, |
| 1994 | "OFPTFFC_BAD_ARGUMENT": 4, |
| 1995 | "OFPTFFC_EPERM": 5, |
| 1996 | } |
| 1997 | |
| 1998 | func (x OfpTableFeaturesFailedCode) String() string { |
| 1999 | return proto.EnumName(OfpTableFeaturesFailedCode_name, int32(x)) |
| 2000 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2001 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2002 | func (OfpTableFeaturesFailedCode) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2003 | return fileDescriptor_08e3a4e375aeddc7, []int{44} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2004 | } |
| 2005 | |
| 2006 | type OfpMultipartType int32 |
| 2007 | |
| 2008 | const ( |
| 2009 | // Description of this OpenFlow switch. |
| 2010 | // The request body is empty. |
| 2011 | // The reply body is struct ofp_desc. |
| 2012 | OfpMultipartType_OFPMP_DESC OfpMultipartType = 0 |
| 2013 | // Individual flow statistics. |
| 2014 | // The request body is struct ofp_flow_stats_request. |
| 2015 | // The reply body is an array of struct ofp_flow_stats. |
| 2016 | OfpMultipartType_OFPMP_FLOW OfpMultipartType = 1 |
| 2017 | // Aggregate flow statistics. |
| 2018 | // The request body is struct ofp_aggregate_stats_request. |
| 2019 | // The reply body is struct ofp_aggregate_stats_reply. |
| 2020 | OfpMultipartType_OFPMP_AGGREGATE OfpMultipartType = 2 |
| 2021 | // Flow table statistics. |
| 2022 | // The request body is empty. |
| 2023 | // The reply body is an array of struct ofp_table_stats. |
| 2024 | OfpMultipartType_OFPMP_TABLE OfpMultipartType = 3 |
| 2025 | // Port statistics. |
| 2026 | // The request body is struct ofp_port_stats_request. |
| 2027 | // The reply body is an array of struct ofp_port_stats. |
| 2028 | OfpMultipartType_OFPMP_PORT_STATS OfpMultipartType = 4 |
| 2029 | // Queue statistics for a port |
| 2030 | // The request body is struct ofp_queue_stats_request. |
| 2031 | // The reply body is an array of struct ofp_queue_stats |
| 2032 | OfpMultipartType_OFPMP_QUEUE OfpMultipartType = 5 |
| 2033 | // Group counter statistics. |
| 2034 | // The request body is struct ofp_group_stats_request. |
| 2035 | // The reply is an array of struct ofp_group_stats. |
| 2036 | OfpMultipartType_OFPMP_GROUP OfpMultipartType = 6 |
| 2037 | // Group description. |
| 2038 | // The request body is empty. |
| 2039 | // The reply body is an array of struct ofp_group_desc. |
| 2040 | OfpMultipartType_OFPMP_GROUP_DESC OfpMultipartType = 7 |
| 2041 | // Group features. |
| 2042 | // The request body is empty. |
| 2043 | // The reply body is struct ofp_group_features. |
| 2044 | OfpMultipartType_OFPMP_GROUP_FEATURES OfpMultipartType = 8 |
| 2045 | // Meter statistics. |
| 2046 | // The request body is struct ofp_meter_multipart_requests. |
| 2047 | // The reply body is an array of struct ofp_meter_stats. |
| 2048 | OfpMultipartType_OFPMP_METER OfpMultipartType = 9 |
| 2049 | // Meter configuration. |
| 2050 | // The request body is struct ofp_meter_multipart_requests. |
| 2051 | // The reply body is an array of struct ofp_meter_config. |
| 2052 | OfpMultipartType_OFPMP_METER_CONFIG OfpMultipartType = 10 |
| 2053 | // Meter features. |
| 2054 | // The request body is empty. |
| 2055 | // The reply body is struct ofp_meter_features. |
| 2056 | OfpMultipartType_OFPMP_METER_FEATURES OfpMultipartType = 11 |
| 2057 | // Table features. |
| 2058 | // The request body is either empty or contains an array of |
| 2059 | // struct ofp_table_features containing the controller's |
| 2060 | // desired view of the switch. If the switch is unable to |
| 2061 | // set the specified view an error is returned. |
| 2062 | // The reply body is an array of struct ofp_table_features. |
| 2063 | OfpMultipartType_OFPMP_TABLE_FEATURES OfpMultipartType = 12 |
| 2064 | // Port description. |
| 2065 | // The request body is empty. |
| 2066 | // The reply body is an array of struct ofp_port. |
| 2067 | OfpMultipartType_OFPMP_PORT_DESC OfpMultipartType = 13 |
| 2068 | // Experimenter extension. |
| 2069 | // The request and reply bodies begin with |
| 2070 | // struct ofp_experimenter_multipart_header. |
| 2071 | // The request and reply bodies are otherwise experimenter-defined. |
| 2072 | OfpMultipartType_OFPMP_EXPERIMENTER OfpMultipartType = 65535 |
| 2073 | ) |
| 2074 | |
| 2075 | var OfpMultipartType_name = map[int32]string{ |
| 2076 | 0: "OFPMP_DESC", |
| 2077 | 1: "OFPMP_FLOW", |
| 2078 | 2: "OFPMP_AGGREGATE", |
| 2079 | 3: "OFPMP_TABLE", |
| 2080 | 4: "OFPMP_PORT_STATS", |
| 2081 | 5: "OFPMP_QUEUE", |
| 2082 | 6: "OFPMP_GROUP", |
| 2083 | 7: "OFPMP_GROUP_DESC", |
| 2084 | 8: "OFPMP_GROUP_FEATURES", |
| 2085 | 9: "OFPMP_METER", |
| 2086 | 10: "OFPMP_METER_CONFIG", |
| 2087 | 11: "OFPMP_METER_FEATURES", |
| 2088 | 12: "OFPMP_TABLE_FEATURES", |
| 2089 | 13: "OFPMP_PORT_DESC", |
| 2090 | 65535: "OFPMP_EXPERIMENTER", |
| 2091 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2092 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2093 | var OfpMultipartType_value = map[string]int32{ |
| 2094 | "OFPMP_DESC": 0, |
| 2095 | "OFPMP_FLOW": 1, |
| 2096 | "OFPMP_AGGREGATE": 2, |
| 2097 | "OFPMP_TABLE": 3, |
| 2098 | "OFPMP_PORT_STATS": 4, |
| 2099 | "OFPMP_QUEUE": 5, |
| 2100 | "OFPMP_GROUP": 6, |
| 2101 | "OFPMP_GROUP_DESC": 7, |
| 2102 | "OFPMP_GROUP_FEATURES": 8, |
| 2103 | "OFPMP_METER": 9, |
| 2104 | "OFPMP_METER_CONFIG": 10, |
| 2105 | "OFPMP_METER_FEATURES": 11, |
| 2106 | "OFPMP_TABLE_FEATURES": 12, |
| 2107 | "OFPMP_PORT_DESC": 13, |
| 2108 | "OFPMP_EXPERIMENTER": 65535, |
| 2109 | } |
| 2110 | |
| 2111 | func (x OfpMultipartType) String() string { |
| 2112 | return proto.EnumName(OfpMultipartType_name, int32(x)) |
| 2113 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2114 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2115 | func (OfpMultipartType) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2116 | return fileDescriptor_08e3a4e375aeddc7, []int{45} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2117 | } |
| 2118 | |
| 2119 | type OfpMultipartRequestFlags int32 |
| 2120 | |
| 2121 | const ( |
| 2122 | OfpMultipartRequestFlags_OFPMPF_REQ_INVALID OfpMultipartRequestFlags = 0 |
| 2123 | OfpMultipartRequestFlags_OFPMPF_REQ_MORE OfpMultipartRequestFlags = 1 |
| 2124 | ) |
| 2125 | |
| 2126 | var OfpMultipartRequestFlags_name = map[int32]string{ |
| 2127 | 0: "OFPMPF_REQ_INVALID", |
| 2128 | 1: "OFPMPF_REQ_MORE", |
| 2129 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2130 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2131 | var OfpMultipartRequestFlags_value = map[string]int32{ |
| 2132 | "OFPMPF_REQ_INVALID": 0, |
| 2133 | "OFPMPF_REQ_MORE": 1, |
| 2134 | } |
| 2135 | |
| 2136 | func (x OfpMultipartRequestFlags) String() string { |
| 2137 | return proto.EnumName(OfpMultipartRequestFlags_name, int32(x)) |
| 2138 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2139 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2140 | func (OfpMultipartRequestFlags) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2141 | return fileDescriptor_08e3a4e375aeddc7, []int{46} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2142 | } |
| 2143 | |
| 2144 | type OfpMultipartReplyFlags int32 |
| 2145 | |
| 2146 | const ( |
| 2147 | OfpMultipartReplyFlags_OFPMPF_REPLY_INVALID OfpMultipartReplyFlags = 0 |
| 2148 | OfpMultipartReplyFlags_OFPMPF_REPLY_MORE OfpMultipartReplyFlags = 1 |
| 2149 | ) |
| 2150 | |
| 2151 | var OfpMultipartReplyFlags_name = map[int32]string{ |
| 2152 | 0: "OFPMPF_REPLY_INVALID", |
| 2153 | 1: "OFPMPF_REPLY_MORE", |
| 2154 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2155 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2156 | var OfpMultipartReplyFlags_value = map[string]int32{ |
| 2157 | "OFPMPF_REPLY_INVALID": 0, |
| 2158 | "OFPMPF_REPLY_MORE": 1, |
| 2159 | } |
| 2160 | |
| 2161 | func (x OfpMultipartReplyFlags) String() string { |
| 2162 | return proto.EnumName(OfpMultipartReplyFlags_name, int32(x)) |
| 2163 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2164 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2165 | func (OfpMultipartReplyFlags) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2166 | return fileDescriptor_08e3a4e375aeddc7, []int{47} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2167 | } |
| 2168 | |
| 2169 | // Table Feature property types. |
| 2170 | // Low order bit cleared indicates a property for a regular Flow Entry. |
| 2171 | // Low order bit set indicates a property for the Table-Miss Flow Entry. |
| 2172 | type OfpTableFeaturePropType int32 |
| 2173 | |
| 2174 | const ( |
| 2175 | OfpTableFeaturePropType_OFPTFPT_INSTRUCTIONS OfpTableFeaturePropType = 0 |
| 2176 | OfpTableFeaturePropType_OFPTFPT_INSTRUCTIONS_MISS OfpTableFeaturePropType = 1 |
| 2177 | OfpTableFeaturePropType_OFPTFPT_NEXT_TABLES OfpTableFeaturePropType = 2 |
| 2178 | OfpTableFeaturePropType_OFPTFPT_NEXT_TABLES_MISS OfpTableFeaturePropType = 3 |
| 2179 | OfpTableFeaturePropType_OFPTFPT_WRITE_ACTIONS OfpTableFeaturePropType = 4 |
| 2180 | OfpTableFeaturePropType_OFPTFPT_WRITE_ACTIONS_MISS OfpTableFeaturePropType = 5 |
| 2181 | OfpTableFeaturePropType_OFPTFPT_APPLY_ACTIONS OfpTableFeaturePropType = 6 |
| 2182 | OfpTableFeaturePropType_OFPTFPT_APPLY_ACTIONS_MISS OfpTableFeaturePropType = 7 |
| 2183 | OfpTableFeaturePropType_OFPTFPT_MATCH OfpTableFeaturePropType = 8 |
| 2184 | OfpTableFeaturePropType_OFPTFPT_WILDCARDS OfpTableFeaturePropType = 10 |
| 2185 | OfpTableFeaturePropType_OFPTFPT_WRITE_SETFIELD OfpTableFeaturePropType = 12 |
| 2186 | OfpTableFeaturePropType_OFPTFPT_WRITE_SETFIELD_MISS OfpTableFeaturePropType = 13 |
| 2187 | OfpTableFeaturePropType_OFPTFPT_APPLY_SETFIELD OfpTableFeaturePropType = 14 |
| 2188 | OfpTableFeaturePropType_OFPTFPT_APPLY_SETFIELD_MISS OfpTableFeaturePropType = 15 |
| 2189 | OfpTableFeaturePropType_OFPTFPT_EXPERIMENTER OfpTableFeaturePropType = 65534 |
| 2190 | OfpTableFeaturePropType_OFPTFPT_EXPERIMENTER_MISS OfpTableFeaturePropType = 65535 |
| 2191 | ) |
| 2192 | |
| 2193 | var OfpTableFeaturePropType_name = map[int32]string{ |
| 2194 | 0: "OFPTFPT_INSTRUCTIONS", |
| 2195 | 1: "OFPTFPT_INSTRUCTIONS_MISS", |
| 2196 | 2: "OFPTFPT_NEXT_TABLES", |
| 2197 | 3: "OFPTFPT_NEXT_TABLES_MISS", |
| 2198 | 4: "OFPTFPT_WRITE_ACTIONS", |
| 2199 | 5: "OFPTFPT_WRITE_ACTIONS_MISS", |
| 2200 | 6: "OFPTFPT_APPLY_ACTIONS", |
| 2201 | 7: "OFPTFPT_APPLY_ACTIONS_MISS", |
| 2202 | 8: "OFPTFPT_MATCH", |
| 2203 | 10: "OFPTFPT_WILDCARDS", |
| 2204 | 12: "OFPTFPT_WRITE_SETFIELD", |
| 2205 | 13: "OFPTFPT_WRITE_SETFIELD_MISS", |
| 2206 | 14: "OFPTFPT_APPLY_SETFIELD", |
| 2207 | 15: "OFPTFPT_APPLY_SETFIELD_MISS", |
| 2208 | 65534: "OFPTFPT_EXPERIMENTER", |
| 2209 | 65535: "OFPTFPT_EXPERIMENTER_MISS", |
| 2210 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2211 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2212 | var OfpTableFeaturePropType_value = map[string]int32{ |
| 2213 | "OFPTFPT_INSTRUCTIONS": 0, |
| 2214 | "OFPTFPT_INSTRUCTIONS_MISS": 1, |
| 2215 | "OFPTFPT_NEXT_TABLES": 2, |
| 2216 | "OFPTFPT_NEXT_TABLES_MISS": 3, |
| 2217 | "OFPTFPT_WRITE_ACTIONS": 4, |
| 2218 | "OFPTFPT_WRITE_ACTIONS_MISS": 5, |
| 2219 | "OFPTFPT_APPLY_ACTIONS": 6, |
| 2220 | "OFPTFPT_APPLY_ACTIONS_MISS": 7, |
| 2221 | "OFPTFPT_MATCH": 8, |
| 2222 | "OFPTFPT_WILDCARDS": 10, |
| 2223 | "OFPTFPT_WRITE_SETFIELD": 12, |
| 2224 | "OFPTFPT_WRITE_SETFIELD_MISS": 13, |
| 2225 | "OFPTFPT_APPLY_SETFIELD": 14, |
| 2226 | "OFPTFPT_APPLY_SETFIELD_MISS": 15, |
| 2227 | "OFPTFPT_EXPERIMENTER": 65534, |
| 2228 | "OFPTFPT_EXPERIMENTER_MISS": 65535, |
| 2229 | } |
| 2230 | |
| 2231 | func (x OfpTableFeaturePropType) String() string { |
| 2232 | return proto.EnumName(OfpTableFeaturePropType_name, int32(x)) |
| 2233 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2234 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2235 | func (OfpTableFeaturePropType) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2236 | return fileDescriptor_08e3a4e375aeddc7, []int{48} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2237 | } |
| 2238 | |
| 2239 | // Group configuration flags |
| 2240 | type OfpGroupCapabilities int32 |
| 2241 | |
| 2242 | const ( |
| 2243 | OfpGroupCapabilities_OFPGFC_INVALID OfpGroupCapabilities = 0 |
| 2244 | OfpGroupCapabilities_OFPGFC_SELECT_WEIGHT OfpGroupCapabilities = 1 |
| 2245 | OfpGroupCapabilities_OFPGFC_SELECT_LIVENESS OfpGroupCapabilities = 2 |
| 2246 | OfpGroupCapabilities_OFPGFC_CHAINING OfpGroupCapabilities = 4 |
| 2247 | OfpGroupCapabilities_OFPGFC_CHAINING_CHECKS OfpGroupCapabilities = 8 |
| 2248 | ) |
| 2249 | |
| 2250 | var OfpGroupCapabilities_name = map[int32]string{ |
| 2251 | 0: "OFPGFC_INVALID", |
| 2252 | 1: "OFPGFC_SELECT_WEIGHT", |
| 2253 | 2: "OFPGFC_SELECT_LIVENESS", |
| 2254 | 4: "OFPGFC_CHAINING", |
| 2255 | 8: "OFPGFC_CHAINING_CHECKS", |
| 2256 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2257 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2258 | var OfpGroupCapabilities_value = map[string]int32{ |
| 2259 | "OFPGFC_INVALID": 0, |
| 2260 | "OFPGFC_SELECT_WEIGHT": 1, |
| 2261 | "OFPGFC_SELECT_LIVENESS": 2, |
| 2262 | "OFPGFC_CHAINING": 4, |
| 2263 | "OFPGFC_CHAINING_CHECKS": 8, |
| 2264 | } |
| 2265 | |
| 2266 | func (x OfpGroupCapabilities) String() string { |
| 2267 | return proto.EnumName(OfpGroupCapabilities_name, int32(x)) |
| 2268 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2269 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2270 | func (OfpGroupCapabilities) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2271 | return fileDescriptor_08e3a4e375aeddc7, []int{49} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2272 | } |
| 2273 | |
| 2274 | type OfpQueueProperties int32 |
| 2275 | |
| 2276 | const ( |
| 2277 | OfpQueueProperties_OFPQT_INVALID OfpQueueProperties = 0 |
| 2278 | OfpQueueProperties_OFPQT_MIN_RATE OfpQueueProperties = 1 |
| 2279 | OfpQueueProperties_OFPQT_MAX_RATE OfpQueueProperties = 2 |
| 2280 | OfpQueueProperties_OFPQT_EXPERIMENTER OfpQueueProperties = 65535 |
| 2281 | ) |
| 2282 | |
| 2283 | var OfpQueueProperties_name = map[int32]string{ |
| 2284 | 0: "OFPQT_INVALID", |
| 2285 | 1: "OFPQT_MIN_RATE", |
| 2286 | 2: "OFPQT_MAX_RATE", |
| 2287 | 65535: "OFPQT_EXPERIMENTER", |
| 2288 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2289 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2290 | var OfpQueueProperties_value = map[string]int32{ |
| 2291 | "OFPQT_INVALID": 0, |
| 2292 | "OFPQT_MIN_RATE": 1, |
| 2293 | "OFPQT_MAX_RATE": 2, |
| 2294 | "OFPQT_EXPERIMENTER": 65535, |
| 2295 | } |
| 2296 | |
| 2297 | func (x OfpQueueProperties) String() string { |
| 2298 | return proto.EnumName(OfpQueueProperties_name, int32(x)) |
| 2299 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2300 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2301 | func (OfpQueueProperties) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2302 | return fileDescriptor_08e3a4e375aeddc7, []int{50} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2303 | } |
| 2304 | |
| 2305 | // Controller roles. |
| 2306 | type OfpControllerRole int32 |
| 2307 | |
| 2308 | const ( |
| 2309 | OfpControllerRole_OFPCR_ROLE_NOCHANGE OfpControllerRole = 0 |
| 2310 | OfpControllerRole_OFPCR_ROLE_EQUAL OfpControllerRole = 1 |
| 2311 | OfpControllerRole_OFPCR_ROLE_MASTER OfpControllerRole = 2 |
| 2312 | OfpControllerRole_OFPCR_ROLE_SLAVE OfpControllerRole = 3 |
| 2313 | ) |
| 2314 | |
| 2315 | var OfpControllerRole_name = map[int32]string{ |
| 2316 | 0: "OFPCR_ROLE_NOCHANGE", |
| 2317 | 1: "OFPCR_ROLE_EQUAL", |
| 2318 | 2: "OFPCR_ROLE_MASTER", |
| 2319 | 3: "OFPCR_ROLE_SLAVE", |
| 2320 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2321 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2322 | var OfpControllerRole_value = map[string]int32{ |
| 2323 | "OFPCR_ROLE_NOCHANGE": 0, |
| 2324 | "OFPCR_ROLE_EQUAL": 1, |
| 2325 | "OFPCR_ROLE_MASTER": 2, |
| 2326 | "OFPCR_ROLE_SLAVE": 3, |
| 2327 | } |
| 2328 | |
| 2329 | func (x OfpControllerRole) String() string { |
| 2330 | return proto.EnumName(OfpControllerRole_name, int32(x)) |
| 2331 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2332 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2333 | func (OfpControllerRole) EnumDescriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2334 | return fileDescriptor_08e3a4e375aeddc7, []int{51} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2335 | } |
| 2336 | |
| 2337 | // Header on all OpenFlow packets. |
| 2338 | type OfpHeader struct { |
| 2339 | Version uint32 `protobuf:"varint,1,opt,name=version,proto3" json:"version,omitempty"` |
| 2340 | Type OfpType `protobuf:"varint,2,opt,name=type,proto3,enum=openflow_13.OfpType" json:"type,omitempty"` |
| 2341 | Xid uint32 `protobuf:"varint,3,opt,name=xid,proto3" json:"xid,omitempty"` |
| 2342 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 2343 | XXX_unrecognized []byte `json:"-"` |
| 2344 | XXX_sizecache int32 `json:"-"` |
| 2345 | } |
| 2346 | |
| 2347 | func (m *OfpHeader) Reset() { *m = OfpHeader{} } |
| 2348 | func (m *OfpHeader) String() string { return proto.CompactTextString(m) } |
| 2349 | func (*OfpHeader) ProtoMessage() {} |
| 2350 | func (*OfpHeader) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2351 | return fileDescriptor_08e3a4e375aeddc7, []int{0} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2352 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2353 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2354 | func (m *OfpHeader) XXX_Unmarshal(b []byte) error { |
| 2355 | return xxx_messageInfo_OfpHeader.Unmarshal(m, b) |
| 2356 | } |
| 2357 | func (m *OfpHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 2358 | return xxx_messageInfo_OfpHeader.Marshal(b, m, deterministic) |
| 2359 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2360 | func (m *OfpHeader) XXX_Merge(src proto.Message) { |
| 2361 | xxx_messageInfo_OfpHeader.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2362 | } |
| 2363 | func (m *OfpHeader) XXX_Size() int { |
| 2364 | return xxx_messageInfo_OfpHeader.Size(m) |
| 2365 | } |
| 2366 | func (m *OfpHeader) XXX_DiscardUnknown() { |
| 2367 | xxx_messageInfo_OfpHeader.DiscardUnknown(m) |
| 2368 | } |
| 2369 | |
| 2370 | var xxx_messageInfo_OfpHeader proto.InternalMessageInfo |
| 2371 | |
| 2372 | func (m *OfpHeader) GetVersion() uint32 { |
| 2373 | if m != nil { |
| 2374 | return m.Version |
| 2375 | } |
| 2376 | return 0 |
| 2377 | } |
| 2378 | |
| 2379 | func (m *OfpHeader) GetType() OfpType { |
| 2380 | if m != nil { |
| 2381 | return m.Type |
| 2382 | } |
| 2383 | return OfpType_OFPT_HELLO |
| 2384 | } |
| 2385 | |
| 2386 | func (m *OfpHeader) GetXid() uint32 { |
| 2387 | if m != nil { |
| 2388 | return m.Xid |
| 2389 | } |
| 2390 | return 0 |
| 2391 | } |
| 2392 | |
| 2393 | // Common header for all Hello Elements |
| 2394 | type OfpHelloElemHeader struct { |
| 2395 | Type OfpHelloElemType `protobuf:"varint,1,opt,name=type,proto3,enum=openflow_13.OfpHelloElemType" json:"type,omitempty"` |
| 2396 | // Types that are valid to be assigned to Element: |
| 2397 | // *OfpHelloElemHeader_Versionbitmap |
| 2398 | Element isOfpHelloElemHeader_Element `protobuf_oneof:"element"` |
| 2399 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 2400 | XXX_unrecognized []byte `json:"-"` |
| 2401 | XXX_sizecache int32 `json:"-"` |
| 2402 | } |
| 2403 | |
| 2404 | func (m *OfpHelloElemHeader) Reset() { *m = OfpHelloElemHeader{} } |
| 2405 | func (m *OfpHelloElemHeader) String() string { return proto.CompactTextString(m) } |
| 2406 | func (*OfpHelloElemHeader) ProtoMessage() {} |
| 2407 | func (*OfpHelloElemHeader) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2408 | return fileDescriptor_08e3a4e375aeddc7, []int{1} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2409 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2410 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2411 | func (m *OfpHelloElemHeader) XXX_Unmarshal(b []byte) error { |
| 2412 | return xxx_messageInfo_OfpHelloElemHeader.Unmarshal(m, b) |
| 2413 | } |
| 2414 | func (m *OfpHelloElemHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 2415 | return xxx_messageInfo_OfpHelloElemHeader.Marshal(b, m, deterministic) |
| 2416 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2417 | func (m *OfpHelloElemHeader) XXX_Merge(src proto.Message) { |
| 2418 | xxx_messageInfo_OfpHelloElemHeader.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2419 | } |
| 2420 | func (m *OfpHelloElemHeader) XXX_Size() int { |
| 2421 | return xxx_messageInfo_OfpHelloElemHeader.Size(m) |
| 2422 | } |
| 2423 | func (m *OfpHelloElemHeader) XXX_DiscardUnknown() { |
| 2424 | xxx_messageInfo_OfpHelloElemHeader.DiscardUnknown(m) |
| 2425 | } |
| 2426 | |
| 2427 | var xxx_messageInfo_OfpHelloElemHeader proto.InternalMessageInfo |
| 2428 | |
| 2429 | func (m *OfpHelloElemHeader) GetType() OfpHelloElemType { |
| 2430 | if m != nil { |
| 2431 | return m.Type |
| 2432 | } |
| 2433 | return OfpHelloElemType_OFPHET_INVALID |
| 2434 | } |
| 2435 | |
| 2436 | type isOfpHelloElemHeader_Element interface { |
| 2437 | isOfpHelloElemHeader_Element() |
| 2438 | } |
| 2439 | |
| 2440 | type OfpHelloElemHeader_Versionbitmap struct { |
| 2441 | Versionbitmap *OfpHelloElemVersionbitmap `protobuf:"bytes,2,opt,name=versionbitmap,proto3,oneof"` |
| 2442 | } |
| 2443 | |
| 2444 | func (*OfpHelloElemHeader_Versionbitmap) isOfpHelloElemHeader_Element() {} |
| 2445 | |
| 2446 | func (m *OfpHelloElemHeader) GetElement() isOfpHelloElemHeader_Element { |
| 2447 | if m != nil { |
| 2448 | return m.Element |
| 2449 | } |
| 2450 | return nil |
| 2451 | } |
| 2452 | |
| 2453 | func (m *OfpHelloElemHeader) GetVersionbitmap() *OfpHelloElemVersionbitmap { |
| 2454 | if x, ok := m.GetElement().(*OfpHelloElemHeader_Versionbitmap); ok { |
| 2455 | return x.Versionbitmap |
| 2456 | } |
| 2457 | return nil |
| 2458 | } |
| 2459 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2460 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 2461 | func (*OfpHelloElemHeader) XXX_OneofWrappers() []interface{} { |
| 2462 | return []interface{}{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2463 | (*OfpHelloElemHeader_Versionbitmap)(nil), |
| 2464 | } |
| 2465 | } |
| 2466 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2467 | // Version bitmap Hello Element |
| 2468 | type OfpHelloElemVersionbitmap struct { |
| 2469 | Bitmaps []uint32 `protobuf:"varint,2,rep,packed,name=bitmaps,proto3" json:"bitmaps,omitempty"` |
| 2470 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 2471 | XXX_unrecognized []byte `json:"-"` |
| 2472 | XXX_sizecache int32 `json:"-"` |
| 2473 | } |
| 2474 | |
| 2475 | func (m *OfpHelloElemVersionbitmap) Reset() { *m = OfpHelloElemVersionbitmap{} } |
| 2476 | func (m *OfpHelloElemVersionbitmap) String() string { return proto.CompactTextString(m) } |
| 2477 | func (*OfpHelloElemVersionbitmap) ProtoMessage() {} |
| 2478 | func (*OfpHelloElemVersionbitmap) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2479 | return fileDescriptor_08e3a4e375aeddc7, []int{2} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2480 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2481 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2482 | func (m *OfpHelloElemVersionbitmap) XXX_Unmarshal(b []byte) error { |
| 2483 | return xxx_messageInfo_OfpHelloElemVersionbitmap.Unmarshal(m, b) |
| 2484 | } |
| 2485 | func (m *OfpHelloElemVersionbitmap) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 2486 | return xxx_messageInfo_OfpHelloElemVersionbitmap.Marshal(b, m, deterministic) |
| 2487 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2488 | func (m *OfpHelloElemVersionbitmap) XXX_Merge(src proto.Message) { |
| 2489 | xxx_messageInfo_OfpHelloElemVersionbitmap.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2490 | } |
| 2491 | func (m *OfpHelloElemVersionbitmap) XXX_Size() int { |
| 2492 | return xxx_messageInfo_OfpHelloElemVersionbitmap.Size(m) |
| 2493 | } |
| 2494 | func (m *OfpHelloElemVersionbitmap) XXX_DiscardUnknown() { |
| 2495 | xxx_messageInfo_OfpHelloElemVersionbitmap.DiscardUnknown(m) |
| 2496 | } |
| 2497 | |
| 2498 | var xxx_messageInfo_OfpHelloElemVersionbitmap proto.InternalMessageInfo |
| 2499 | |
| 2500 | func (m *OfpHelloElemVersionbitmap) GetBitmaps() []uint32 { |
| 2501 | if m != nil { |
| 2502 | return m.Bitmaps |
| 2503 | } |
| 2504 | return nil |
| 2505 | } |
| 2506 | |
| 2507 | // OFPT_HELLO. This message includes zero or more hello elements having |
| 2508 | // variable size. Unknown elements types must be ignored/skipped, to allow |
| 2509 | // for future extensions. |
| 2510 | type OfpHello struct { |
| 2511 | // Hello element list |
| 2512 | Elements []*OfpHelloElemHeader `protobuf:"bytes,1,rep,name=elements,proto3" json:"elements,omitempty"` |
| 2513 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 2514 | XXX_unrecognized []byte `json:"-"` |
| 2515 | XXX_sizecache int32 `json:"-"` |
| 2516 | } |
| 2517 | |
| 2518 | func (m *OfpHello) Reset() { *m = OfpHello{} } |
| 2519 | func (m *OfpHello) String() string { return proto.CompactTextString(m) } |
| 2520 | func (*OfpHello) ProtoMessage() {} |
| 2521 | func (*OfpHello) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2522 | return fileDescriptor_08e3a4e375aeddc7, []int{3} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2523 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2524 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2525 | func (m *OfpHello) XXX_Unmarshal(b []byte) error { |
| 2526 | return xxx_messageInfo_OfpHello.Unmarshal(m, b) |
| 2527 | } |
| 2528 | func (m *OfpHello) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 2529 | return xxx_messageInfo_OfpHello.Marshal(b, m, deterministic) |
| 2530 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2531 | func (m *OfpHello) XXX_Merge(src proto.Message) { |
| 2532 | xxx_messageInfo_OfpHello.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2533 | } |
| 2534 | func (m *OfpHello) XXX_Size() int { |
| 2535 | return xxx_messageInfo_OfpHello.Size(m) |
| 2536 | } |
| 2537 | func (m *OfpHello) XXX_DiscardUnknown() { |
| 2538 | xxx_messageInfo_OfpHello.DiscardUnknown(m) |
| 2539 | } |
| 2540 | |
| 2541 | var xxx_messageInfo_OfpHello proto.InternalMessageInfo |
| 2542 | |
| 2543 | func (m *OfpHello) GetElements() []*OfpHelloElemHeader { |
| 2544 | if m != nil { |
| 2545 | return m.Elements |
| 2546 | } |
| 2547 | return nil |
| 2548 | } |
| 2549 | |
| 2550 | // Switch configuration. |
| 2551 | type OfpSwitchConfig struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2552 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2553 | Flags uint32 `protobuf:"varint,1,opt,name=flags,proto3" json:"flags,omitempty"` |
| 2554 | MissSendLen uint32 `protobuf:"varint,2,opt,name=miss_send_len,json=missSendLen,proto3" json:"miss_send_len,omitempty"` |
| 2555 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 2556 | XXX_unrecognized []byte `json:"-"` |
| 2557 | XXX_sizecache int32 `json:"-"` |
| 2558 | } |
| 2559 | |
| 2560 | func (m *OfpSwitchConfig) Reset() { *m = OfpSwitchConfig{} } |
| 2561 | func (m *OfpSwitchConfig) String() string { return proto.CompactTextString(m) } |
| 2562 | func (*OfpSwitchConfig) ProtoMessage() {} |
| 2563 | func (*OfpSwitchConfig) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2564 | return fileDescriptor_08e3a4e375aeddc7, []int{4} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2565 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2566 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2567 | func (m *OfpSwitchConfig) XXX_Unmarshal(b []byte) error { |
| 2568 | return xxx_messageInfo_OfpSwitchConfig.Unmarshal(m, b) |
| 2569 | } |
| 2570 | func (m *OfpSwitchConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 2571 | return xxx_messageInfo_OfpSwitchConfig.Marshal(b, m, deterministic) |
| 2572 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2573 | func (m *OfpSwitchConfig) XXX_Merge(src proto.Message) { |
| 2574 | xxx_messageInfo_OfpSwitchConfig.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2575 | } |
| 2576 | func (m *OfpSwitchConfig) XXX_Size() int { |
| 2577 | return xxx_messageInfo_OfpSwitchConfig.Size(m) |
| 2578 | } |
| 2579 | func (m *OfpSwitchConfig) XXX_DiscardUnknown() { |
| 2580 | xxx_messageInfo_OfpSwitchConfig.DiscardUnknown(m) |
| 2581 | } |
| 2582 | |
| 2583 | var xxx_messageInfo_OfpSwitchConfig proto.InternalMessageInfo |
| 2584 | |
| 2585 | func (m *OfpSwitchConfig) GetFlags() uint32 { |
| 2586 | if m != nil { |
| 2587 | return m.Flags |
| 2588 | } |
| 2589 | return 0 |
| 2590 | } |
| 2591 | |
| 2592 | func (m *OfpSwitchConfig) GetMissSendLen() uint32 { |
| 2593 | if m != nil { |
| 2594 | return m.MissSendLen |
| 2595 | } |
| 2596 | return 0 |
| 2597 | } |
| 2598 | |
| 2599 | // Configure/Modify behavior of a flow table |
| 2600 | type OfpTableMod struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2601 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2602 | TableId uint32 `protobuf:"varint,1,opt,name=table_id,json=tableId,proto3" json:"table_id,omitempty"` |
| 2603 | Config uint32 `protobuf:"varint,2,opt,name=config,proto3" json:"config,omitempty"` |
| 2604 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 2605 | XXX_unrecognized []byte `json:"-"` |
| 2606 | XXX_sizecache int32 `json:"-"` |
| 2607 | } |
| 2608 | |
| 2609 | func (m *OfpTableMod) Reset() { *m = OfpTableMod{} } |
| 2610 | func (m *OfpTableMod) String() string { return proto.CompactTextString(m) } |
| 2611 | func (*OfpTableMod) ProtoMessage() {} |
| 2612 | func (*OfpTableMod) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2613 | return fileDescriptor_08e3a4e375aeddc7, []int{5} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2614 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2615 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2616 | func (m *OfpTableMod) XXX_Unmarshal(b []byte) error { |
| 2617 | return xxx_messageInfo_OfpTableMod.Unmarshal(m, b) |
| 2618 | } |
| 2619 | func (m *OfpTableMod) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 2620 | return xxx_messageInfo_OfpTableMod.Marshal(b, m, deterministic) |
| 2621 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2622 | func (m *OfpTableMod) XXX_Merge(src proto.Message) { |
| 2623 | xxx_messageInfo_OfpTableMod.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2624 | } |
| 2625 | func (m *OfpTableMod) XXX_Size() int { |
| 2626 | return xxx_messageInfo_OfpTableMod.Size(m) |
| 2627 | } |
| 2628 | func (m *OfpTableMod) XXX_DiscardUnknown() { |
| 2629 | xxx_messageInfo_OfpTableMod.DiscardUnknown(m) |
| 2630 | } |
| 2631 | |
| 2632 | var xxx_messageInfo_OfpTableMod proto.InternalMessageInfo |
| 2633 | |
| 2634 | func (m *OfpTableMod) GetTableId() uint32 { |
| 2635 | if m != nil { |
| 2636 | return m.TableId |
| 2637 | } |
| 2638 | return 0 |
| 2639 | } |
| 2640 | |
| 2641 | func (m *OfpTableMod) GetConfig() uint32 { |
| 2642 | if m != nil { |
| 2643 | return m.Config |
| 2644 | } |
| 2645 | return 0 |
| 2646 | } |
| 2647 | |
| 2648 | // Description of a port |
| 2649 | type OfpPort struct { |
| 2650 | PortNo uint32 `protobuf:"varint,1,opt,name=port_no,json=portNo,proto3" json:"port_no,omitempty"` |
| 2651 | HwAddr []uint32 `protobuf:"varint,2,rep,packed,name=hw_addr,json=hwAddr,proto3" json:"hw_addr,omitempty"` |
| 2652 | Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"` |
| 2653 | Config uint32 `protobuf:"varint,4,opt,name=config,proto3" json:"config,omitempty"` |
| 2654 | State uint32 `protobuf:"varint,5,opt,name=state,proto3" json:"state,omitempty"` |
| 2655 | // Bitmaps of OFPPF_* that describe features. All bits zeroed if |
| 2656 | // unsupported or unavailable. |
| 2657 | Curr uint32 `protobuf:"varint,6,opt,name=curr,proto3" json:"curr,omitempty"` |
| 2658 | Advertised uint32 `protobuf:"varint,7,opt,name=advertised,proto3" json:"advertised,omitempty"` |
| 2659 | Supported uint32 `protobuf:"varint,8,opt,name=supported,proto3" json:"supported,omitempty"` |
| 2660 | Peer uint32 `protobuf:"varint,9,opt,name=peer,proto3" json:"peer,omitempty"` |
| 2661 | CurrSpeed uint32 `protobuf:"varint,10,opt,name=curr_speed,json=currSpeed,proto3" json:"curr_speed,omitempty"` |
| 2662 | MaxSpeed uint32 `protobuf:"varint,11,opt,name=max_speed,json=maxSpeed,proto3" json:"max_speed,omitempty"` |
| 2663 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 2664 | XXX_unrecognized []byte `json:"-"` |
| 2665 | XXX_sizecache int32 `json:"-"` |
| 2666 | } |
| 2667 | |
| 2668 | func (m *OfpPort) Reset() { *m = OfpPort{} } |
| 2669 | func (m *OfpPort) String() string { return proto.CompactTextString(m) } |
| 2670 | func (*OfpPort) ProtoMessage() {} |
| 2671 | func (*OfpPort) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2672 | return fileDescriptor_08e3a4e375aeddc7, []int{6} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2673 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2674 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2675 | func (m *OfpPort) XXX_Unmarshal(b []byte) error { |
| 2676 | return xxx_messageInfo_OfpPort.Unmarshal(m, b) |
| 2677 | } |
| 2678 | func (m *OfpPort) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 2679 | return xxx_messageInfo_OfpPort.Marshal(b, m, deterministic) |
| 2680 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2681 | func (m *OfpPort) XXX_Merge(src proto.Message) { |
| 2682 | xxx_messageInfo_OfpPort.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2683 | } |
| 2684 | func (m *OfpPort) XXX_Size() int { |
| 2685 | return xxx_messageInfo_OfpPort.Size(m) |
| 2686 | } |
| 2687 | func (m *OfpPort) XXX_DiscardUnknown() { |
| 2688 | xxx_messageInfo_OfpPort.DiscardUnknown(m) |
| 2689 | } |
| 2690 | |
| 2691 | var xxx_messageInfo_OfpPort proto.InternalMessageInfo |
| 2692 | |
| 2693 | func (m *OfpPort) GetPortNo() uint32 { |
| 2694 | if m != nil { |
| 2695 | return m.PortNo |
| 2696 | } |
| 2697 | return 0 |
| 2698 | } |
| 2699 | |
| 2700 | func (m *OfpPort) GetHwAddr() []uint32 { |
| 2701 | if m != nil { |
| 2702 | return m.HwAddr |
| 2703 | } |
| 2704 | return nil |
| 2705 | } |
| 2706 | |
| 2707 | func (m *OfpPort) GetName() string { |
| 2708 | if m != nil { |
| 2709 | return m.Name |
| 2710 | } |
| 2711 | return "" |
| 2712 | } |
| 2713 | |
| 2714 | func (m *OfpPort) GetConfig() uint32 { |
| 2715 | if m != nil { |
| 2716 | return m.Config |
| 2717 | } |
| 2718 | return 0 |
| 2719 | } |
| 2720 | |
| 2721 | func (m *OfpPort) GetState() uint32 { |
| 2722 | if m != nil { |
| 2723 | return m.State |
| 2724 | } |
| 2725 | return 0 |
| 2726 | } |
| 2727 | |
| 2728 | func (m *OfpPort) GetCurr() uint32 { |
| 2729 | if m != nil { |
| 2730 | return m.Curr |
| 2731 | } |
| 2732 | return 0 |
| 2733 | } |
| 2734 | |
| 2735 | func (m *OfpPort) GetAdvertised() uint32 { |
| 2736 | if m != nil { |
| 2737 | return m.Advertised |
| 2738 | } |
| 2739 | return 0 |
| 2740 | } |
| 2741 | |
| 2742 | func (m *OfpPort) GetSupported() uint32 { |
| 2743 | if m != nil { |
| 2744 | return m.Supported |
| 2745 | } |
| 2746 | return 0 |
| 2747 | } |
| 2748 | |
| 2749 | func (m *OfpPort) GetPeer() uint32 { |
| 2750 | if m != nil { |
| 2751 | return m.Peer |
| 2752 | } |
| 2753 | return 0 |
| 2754 | } |
| 2755 | |
| 2756 | func (m *OfpPort) GetCurrSpeed() uint32 { |
| 2757 | if m != nil { |
| 2758 | return m.CurrSpeed |
| 2759 | } |
| 2760 | return 0 |
| 2761 | } |
| 2762 | |
| 2763 | func (m *OfpPort) GetMaxSpeed() uint32 { |
| 2764 | if m != nil { |
| 2765 | return m.MaxSpeed |
| 2766 | } |
| 2767 | return 0 |
| 2768 | } |
| 2769 | |
| 2770 | // Switch features. |
| 2771 | type OfpSwitchFeatures struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2772 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2773 | DatapathId uint64 `protobuf:"varint,1,opt,name=datapath_id,json=datapathId,proto3" json:"datapath_id,omitempty"` |
| 2774 | NBuffers uint32 `protobuf:"varint,2,opt,name=n_buffers,json=nBuffers,proto3" json:"n_buffers,omitempty"` |
| 2775 | NTables uint32 `protobuf:"varint,3,opt,name=n_tables,json=nTables,proto3" json:"n_tables,omitempty"` |
| 2776 | AuxiliaryId uint32 `protobuf:"varint,4,opt,name=auxiliary_id,json=auxiliaryId,proto3" json:"auxiliary_id,omitempty"` |
| 2777 | // Features. |
| 2778 | Capabilities uint32 `protobuf:"varint,5,opt,name=capabilities,proto3" json:"capabilities,omitempty"` |
| 2779 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 2780 | XXX_unrecognized []byte `json:"-"` |
| 2781 | XXX_sizecache int32 `json:"-"` |
| 2782 | } |
| 2783 | |
| 2784 | func (m *OfpSwitchFeatures) Reset() { *m = OfpSwitchFeatures{} } |
| 2785 | func (m *OfpSwitchFeatures) String() string { return proto.CompactTextString(m) } |
| 2786 | func (*OfpSwitchFeatures) ProtoMessage() {} |
| 2787 | func (*OfpSwitchFeatures) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2788 | return fileDescriptor_08e3a4e375aeddc7, []int{7} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2789 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2790 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2791 | func (m *OfpSwitchFeatures) XXX_Unmarshal(b []byte) error { |
| 2792 | return xxx_messageInfo_OfpSwitchFeatures.Unmarshal(m, b) |
| 2793 | } |
| 2794 | func (m *OfpSwitchFeatures) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 2795 | return xxx_messageInfo_OfpSwitchFeatures.Marshal(b, m, deterministic) |
| 2796 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2797 | func (m *OfpSwitchFeatures) XXX_Merge(src proto.Message) { |
| 2798 | xxx_messageInfo_OfpSwitchFeatures.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2799 | } |
| 2800 | func (m *OfpSwitchFeatures) XXX_Size() int { |
| 2801 | return xxx_messageInfo_OfpSwitchFeatures.Size(m) |
| 2802 | } |
| 2803 | func (m *OfpSwitchFeatures) XXX_DiscardUnknown() { |
| 2804 | xxx_messageInfo_OfpSwitchFeatures.DiscardUnknown(m) |
| 2805 | } |
| 2806 | |
| 2807 | var xxx_messageInfo_OfpSwitchFeatures proto.InternalMessageInfo |
| 2808 | |
| 2809 | func (m *OfpSwitchFeatures) GetDatapathId() uint64 { |
| 2810 | if m != nil { |
| 2811 | return m.DatapathId |
| 2812 | } |
| 2813 | return 0 |
| 2814 | } |
| 2815 | |
| 2816 | func (m *OfpSwitchFeatures) GetNBuffers() uint32 { |
| 2817 | if m != nil { |
| 2818 | return m.NBuffers |
| 2819 | } |
| 2820 | return 0 |
| 2821 | } |
| 2822 | |
| 2823 | func (m *OfpSwitchFeatures) GetNTables() uint32 { |
| 2824 | if m != nil { |
| 2825 | return m.NTables |
| 2826 | } |
| 2827 | return 0 |
| 2828 | } |
| 2829 | |
| 2830 | func (m *OfpSwitchFeatures) GetAuxiliaryId() uint32 { |
| 2831 | if m != nil { |
| 2832 | return m.AuxiliaryId |
| 2833 | } |
| 2834 | return 0 |
| 2835 | } |
| 2836 | |
| 2837 | func (m *OfpSwitchFeatures) GetCapabilities() uint32 { |
| 2838 | if m != nil { |
| 2839 | return m.Capabilities |
| 2840 | } |
| 2841 | return 0 |
| 2842 | } |
| 2843 | |
| 2844 | // A physical port has changed in the datapath |
| 2845 | type OfpPortStatus struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2846 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2847 | Reason OfpPortReason `protobuf:"varint,1,opt,name=reason,proto3,enum=openflow_13.OfpPortReason" json:"reason,omitempty"` |
| 2848 | Desc *OfpPort `protobuf:"bytes,2,opt,name=desc,proto3" json:"desc,omitempty"` |
| 2849 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 2850 | XXX_unrecognized []byte `json:"-"` |
| 2851 | XXX_sizecache int32 `json:"-"` |
| 2852 | } |
| 2853 | |
| 2854 | func (m *OfpPortStatus) Reset() { *m = OfpPortStatus{} } |
| 2855 | func (m *OfpPortStatus) String() string { return proto.CompactTextString(m) } |
| 2856 | func (*OfpPortStatus) ProtoMessage() {} |
| 2857 | func (*OfpPortStatus) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2858 | return fileDescriptor_08e3a4e375aeddc7, []int{8} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2859 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2860 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2861 | func (m *OfpPortStatus) XXX_Unmarshal(b []byte) error { |
| 2862 | return xxx_messageInfo_OfpPortStatus.Unmarshal(m, b) |
| 2863 | } |
| 2864 | func (m *OfpPortStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 2865 | return xxx_messageInfo_OfpPortStatus.Marshal(b, m, deterministic) |
| 2866 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2867 | func (m *OfpPortStatus) XXX_Merge(src proto.Message) { |
| 2868 | xxx_messageInfo_OfpPortStatus.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2869 | } |
| 2870 | func (m *OfpPortStatus) XXX_Size() int { |
| 2871 | return xxx_messageInfo_OfpPortStatus.Size(m) |
| 2872 | } |
| 2873 | func (m *OfpPortStatus) XXX_DiscardUnknown() { |
| 2874 | xxx_messageInfo_OfpPortStatus.DiscardUnknown(m) |
| 2875 | } |
| 2876 | |
| 2877 | var xxx_messageInfo_OfpPortStatus proto.InternalMessageInfo |
| 2878 | |
| 2879 | func (m *OfpPortStatus) GetReason() OfpPortReason { |
| 2880 | if m != nil { |
| 2881 | return m.Reason |
| 2882 | } |
| 2883 | return OfpPortReason_OFPPR_ADD |
| 2884 | } |
| 2885 | |
| 2886 | func (m *OfpPortStatus) GetDesc() *OfpPort { |
| 2887 | if m != nil { |
| 2888 | return m.Desc |
| 2889 | } |
| 2890 | return nil |
| 2891 | } |
| 2892 | |
| 2893 | // Modify behavior of the physical port |
| 2894 | type OfpPortMod struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2895 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2896 | PortNo uint32 `protobuf:"varint,1,opt,name=port_no,json=portNo,proto3" json:"port_no,omitempty"` |
| 2897 | HwAddr []uint32 `protobuf:"varint,2,rep,packed,name=hw_addr,json=hwAddr,proto3" json:"hw_addr,omitempty"` |
| 2898 | // The hardware address is not |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2899 | //configurable. This is used to |
| 2900 | //sanity-check the request, so it must |
| 2901 | //be the same as returned in an |
| 2902 | //ofp_port struct. |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2903 | Config uint32 `protobuf:"varint,3,opt,name=config,proto3" json:"config,omitempty"` |
| 2904 | Mask uint32 `protobuf:"varint,4,opt,name=mask,proto3" json:"mask,omitempty"` |
| 2905 | Advertise uint32 `protobuf:"varint,5,opt,name=advertise,proto3" json:"advertise,omitempty"` |
| 2906 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 2907 | XXX_unrecognized []byte `json:"-"` |
| 2908 | XXX_sizecache int32 `json:"-"` |
| 2909 | } |
| 2910 | |
| 2911 | func (m *OfpPortMod) Reset() { *m = OfpPortMod{} } |
| 2912 | func (m *OfpPortMod) String() string { return proto.CompactTextString(m) } |
| 2913 | func (*OfpPortMod) ProtoMessage() {} |
| 2914 | func (*OfpPortMod) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2915 | return fileDescriptor_08e3a4e375aeddc7, []int{9} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2916 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2917 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2918 | func (m *OfpPortMod) XXX_Unmarshal(b []byte) error { |
| 2919 | return xxx_messageInfo_OfpPortMod.Unmarshal(m, b) |
| 2920 | } |
| 2921 | func (m *OfpPortMod) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 2922 | return xxx_messageInfo_OfpPortMod.Marshal(b, m, deterministic) |
| 2923 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2924 | func (m *OfpPortMod) XXX_Merge(src proto.Message) { |
| 2925 | xxx_messageInfo_OfpPortMod.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2926 | } |
| 2927 | func (m *OfpPortMod) XXX_Size() int { |
| 2928 | return xxx_messageInfo_OfpPortMod.Size(m) |
| 2929 | } |
| 2930 | func (m *OfpPortMod) XXX_DiscardUnknown() { |
| 2931 | xxx_messageInfo_OfpPortMod.DiscardUnknown(m) |
| 2932 | } |
| 2933 | |
| 2934 | var xxx_messageInfo_OfpPortMod proto.InternalMessageInfo |
| 2935 | |
| 2936 | func (m *OfpPortMod) GetPortNo() uint32 { |
| 2937 | if m != nil { |
| 2938 | return m.PortNo |
| 2939 | } |
| 2940 | return 0 |
| 2941 | } |
| 2942 | |
| 2943 | func (m *OfpPortMod) GetHwAddr() []uint32 { |
| 2944 | if m != nil { |
| 2945 | return m.HwAddr |
| 2946 | } |
| 2947 | return nil |
| 2948 | } |
| 2949 | |
| 2950 | func (m *OfpPortMod) GetConfig() uint32 { |
| 2951 | if m != nil { |
| 2952 | return m.Config |
| 2953 | } |
| 2954 | return 0 |
| 2955 | } |
| 2956 | |
| 2957 | func (m *OfpPortMod) GetMask() uint32 { |
| 2958 | if m != nil { |
| 2959 | return m.Mask |
| 2960 | } |
| 2961 | return 0 |
| 2962 | } |
| 2963 | |
| 2964 | func (m *OfpPortMod) GetAdvertise() uint32 { |
| 2965 | if m != nil { |
| 2966 | return m.Advertise |
| 2967 | } |
| 2968 | return 0 |
| 2969 | } |
| 2970 | |
| 2971 | // Fields to match against flows |
| 2972 | type OfpMatch struct { |
| 2973 | Type OfpMatchType `protobuf:"varint,1,opt,name=type,proto3,enum=openflow_13.OfpMatchType" json:"type,omitempty"` |
| 2974 | OxmFields []*OfpOxmField `protobuf:"bytes,2,rep,name=oxm_fields,json=oxmFields,proto3" json:"oxm_fields,omitempty"` |
| 2975 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 2976 | XXX_unrecognized []byte `json:"-"` |
| 2977 | XXX_sizecache int32 `json:"-"` |
| 2978 | } |
| 2979 | |
| 2980 | func (m *OfpMatch) Reset() { *m = OfpMatch{} } |
| 2981 | func (m *OfpMatch) String() string { return proto.CompactTextString(m) } |
| 2982 | func (*OfpMatch) ProtoMessage() {} |
| 2983 | func (*OfpMatch) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2984 | return fileDescriptor_08e3a4e375aeddc7, []int{10} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2985 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2986 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2987 | func (m *OfpMatch) XXX_Unmarshal(b []byte) error { |
| 2988 | return xxx_messageInfo_OfpMatch.Unmarshal(m, b) |
| 2989 | } |
| 2990 | func (m *OfpMatch) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 2991 | return xxx_messageInfo_OfpMatch.Marshal(b, m, deterministic) |
| 2992 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 2993 | func (m *OfpMatch) XXX_Merge(src proto.Message) { |
| 2994 | xxx_messageInfo_OfpMatch.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 2995 | } |
| 2996 | func (m *OfpMatch) XXX_Size() int { |
| 2997 | return xxx_messageInfo_OfpMatch.Size(m) |
| 2998 | } |
| 2999 | func (m *OfpMatch) XXX_DiscardUnknown() { |
| 3000 | xxx_messageInfo_OfpMatch.DiscardUnknown(m) |
| 3001 | } |
| 3002 | |
| 3003 | var xxx_messageInfo_OfpMatch proto.InternalMessageInfo |
| 3004 | |
| 3005 | func (m *OfpMatch) GetType() OfpMatchType { |
| 3006 | if m != nil { |
| 3007 | return m.Type |
| 3008 | } |
| 3009 | return OfpMatchType_OFPMT_STANDARD |
| 3010 | } |
| 3011 | |
| 3012 | func (m *OfpMatch) GetOxmFields() []*OfpOxmField { |
| 3013 | if m != nil { |
| 3014 | return m.OxmFields |
| 3015 | } |
| 3016 | return nil |
| 3017 | } |
| 3018 | |
| 3019 | // OXM Flow match fields |
| 3020 | type OfpOxmField struct { |
| 3021 | OxmClass OfpOxmClass `protobuf:"varint,1,opt,name=oxm_class,json=oxmClass,proto3,enum=openflow_13.OfpOxmClass" json:"oxm_class,omitempty"` |
| 3022 | // Types that are valid to be assigned to Field: |
| 3023 | // *OfpOxmField_OfbField |
| 3024 | // *OfpOxmField_ExperimenterField |
| 3025 | Field isOfpOxmField_Field `protobuf_oneof:"field"` |
| 3026 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 3027 | XXX_unrecognized []byte `json:"-"` |
| 3028 | XXX_sizecache int32 `json:"-"` |
| 3029 | } |
| 3030 | |
| 3031 | func (m *OfpOxmField) Reset() { *m = OfpOxmField{} } |
| 3032 | func (m *OfpOxmField) String() string { return proto.CompactTextString(m) } |
| 3033 | func (*OfpOxmField) ProtoMessage() {} |
| 3034 | func (*OfpOxmField) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 3035 | return fileDescriptor_08e3a4e375aeddc7, []int{11} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 3036 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 3037 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 3038 | func (m *OfpOxmField) XXX_Unmarshal(b []byte) error { |
| 3039 | return xxx_messageInfo_OfpOxmField.Unmarshal(m, b) |
| 3040 | } |
| 3041 | func (m *OfpOxmField) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 3042 | return xxx_messageInfo_OfpOxmField.Marshal(b, m, deterministic) |
| 3043 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 3044 | func (m *OfpOxmField) XXX_Merge(src proto.Message) { |
| 3045 | xxx_messageInfo_OfpOxmField.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 3046 | } |
| 3047 | func (m *OfpOxmField) XXX_Size() int { |
| 3048 | return xxx_messageInfo_OfpOxmField.Size(m) |
| 3049 | } |
| 3050 | func (m *OfpOxmField) XXX_DiscardUnknown() { |
| 3051 | xxx_messageInfo_OfpOxmField.DiscardUnknown(m) |
| 3052 | } |
| 3053 | |
| 3054 | var xxx_messageInfo_OfpOxmField proto.InternalMessageInfo |
| 3055 | |
| 3056 | func (m *OfpOxmField) GetOxmClass() OfpOxmClass { |
| 3057 | if m != nil { |
| 3058 | return m.OxmClass |
| 3059 | } |
| 3060 | return OfpOxmClass_OFPXMC_NXM_0 |
| 3061 | } |
| 3062 | |
| 3063 | type isOfpOxmField_Field interface { |
| 3064 | isOfpOxmField_Field() |
| 3065 | } |
| 3066 | |
| 3067 | type OfpOxmField_OfbField struct { |
| 3068 | OfbField *OfpOxmOfbField `protobuf:"bytes,4,opt,name=ofb_field,json=ofbField,proto3,oneof"` |
| 3069 | } |
| 3070 | |
| 3071 | type OfpOxmField_ExperimenterField struct { |
| 3072 | ExperimenterField *OfpOxmExperimenterField `protobuf:"bytes,5,opt,name=experimenter_field,json=experimenterField,proto3,oneof"` |
| 3073 | } |
| 3074 | |
| 3075 | func (*OfpOxmField_OfbField) isOfpOxmField_Field() {} |
| 3076 | |
| 3077 | func (*OfpOxmField_ExperimenterField) isOfpOxmField_Field() {} |
| 3078 | |
| 3079 | func (m *OfpOxmField) GetField() isOfpOxmField_Field { |
| 3080 | if m != nil { |
| 3081 | return m.Field |
| 3082 | } |
| 3083 | return nil |
| 3084 | } |
| 3085 | |
| 3086 | func (m *OfpOxmField) GetOfbField() *OfpOxmOfbField { |
| 3087 | if x, ok := m.GetField().(*OfpOxmField_OfbField); ok { |
| 3088 | return x.OfbField |
| 3089 | } |
| 3090 | return nil |
| 3091 | } |
| 3092 | |
| 3093 | func (m *OfpOxmField) GetExperimenterField() *OfpOxmExperimenterField { |
| 3094 | if x, ok := m.GetField().(*OfpOxmField_ExperimenterField); ok { |
| 3095 | return x.ExperimenterField |
| 3096 | } |
| 3097 | return nil |
| 3098 | } |
| 3099 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 3100 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 3101 | func (*OfpOxmField) XXX_OneofWrappers() []interface{} { |
| 3102 | return []interface{}{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 3103 | (*OfpOxmField_OfbField)(nil), |
| 3104 | (*OfpOxmField_ExperimenterField)(nil), |
| 3105 | } |
| 3106 | } |
| 3107 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 3108 | // OXM OpenFlow Basic Match Field |
| 3109 | type OfpOxmOfbField struct { |
| 3110 | Type OxmOfbFieldTypes `protobuf:"varint,1,opt,name=type,proto3,enum=openflow_13.OxmOfbFieldTypes" json:"type,omitempty"` |
| 3111 | HasMask bool `protobuf:"varint,2,opt,name=has_mask,json=hasMask,proto3" json:"has_mask,omitempty"` |
| 3112 | // Types that are valid to be assigned to Value: |
| 3113 | // *OfpOxmOfbField_Port |
| 3114 | // *OfpOxmOfbField_PhysicalPort |
| 3115 | // *OfpOxmOfbField_TableMetadata |
| 3116 | // *OfpOxmOfbField_EthDst |
| 3117 | // *OfpOxmOfbField_EthSrc |
| 3118 | // *OfpOxmOfbField_EthType |
| 3119 | // *OfpOxmOfbField_VlanVid |
| 3120 | // *OfpOxmOfbField_VlanPcp |
| 3121 | // *OfpOxmOfbField_IpDscp |
| 3122 | // *OfpOxmOfbField_IpEcn |
| 3123 | // *OfpOxmOfbField_IpProto |
| 3124 | // *OfpOxmOfbField_Ipv4Src |
| 3125 | // *OfpOxmOfbField_Ipv4Dst |
| 3126 | // *OfpOxmOfbField_TcpSrc |
| 3127 | // *OfpOxmOfbField_TcpDst |
| 3128 | // *OfpOxmOfbField_UdpSrc |
| 3129 | // *OfpOxmOfbField_UdpDst |
| 3130 | // *OfpOxmOfbField_SctpSrc |
| 3131 | // *OfpOxmOfbField_SctpDst |
| 3132 | // *OfpOxmOfbField_Icmpv4Type |
| 3133 | // *OfpOxmOfbField_Icmpv4Code |
| 3134 | // *OfpOxmOfbField_ArpOp |
| 3135 | // *OfpOxmOfbField_ArpSpa |
| 3136 | // *OfpOxmOfbField_ArpTpa |
| 3137 | // *OfpOxmOfbField_ArpSha |
| 3138 | // *OfpOxmOfbField_ArpTha |
| 3139 | // *OfpOxmOfbField_Ipv6Src |
| 3140 | // *OfpOxmOfbField_Ipv6Dst |
| 3141 | // *OfpOxmOfbField_Ipv6Flabel |
| 3142 | // *OfpOxmOfbField_Icmpv6Type |
| 3143 | // *OfpOxmOfbField_Icmpv6Code |
| 3144 | // *OfpOxmOfbField_Ipv6NdTarget |
| 3145 | // *OfpOxmOfbField_Ipv6NdSsl |
| 3146 | // *OfpOxmOfbField_Ipv6NdTll |
| 3147 | // *OfpOxmOfbField_MplsLabel |
| 3148 | // *OfpOxmOfbField_MplsTc |
| 3149 | // *OfpOxmOfbField_MplsBos |
| 3150 | // *OfpOxmOfbField_PbbIsid |
| 3151 | // *OfpOxmOfbField_TunnelId |
| 3152 | // *OfpOxmOfbField_Ipv6Exthdr |
| 3153 | Value isOfpOxmOfbField_Value `protobuf_oneof:"value"` |
| 3154 | // Optional mask values (must be present when has_mask is true |
| 3155 | // |
| 3156 | // Types that are valid to be assigned to Mask: |
| 3157 | // *OfpOxmOfbField_TableMetadataMask |
| 3158 | // *OfpOxmOfbField_EthDstMask |
| 3159 | // *OfpOxmOfbField_EthSrcMask |
| 3160 | // *OfpOxmOfbField_VlanVidMask |
| 3161 | // *OfpOxmOfbField_Ipv4SrcMask |
| 3162 | // *OfpOxmOfbField_Ipv4DstMask |
| 3163 | // *OfpOxmOfbField_ArpSpaMask |
| 3164 | // *OfpOxmOfbField_ArpTpaMask |
| 3165 | // *OfpOxmOfbField_Ipv6SrcMask |
| 3166 | // *OfpOxmOfbField_Ipv6DstMask |
| 3167 | // *OfpOxmOfbField_Ipv6FlabelMask |
| 3168 | // *OfpOxmOfbField_PbbIsidMask |
| 3169 | // *OfpOxmOfbField_TunnelIdMask |
| 3170 | // *OfpOxmOfbField_Ipv6ExthdrMask |
| 3171 | Mask isOfpOxmOfbField_Mask `protobuf_oneof:"mask"` |
| 3172 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 3173 | XXX_unrecognized []byte `json:"-"` |
| 3174 | XXX_sizecache int32 `json:"-"` |
| 3175 | } |
| 3176 | |
| 3177 | func (m *OfpOxmOfbField) Reset() { *m = OfpOxmOfbField{} } |
| 3178 | func (m *OfpOxmOfbField) String() string { return proto.CompactTextString(m) } |
| 3179 | func (*OfpOxmOfbField) ProtoMessage() {} |
| 3180 | func (*OfpOxmOfbField) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 3181 | return fileDescriptor_08e3a4e375aeddc7, []int{12} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 3182 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 3183 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 3184 | func (m *OfpOxmOfbField) XXX_Unmarshal(b []byte) error { |
| 3185 | return xxx_messageInfo_OfpOxmOfbField.Unmarshal(m, b) |
| 3186 | } |
| 3187 | func (m *OfpOxmOfbField) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 3188 | return xxx_messageInfo_OfpOxmOfbField.Marshal(b, m, deterministic) |
| 3189 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 3190 | func (m *OfpOxmOfbField) XXX_Merge(src proto.Message) { |
| 3191 | xxx_messageInfo_OfpOxmOfbField.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 3192 | } |
| 3193 | func (m *OfpOxmOfbField) XXX_Size() int { |
| 3194 | return xxx_messageInfo_OfpOxmOfbField.Size(m) |
| 3195 | } |
| 3196 | func (m *OfpOxmOfbField) XXX_DiscardUnknown() { |
| 3197 | xxx_messageInfo_OfpOxmOfbField.DiscardUnknown(m) |
| 3198 | } |
| 3199 | |
| 3200 | var xxx_messageInfo_OfpOxmOfbField proto.InternalMessageInfo |
| 3201 | |
| 3202 | func (m *OfpOxmOfbField) GetType() OxmOfbFieldTypes { |
| 3203 | if m != nil { |
| 3204 | return m.Type |
| 3205 | } |
| 3206 | return OxmOfbFieldTypes_OFPXMT_OFB_IN_PORT |
| 3207 | } |
| 3208 | |
| 3209 | func (m *OfpOxmOfbField) GetHasMask() bool { |
| 3210 | if m != nil { |
| 3211 | return m.HasMask |
| 3212 | } |
| 3213 | return false |
| 3214 | } |
| 3215 | |
| 3216 | type isOfpOxmOfbField_Value interface { |
| 3217 | isOfpOxmOfbField_Value() |
| 3218 | } |
| 3219 | |
| 3220 | type OfpOxmOfbField_Port struct { |
| 3221 | Port uint32 `protobuf:"varint,3,opt,name=port,proto3,oneof"` |
| 3222 | } |
| 3223 | |
| 3224 | type OfpOxmOfbField_PhysicalPort struct { |
| 3225 | PhysicalPort uint32 `protobuf:"varint,4,opt,name=physical_port,json=physicalPort,proto3,oneof"` |
| 3226 | } |
| 3227 | |
| 3228 | type OfpOxmOfbField_TableMetadata struct { |
| 3229 | TableMetadata uint64 `protobuf:"varint,5,opt,name=table_metadata,json=tableMetadata,proto3,oneof"` |
| 3230 | } |
| 3231 | |
| 3232 | type OfpOxmOfbField_EthDst struct { |
| 3233 | EthDst []byte `protobuf:"bytes,6,opt,name=eth_dst,json=ethDst,proto3,oneof"` |
| 3234 | } |
| 3235 | |
| 3236 | type OfpOxmOfbField_EthSrc struct { |
| 3237 | EthSrc []byte `protobuf:"bytes,7,opt,name=eth_src,json=ethSrc,proto3,oneof"` |
| 3238 | } |
| 3239 | |
| 3240 | type OfpOxmOfbField_EthType struct { |
| 3241 | EthType uint32 `protobuf:"varint,8,opt,name=eth_type,json=ethType,proto3,oneof"` |
| 3242 | } |
| 3243 | |
| 3244 | type OfpOxmOfbField_VlanVid struct { |
| 3245 | VlanVid uint32 `protobuf:"varint,9,opt,name=vlan_vid,json=vlanVid,proto3,oneof"` |
| 3246 | } |
| 3247 | |
| 3248 | type OfpOxmOfbField_VlanPcp struct { |
| 3249 | VlanPcp uint32 `protobuf:"varint,10,opt,name=vlan_pcp,json=vlanPcp,proto3,oneof"` |
| 3250 | } |
| 3251 | |
| 3252 | type OfpOxmOfbField_IpDscp struct { |
| 3253 | IpDscp uint32 `protobuf:"varint,11,opt,name=ip_dscp,json=ipDscp,proto3,oneof"` |
| 3254 | } |
| 3255 | |
| 3256 | type OfpOxmOfbField_IpEcn struct { |
| 3257 | IpEcn uint32 `protobuf:"varint,12,opt,name=ip_ecn,json=ipEcn,proto3,oneof"` |
| 3258 | } |
| 3259 | |
| 3260 | type OfpOxmOfbField_IpProto struct { |
| 3261 | IpProto uint32 `protobuf:"varint,13,opt,name=ip_proto,json=ipProto,proto3,oneof"` |
| 3262 | } |
| 3263 | |
| 3264 | type OfpOxmOfbField_Ipv4Src struct { |
| 3265 | Ipv4Src uint32 `protobuf:"varint,14,opt,name=ipv4_src,json=ipv4Src,proto3,oneof"` |
| 3266 | } |
| 3267 | |
| 3268 | type OfpOxmOfbField_Ipv4Dst struct { |
| 3269 | Ipv4Dst uint32 `protobuf:"varint,15,opt,name=ipv4_dst,json=ipv4Dst,proto3,oneof"` |
| 3270 | } |
| 3271 | |
| 3272 | type OfpOxmOfbField_TcpSrc struct { |
| 3273 | TcpSrc uint32 `protobuf:"varint,16,opt,name=tcp_src,json=tcpSrc,proto3,oneof"` |
| 3274 | } |
| 3275 | |
| 3276 | type OfpOxmOfbField_TcpDst struct { |
| 3277 | TcpDst uint32 `protobuf:"varint,17,opt,name=tcp_dst,json=tcpDst,proto3,oneof"` |
| 3278 | } |
| 3279 | |
| 3280 | type OfpOxmOfbField_UdpSrc struct { |
| 3281 | UdpSrc uint32 `protobuf:"varint,18,opt,name=udp_src,json=udpSrc,proto3,oneof"` |
| 3282 | } |
| 3283 | |
| 3284 | type OfpOxmOfbField_UdpDst struct { |
| 3285 | UdpDst uint32 `protobuf:"varint,19,opt,name=udp_dst,json=udpDst,proto3,oneof"` |
| 3286 | } |
| 3287 | |
| 3288 | type OfpOxmOfbField_SctpSrc struct { |
| 3289 | SctpSrc uint32 `protobuf:"varint,20,opt,name=sctp_src,json=sctpSrc,proto3,oneof"` |
| 3290 | } |
| 3291 | |
| 3292 | type OfpOxmOfbField_SctpDst struct { |
| 3293 | SctpDst uint32 `protobuf:"varint,21,opt,name=sctp_dst,json=sctpDst,proto3,oneof"` |
| 3294 | } |
| 3295 | |
| 3296 | type OfpOxmOfbField_Icmpv4Type struct { |
| 3297 | Icmpv4Type uint32 `protobuf:"varint,22,opt,name=icmpv4_type,json=icmpv4Type,proto3,oneof"` |
| 3298 | } |
| 3299 | |
| 3300 | type OfpOxmOfbField_Icmpv4Code struct { |
| 3301 | Icmpv4Code uint32 `protobuf:"varint,23,opt,name=icmpv4_code,json=icmpv4Code,proto3,oneof"` |
| 3302 | } |
| 3303 | |
| 3304 | type OfpOxmOfbField_ArpOp struct { |
| 3305 | ArpOp uint32 `protobuf:"varint,24,opt,name=arp_op,json=arpOp,proto3,oneof"` |
| 3306 | } |
| 3307 | |
| 3308 | type OfpOxmOfbField_ArpSpa struct { |
| 3309 | ArpSpa uint32 `protobuf:"varint,25,opt,name=arp_spa,json=arpSpa,proto3,oneof"` |
| 3310 | } |
| 3311 | |
| 3312 | type OfpOxmOfbField_ArpTpa struct { |
| 3313 | ArpTpa uint32 `protobuf:"varint,26,opt,name=arp_tpa,json=arpTpa,proto3,oneof"` |
| 3314 | } |
| 3315 | |
| 3316 | type OfpOxmOfbField_ArpSha struct { |
| 3317 | ArpSha []byte `protobuf:"bytes,27,opt,name=arp_sha,json=arpSha,proto3,oneof"` |
| 3318 | } |
| 3319 | |
| 3320 | type OfpOxmOfbField_ArpTha struct { |
| 3321 | ArpTha []byte `protobuf:"bytes,28,opt,name=arp_tha,json=arpTha,proto3,oneof"` |
| 3322 | } |
| 3323 | |
| 3324 | type OfpOxmOfbField_Ipv6Src struct { |
| 3325 | Ipv6Src []byte `protobuf:"bytes,29,opt,name=ipv6_src,json=ipv6Src,proto3,oneof"` |
| 3326 | } |
| 3327 | |
| 3328 | type OfpOxmOfbField_Ipv6Dst struct { |
| 3329 | Ipv6Dst []byte `protobuf:"bytes,30,opt,name=ipv6_dst,json=ipv6Dst,proto3,oneof"` |
| 3330 | } |
| 3331 | |
| 3332 | type OfpOxmOfbField_Ipv6Flabel struct { |
| 3333 | Ipv6Flabel uint32 `protobuf:"varint,31,opt,name=ipv6_flabel,json=ipv6Flabel,proto3,oneof"` |
| 3334 | } |
| 3335 | |
| 3336 | type OfpOxmOfbField_Icmpv6Type struct { |
| 3337 | Icmpv6Type uint32 `protobuf:"varint,32,opt,name=icmpv6_type,json=icmpv6Type,proto3,oneof"` |
| 3338 | } |
| 3339 | |
| 3340 | type OfpOxmOfbField_Icmpv6Code struct { |
| 3341 | Icmpv6Code uint32 `protobuf:"varint,33,opt,name=icmpv6_code,json=icmpv6Code,proto3,oneof"` |
| 3342 | } |
| 3343 | |
| 3344 | type OfpOxmOfbField_Ipv6NdTarget struct { |
| 3345 | Ipv6NdTarget []byte `protobuf:"bytes,34,opt,name=ipv6_nd_target,json=ipv6NdTarget,proto3,oneof"` |
| 3346 | } |
| 3347 | |
| 3348 | type OfpOxmOfbField_Ipv6NdSsl struct { |
| 3349 | Ipv6NdSsl []byte `protobuf:"bytes,35,opt,name=ipv6_nd_ssl,json=ipv6NdSsl,proto3,oneof"` |
| 3350 | } |
| 3351 | |
| 3352 | type OfpOxmOfbField_Ipv6NdTll struct { |
| 3353 | Ipv6NdTll []byte `protobuf:"bytes,36,opt,name=ipv6_nd_tll,json=ipv6NdTll,proto3,oneof"` |
| 3354 | } |
| 3355 | |
| 3356 | type OfpOxmOfbField_MplsLabel struct { |
| 3357 | MplsLabel uint32 `protobuf:"varint,37,opt,name=mpls_label,json=mplsLabel,proto3,oneof"` |
| 3358 | } |
| 3359 | |
| 3360 | type OfpOxmOfbField_MplsTc struct { |
| 3361 | MplsTc uint32 `protobuf:"varint,38,opt,name=mpls_tc,json=mplsTc,proto3,oneof"` |
| 3362 | } |
| 3363 | |
| 3364 | type OfpOxmOfbField_MplsBos struct { |
| 3365 | MplsBos uint32 `protobuf:"varint,39,opt,name=mpls_bos,json=mplsBos,proto3,oneof"` |
| 3366 | } |
| 3367 | |
| 3368 | type OfpOxmOfbField_PbbIsid struct { |
| 3369 | PbbIsid uint32 `protobuf:"varint,40,opt,name=pbb_isid,json=pbbIsid,proto3,oneof"` |
| 3370 | } |
| 3371 | |
| 3372 | type OfpOxmOfbField_TunnelId struct { |
| 3373 | TunnelId uint64 `protobuf:"varint,41,opt,name=tunnel_id,json=tunnelId,proto3,oneof"` |
| 3374 | } |
| 3375 | |
| 3376 | type OfpOxmOfbField_Ipv6Exthdr struct { |
| 3377 | Ipv6Exthdr uint32 `protobuf:"varint,42,opt,name=ipv6_exthdr,json=ipv6Exthdr,proto3,oneof"` |
| 3378 | } |
| 3379 | |
| 3380 | func (*OfpOxmOfbField_Port) isOfpOxmOfbField_Value() {} |
| 3381 | |
| 3382 | func (*OfpOxmOfbField_PhysicalPort) isOfpOxmOfbField_Value() {} |
| 3383 | |
| 3384 | func (*OfpOxmOfbField_TableMetadata) isOfpOxmOfbField_Value() {} |
| 3385 | |
| 3386 | func (*OfpOxmOfbField_EthDst) isOfpOxmOfbField_Value() {} |
| 3387 | |
| 3388 | func (*OfpOxmOfbField_EthSrc) isOfpOxmOfbField_Value() {} |
| 3389 | |
| 3390 | func (*OfpOxmOfbField_EthType) isOfpOxmOfbField_Value() {} |
| 3391 | |
| 3392 | func (*OfpOxmOfbField_VlanVid) isOfpOxmOfbField_Value() {} |
| 3393 | |
| 3394 | func (*OfpOxmOfbField_VlanPcp) isOfpOxmOfbField_Value() {} |
| 3395 | |
| 3396 | func (*OfpOxmOfbField_IpDscp) isOfpOxmOfbField_Value() {} |
| 3397 | |
| 3398 | func (*OfpOxmOfbField_IpEcn) isOfpOxmOfbField_Value() {} |
| 3399 | |
| 3400 | func (*OfpOxmOfbField_IpProto) isOfpOxmOfbField_Value() {} |
| 3401 | |
| 3402 | func (*OfpOxmOfbField_Ipv4Src) isOfpOxmOfbField_Value() {} |
| 3403 | |
| 3404 | func (*OfpOxmOfbField_Ipv4Dst) isOfpOxmOfbField_Value() {} |
| 3405 | |
| 3406 | func (*OfpOxmOfbField_TcpSrc) isOfpOxmOfbField_Value() {} |
| 3407 | |
| 3408 | func (*OfpOxmOfbField_TcpDst) isOfpOxmOfbField_Value() {} |
| 3409 | |
| 3410 | func (*OfpOxmOfbField_UdpSrc) isOfpOxmOfbField_Value() {} |
| 3411 | |
| 3412 | func (*OfpOxmOfbField_UdpDst) isOfpOxmOfbField_Value() {} |
| 3413 | |
| 3414 | func (*OfpOxmOfbField_SctpSrc) isOfpOxmOfbField_Value() {} |
| 3415 | |
| 3416 | func (*OfpOxmOfbField_SctpDst) isOfpOxmOfbField_Value() {} |
| 3417 | |
| 3418 | func (*OfpOxmOfbField_Icmpv4Type) isOfpOxmOfbField_Value() {} |
| 3419 | |
| 3420 | func (*OfpOxmOfbField_Icmpv4Code) isOfpOxmOfbField_Value() {} |
| 3421 | |
| 3422 | func (*OfpOxmOfbField_ArpOp) isOfpOxmOfbField_Value() {} |
| 3423 | |
| 3424 | func (*OfpOxmOfbField_ArpSpa) isOfpOxmOfbField_Value() {} |
| 3425 | |
| 3426 | func (*OfpOxmOfbField_ArpTpa) isOfpOxmOfbField_Value() {} |
| 3427 | |
| 3428 | func (*OfpOxmOfbField_ArpSha) isOfpOxmOfbField_Value() {} |
| 3429 | |
| 3430 | func (*OfpOxmOfbField_ArpTha) isOfpOxmOfbField_Value() {} |
| 3431 | |
| 3432 | func (*OfpOxmOfbField_Ipv6Src) isOfpOxmOfbField_Value() {} |
| 3433 | |
| 3434 | func (*OfpOxmOfbField_Ipv6Dst) isOfpOxmOfbField_Value() {} |
| 3435 | |
| 3436 | func (*OfpOxmOfbField_Ipv6Flabel) isOfpOxmOfbField_Value() {} |
| 3437 | |
| 3438 | func (*OfpOxmOfbField_Icmpv6Type) isOfpOxmOfbField_Value() {} |
| 3439 | |
| 3440 | func (*OfpOxmOfbField_Icmpv6Code) isOfpOxmOfbField_Value() {} |
| 3441 | |
| 3442 | func (*OfpOxmOfbField_Ipv6NdTarget) isOfpOxmOfbField_Value() {} |
| 3443 | |
| 3444 | func (*OfpOxmOfbField_Ipv6NdSsl) isOfpOxmOfbField_Value() {} |
| 3445 | |
| 3446 | func (*OfpOxmOfbField_Ipv6NdTll) isOfpOxmOfbField_Value() {} |
| 3447 | |
| 3448 | func (*OfpOxmOfbField_MplsLabel) isOfpOxmOfbField_Value() {} |
| 3449 | |
| 3450 | func (*OfpOxmOfbField_MplsTc) isOfpOxmOfbField_Value() {} |
| 3451 | |
| 3452 | func (*OfpOxmOfbField_MplsBos) isOfpOxmOfbField_Value() {} |
| 3453 | |
| 3454 | func (*OfpOxmOfbField_PbbIsid) isOfpOxmOfbField_Value() {} |
| 3455 | |
| 3456 | func (*OfpOxmOfbField_TunnelId) isOfpOxmOfbField_Value() {} |
| 3457 | |
| 3458 | func (*OfpOxmOfbField_Ipv6Exthdr) isOfpOxmOfbField_Value() {} |
| 3459 | |
| 3460 | func (m *OfpOxmOfbField) GetValue() isOfpOxmOfbField_Value { |
| 3461 | if m != nil { |
| 3462 | return m.Value |
| 3463 | } |
| 3464 | return nil |
| 3465 | } |
| 3466 | |
| 3467 | func (m *OfpOxmOfbField) GetPort() uint32 { |
| 3468 | if x, ok := m.GetValue().(*OfpOxmOfbField_Port); ok { |
| 3469 | return x.Port |
| 3470 | } |
| 3471 | return 0 |
| 3472 | } |
| 3473 | |
| 3474 | func (m *OfpOxmOfbField) GetPhysicalPort() uint32 { |
| 3475 | if x, ok := m.GetValue().(*OfpOxmOfbField_PhysicalPort); ok { |
| 3476 | return x.PhysicalPort |
| 3477 | } |
| 3478 | return 0 |
| 3479 | } |
| 3480 | |
| 3481 | func (m *OfpOxmOfbField) GetTableMetadata() uint64 { |
| 3482 | if x, ok := m.GetValue().(*OfpOxmOfbField_TableMetadata); ok { |
| 3483 | return x.TableMetadata |
| 3484 | } |
| 3485 | return 0 |
| 3486 | } |
| 3487 | |
| 3488 | func (m *OfpOxmOfbField) GetEthDst() []byte { |
| 3489 | if x, ok := m.GetValue().(*OfpOxmOfbField_EthDst); ok { |
| 3490 | return x.EthDst |
| 3491 | } |
| 3492 | return nil |
| 3493 | } |
| 3494 | |
| 3495 | func (m *OfpOxmOfbField) GetEthSrc() []byte { |
| 3496 | if x, ok := m.GetValue().(*OfpOxmOfbField_EthSrc); ok { |
| 3497 | return x.EthSrc |
| 3498 | } |
| 3499 | return nil |
| 3500 | } |
| 3501 | |
| 3502 | func (m *OfpOxmOfbField) GetEthType() uint32 { |
| 3503 | if x, ok := m.GetValue().(*OfpOxmOfbField_EthType); ok { |
| 3504 | return x.EthType |
| 3505 | } |
| 3506 | return 0 |
| 3507 | } |
| 3508 | |
| 3509 | func (m *OfpOxmOfbField) GetVlanVid() uint32 { |
| 3510 | if x, ok := m.GetValue().(*OfpOxmOfbField_VlanVid); ok { |
| 3511 | return x.VlanVid |
| 3512 | } |
| 3513 | return 0 |
| 3514 | } |
| 3515 | |
| 3516 | func (m *OfpOxmOfbField) GetVlanPcp() uint32 { |
| 3517 | if x, ok := m.GetValue().(*OfpOxmOfbField_VlanPcp); ok { |
| 3518 | return x.VlanPcp |
| 3519 | } |
| 3520 | return 0 |
| 3521 | } |
| 3522 | |
| 3523 | func (m *OfpOxmOfbField) GetIpDscp() uint32 { |
| 3524 | if x, ok := m.GetValue().(*OfpOxmOfbField_IpDscp); ok { |
| 3525 | return x.IpDscp |
| 3526 | } |
| 3527 | return 0 |
| 3528 | } |
| 3529 | |
| 3530 | func (m *OfpOxmOfbField) GetIpEcn() uint32 { |
| 3531 | if x, ok := m.GetValue().(*OfpOxmOfbField_IpEcn); ok { |
| 3532 | return x.IpEcn |
| 3533 | } |
| 3534 | return 0 |
| 3535 | } |
| 3536 | |
| 3537 | func (m *OfpOxmOfbField) GetIpProto() uint32 { |
| 3538 | if x, ok := m.GetValue().(*OfpOxmOfbField_IpProto); ok { |
| 3539 | return x.IpProto |
| 3540 | } |
| 3541 | return 0 |
| 3542 | } |
| 3543 | |
| 3544 | func (m *OfpOxmOfbField) GetIpv4Src() uint32 { |
| 3545 | if x, ok := m.GetValue().(*OfpOxmOfbField_Ipv4Src); ok { |
| 3546 | return x.Ipv4Src |
| 3547 | } |
| 3548 | return 0 |
| 3549 | } |
| 3550 | |
| 3551 | func (m *OfpOxmOfbField) GetIpv4Dst() uint32 { |
| 3552 | if x, ok := m.GetValue().(*OfpOxmOfbField_Ipv4Dst); ok { |
| 3553 | return x.Ipv4Dst |
| 3554 | } |
| 3555 | return 0 |
| 3556 | } |
| 3557 | |
| 3558 | func (m *OfpOxmOfbField) GetTcpSrc() uint32 { |
| 3559 | if x, ok := m.GetValue().(*OfpOxmOfbField_TcpSrc); ok { |
| 3560 | return x.TcpSrc |
| 3561 | } |
| 3562 | return 0 |
| 3563 | } |
| 3564 | |
| 3565 | func (m *OfpOxmOfbField) GetTcpDst() uint32 { |
| 3566 | if x, ok := m.GetValue().(*OfpOxmOfbField_TcpDst); ok { |
| 3567 | return x.TcpDst |
| 3568 | } |
| 3569 | return 0 |
| 3570 | } |
| 3571 | |
| 3572 | func (m *OfpOxmOfbField) GetUdpSrc() uint32 { |
| 3573 | if x, ok := m.GetValue().(*OfpOxmOfbField_UdpSrc); ok { |
| 3574 | return x.UdpSrc |
| 3575 | } |
| 3576 | return 0 |
| 3577 | } |
| 3578 | |
| 3579 | func (m *OfpOxmOfbField) GetUdpDst() uint32 { |
| 3580 | if x, ok := m.GetValue().(*OfpOxmOfbField_UdpDst); ok { |
| 3581 | return x.UdpDst |
| 3582 | } |
| 3583 | return 0 |
| 3584 | } |
| 3585 | |
| 3586 | func (m *OfpOxmOfbField) GetSctpSrc() uint32 { |
| 3587 | if x, ok := m.GetValue().(*OfpOxmOfbField_SctpSrc); ok { |
| 3588 | return x.SctpSrc |
| 3589 | } |
| 3590 | return 0 |
| 3591 | } |
| 3592 | |
| 3593 | func (m *OfpOxmOfbField) GetSctpDst() uint32 { |
| 3594 | if x, ok := m.GetValue().(*OfpOxmOfbField_SctpDst); ok { |
| 3595 | return x.SctpDst |
| 3596 | } |
| 3597 | return 0 |
| 3598 | } |
| 3599 | |
| 3600 | func (m *OfpOxmOfbField) GetIcmpv4Type() uint32 { |
| 3601 | if x, ok := m.GetValue().(*OfpOxmOfbField_Icmpv4Type); ok { |
| 3602 | return x.Icmpv4Type |
| 3603 | } |
| 3604 | return 0 |
| 3605 | } |
| 3606 | |
| 3607 | func (m *OfpOxmOfbField) GetIcmpv4Code() uint32 { |
| 3608 | if x, ok := m.GetValue().(*OfpOxmOfbField_Icmpv4Code); ok { |
| 3609 | return x.Icmpv4Code |
| 3610 | } |
| 3611 | return 0 |
| 3612 | } |
| 3613 | |
| 3614 | func (m *OfpOxmOfbField) GetArpOp() uint32 { |
| 3615 | if x, ok := m.GetValue().(*OfpOxmOfbField_ArpOp); ok { |
| 3616 | return x.ArpOp |
| 3617 | } |
| 3618 | return 0 |
| 3619 | } |
| 3620 | |
| 3621 | func (m *OfpOxmOfbField) GetArpSpa() uint32 { |
| 3622 | if x, ok := m.GetValue().(*OfpOxmOfbField_ArpSpa); ok { |
| 3623 | return x.ArpSpa |
| 3624 | } |
| 3625 | return 0 |
| 3626 | } |
| 3627 | |
| 3628 | func (m *OfpOxmOfbField) GetArpTpa() uint32 { |
| 3629 | if x, ok := m.GetValue().(*OfpOxmOfbField_ArpTpa); ok { |
| 3630 | return x.ArpTpa |
| 3631 | } |
| 3632 | return 0 |
| 3633 | } |
| 3634 | |
| 3635 | func (m *OfpOxmOfbField) GetArpSha() []byte { |
| 3636 | if x, ok := m.GetValue().(*OfpOxmOfbField_ArpSha); ok { |
| 3637 | return x.ArpSha |
| 3638 | } |
| 3639 | return nil |
| 3640 | } |
| 3641 | |
| 3642 | func (m *OfpOxmOfbField) GetArpTha() []byte { |
| 3643 | if x, ok := m.GetValue().(*OfpOxmOfbField_ArpTha); ok { |
| 3644 | return x.ArpTha |
| 3645 | } |
| 3646 | return nil |
| 3647 | } |
| 3648 | |
| 3649 | func (m *OfpOxmOfbField) GetIpv6Src() []byte { |
| 3650 | if x, ok := m.GetValue().(*OfpOxmOfbField_Ipv6Src); ok { |
| 3651 | return x.Ipv6Src |
| 3652 | } |
| 3653 | return nil |
| 3654 | } |
| 3655 | |
| 3656 | func (m *OfpOxmOfbField) GetIpv6Dst() []byte { |
| 3657 | if x, ok := m.GetValue().(*OfpOxmOfbField_Ipv6Dst); ok { |
| 3658 | return x.Ipv6Dst |
| 3659 | } |
| 3660 | return nil |
| 3661 | } |
| 3662 | |
| 3663 | func (m *OfpOxmOfbField) GetIpv6Flabel() uint32 { |
| 3664 | if x, ok := m.GetValue().(*OfpOxmOfbField_Ipv6Flabel); ok { |
| 3665 | return x.Ipv6Flabel |
| 3666 | } |
| 3667 | return 0 |
| 3668 | } |
| 3669 | |
| 3670 | func (m *OfpOxmOfbField) GetIcmpv6Type() uint32 { |
| 3671 | if x, ok := m.GetValue().(*OfpOxmOfbField_Icmpv6Type); ok { |
| 3672 | return x.Icmpv6Type |
| 3673 | } |
| 3674 | return 0 |
| 3675 | } |
| 3676 | |
| 3677 | func (m *OfpOxmOfbField) GetIcmpv6Code() uint32 { |
| 3678 | if x, ok := m.GetValue().(*OfpOxmOfbField_Icmpv6Code); ok { |
| 3679 | return x.Icmpv6Code |
| 3680 | } |
| 3681 | return 0 |
| 3682 | } |
| 3683 | |
| 3684 | func (m *OfpOxmOfbField) GetIpv6NdTarget() []byte { |
| 3685 | if x, ok := m.GetValue().(*OfpOxmOfbField_Ipv6NdTarget); ok { |
| 3686 | return x.Ipv6NdTarget |
| 3687 | } |
| 3688 | return nil |
| 3689 | } |
| 3690 | |
| 3691 | func (m *OfpOxmOfbField) GetIpv6NdSsl() []byte { |
| 3692 | if x, ok := m.GetValue().(*OfpOxmOfbField_Ipv6NdSsl); ok { |
| 3693 | return x.Ipv6NdSsl |
| 3694 | } |
| 3695 | return nil |
| 3696 | } |
| 3697 | |
| 3698 | func (m *OfpOxmOfbField) GetIpv6NdTll() []byte { |
| 3699 | if x, ok := m.GetValue().(*OfpOxmOfbField_Ipv6NdTll); ok { |
| 3700 | return x.Ipv6NdTll |
| 3701 | } |
| 3702 | return nil |
| 3703 | } |
| 3704 | |
| 3705 | func (m *OfpOxmOfbField) GetMplsLabel() uint32 { |
| 3706 | if x, ok := m.GetValue().(*OfpOxmOfbField_MplsLabel); ok { |
| 3707 | return x.MplsLabel |
| 3708 | } |
| 3709 | return 0 |
| 3710 | } |
| 3711 | |
| 3712 | func (m *OfpOxmOfbField) GetMplsTc() uint32 { |
| 3713 | if x, ok := m.GetValue().(*OfpOxmOfbField_MplsTc); ok { |
| 3714 | return x.MplsTc |
| 3715 | } |
| 3716 | return 0 |
| 3717 | } |
| 3718 | |
| 3719 | func (m *OfpOxmOfbField) GetMplsBos() uint32 { |
| 3720 | if x, ok := m.GetValue().(*OfpOxmOfbField_MplsBos); ok { |
| 3721 | return x.MplsBos |
| 3722 | } |
| 3723 | return 0 |
| 3724 | } |
| 3725 | |
| 3726 | func (m *OfpOxmOfbField) GetPbbIsid() uint32 { |
| 3727 | if x, ok := m.GetValue().(*OfpOxmOfbField_PbbIsid); ok { |
| 3728 | return x.PbbIsid |
| 3729 | } |
| 3730 | return 0 |
| 3731 | } |
| 3732 | |
| 3733 | func (m *OfpOxmOfbField) GetTunnelId() uint64 { |
| 3734 | if x, ok := m.GetValue().(*OfpOxmOfbField_TunnelId); ok { |
| 3735 | return x.TunnelId |
| 3736 | } |
| 3737 | return 0 |
| 3738 | } |
| 3739 | |
| 3740 | func (m *OfpOxmOfbField) GetIpv6Exthdr() uint32 { |
| 3741 | if x, ok := m.GetValue().(*OfpOxmOfbField_Ipv6Exthdr); ok { |
| 3742 | return x.Ipv6Exthdr |
| 3743 | } |
| 3744 | return 0 |
| 3745 | } |
| 3746 | |
| 3747 | type isOfpOxmOfbField_Mask interface { |
| 3748 | isOfpOxmOfbField_Mask() |
| 3749 | } |
| 3750 | |
| 3751 | type OfpOxmOfbField_TableMetadataMask struct { |
| 3752 | TableMetadataMask uint64 `protobuf:"varint,105,opt,name=table_metadata_mask,json=tableMetadataMask,proto3,oneof"` |
| 3753 | } |
| 3754 | |
| 3755 | type OfpOxmOfbField_EthDstMask struct { |
| 3756 | EthDstMask []byte `protobuf:"bytes,106,opt,name=eth_dst_mask,json=ethDstMask,proto3,oneof"` |
| 3757 | } |
| 3758 | |
| 3759 | type OfpOxmOfbField_EthSrcMask struct { |
| 3760 | EthSrcMask []byte `protobuf:"bytes,107,opt,name=eth_src_mask,json=ethSrcMask,proto3,oneof"` |
| 3761 | } |
| 3762 | |
| 3763 | type OfpOxmOfbField_VlanVidMask struct { |
| 3764 | VlanVidMask uint32 `protobuf:"varint,109,opt,name=vlan_vid_mask,json=vlanVidMask,proto3,oneof"` |
| 3765 | } |
| 3766 | |
| 3767 | type OfpOxmOfbField_Ipv4SrcMask struct { |
| 3768 | Ipv4SrcMask uint32 `protobuf:"varint,114,opt,name=ipv4_src_mask,json=ipv4SrcMask,proto3,oneof"` |
| 3769 | } |
| 3770 | |
| 3771 | type OfpOxmOfbField_Ipv4DstMask struct { |
| 3772 | Ipv4DstMask uint32 `protobuf:"varint,115,opt,name=ipv4_dst_mask,json=ipv4DstMask,proto3,oneof"` |
| 3773 | } |
| 3774 | |
| 3775 | type OfpOxmOfbField_ArpSpaMask struct { |
| 3776 | ArpSpaMask uint32 `protobuf:"varint,125,opt,name=arp_spa_mask,json=arpSpaMask,proto3,oneof"` |
| 3777 | } |
| 3778 | |
| 3779 | type OfpOxmOfbField_ArpTpaMask struct { |
| 3780 | ArpTpaMask uint32 `protobuf:"varint,126,opt,name=arp_tpa_mask,json=arpTpaMask,proto3,oneof"` |
| 3781 | } |
| 3782 | |
| 3783 | type OfpOxmOfbField_Ipv6SrcMask struct { |
| 3784 | Ipv6SrcMask []byte `protobuf:"bytes,129,opt,name=ipv6_src_mask,json=ipv6SrcMask,proto3,oneof"` |
| 3785 | } |
| 3786 | |
| 3787 | type OfpOxmOfbField_Ipv6DstMask struct { |
| 3788 | Ipv6DstMask []byte `protobuf:"bytes,130,opt,name=ipv6_dst_mask,json=ipv6DstMask,proto3,oneof"` |
| 3789 | } |
| 3790 | |
| 3791 | type OfpOxmOfbField_Ipv6FlabelMask struct { |
| 3792 | Ipv6FlabelMask uint32 `protobuf:"varint,131,opt,name=ipv6_flabel_mask,json=ipv6FlabelMask,proto3,oneof"` |
| 3793 | } |
| 3794 | |
| 3795 | type OfpOxmOfbField_PbbIsidMask struct { |
| 3796 | PbbIsidMask uint32 `protobuf:"varint,140,opt,name=pbb_isid_mask,json=pbbIsidMask,proto3,oneof"` |
| 3797 | } |
| 3798 | |
| 3799 | type OfpOxmOfbField_TunnelIdMask struct { |
| 3800 | TunnelIdMask uint64 `protobuf:"varint,141,opt,name=tunnel_id_mask,json=tunnelIdMask,proto3,oneof"` |
| 3801 | } |
| 3802 | |
| 3803 | type OfpOxmOfbField_Ipv6ExthdrMask struct { |
| 3804 | Ipv6ExthdrMask uint32 `protobuf:"varint,142,opt,name=ipv6_exthdr_mask,json=ipv6ExthdrMask,proto3,oneof"` |
| 3805 | } |
| 3806 | |
| 3807 | func (*OfpOxmOfbField_TableMetadataMask) isOfpOxmOfbField_Mask() {} |
| 3808 | |
| 3809 | func (*OfpOxmOfbField_EthDstMask) isOfpOxmOfbField_Mask() {} |
| 3810 | |
| 3811 | func (*OfpOxmOfbField_EthSrcMask) isOfpOxmOfbField_Mask() {} |
| 3812 | |
| 3813 | func (*OfpOxmOfbField_VlanVidMask) isOfpOxmOfbField_Mask() {} |
| 3814 | |
| 3815 | func (*OfpOxmOfbField_Ipv4SrcMask) isOfpOxmOfbField_Mask() {} |
| 3816 | |
| 3817 | func (*OfpOxmOfbField_Ipv4DstMask) isOfpOxmOfbField_Mask() {} |
| 3818 | |
| 3819 | func (*OfpOxmOfbField_ArpSpaMask) isOfpOxmOfbField_Mask() {} |
| 3820 | |
| 3821 | func (*OfpOxmOfbField_ArpTpaMask) isOfpOxmOfbField_Mask() {} |
| 3822 | |
| 3823 | func (*OfpOxmOfbField_Ipv6SrcMask) isOfpOxmOfbField_Mask() {} |
| 3824 | |
| 3825 | func (*OfpOxmOfbField_Ipv6DstMask) isOfpOxmOfbField_Mask() {} |
| 3826 | |
| 3827 | func (*OfpOxmOfbField_Ipv6FlabelMask) isOfpOxmOfbField_Mask() {} |
| 3828 | |
| 3829 | func (*OfpOxmOfbField_PbbIsidMask) isOfpOxmOfbField_Mask() {} |
| 3830 | |
| 3831 | func (*OfpOxmOfbField_TunnelIdMask) isOfpOxmOfbField_Mask() {} |
| 3832 | |
| 3833 | func (*OfpOxmOfbField_Ipv6ExthdrMask) isOfpOxmOfbField_Mask() {} |
| 3834 | |
| 3835 | func (m *OfpOxmOfbField) GetMask() isOfpOxmOfbField_Mask { |
| 3836 | if m != nil { |
| 3837 | return m.Mask |
| 3838 | } |
| 3839 | return nil |
| 3840 | } |
| 3841 | |
| 3842 | func (m *OfpOxmOfbField) GetTableMetadataMask() uint64 { |
| 3843 | if x, ok := m.GetMask().(*OfpOxmOfbField_TableMetadataMask); ok { |
| 3844 | return x.TableMetadataMask |
| 3845 | } |
| 3846 | return 0 |
| 3847 | } |
| 3848 | |
| 3849 | func (m *OfpOxmOfbField) GetEthDstMask() []byte { |
| 3850 | if x, ok := m.GetMask().(*OfpOxmOfbField_EthDstMask); ok { |
| 3851 | return x.EthDstMask |
| 3852 | } |
| 3853 | return nil |
| 3854 | } |
| 3855 | |
| 3856 | func (m *OfpOxmOfbField) GetEthSrcMask() []byte { |
| 3857 | if x, ok := m.GetMask().(*OfpOxmOfbField_EthSrcMask); ok { |
| 3858 | return x.EthSrcMask |
| 3859 | } |
| 3860 | return nil |
| 3861 | } |
| 3862 | |
| 3863 | func (m *OfpOxmOfbField) GetVlanVidMask() uint32 { |
| 3864 | if x, ok := m.GetMask().(*OfpOxmOfbField_VlanVidMask); ok { |
| 3865 | return x.VlanVidMask |
| 3866 | } |
| 3867 | return 0 |
| 3868 | } |
| 3869 | |
| 3870 | func (m *OfpOxmOfbField) GetIpv4SrcMask() uint32 { |
| 3871 | if x, ok := m.GetMask().(*OfpOxmOfbField_Ipv4SrcMask); ok { |
| 3872 | return x.Ipv4SrcMask |
| 3873 | } |
| 3874 | return 0 |
| 3875 | } |
| 3876 | |
| 3877 | func (m *OfpOxmOfbField) GetIpv4DstMask() uint32 { |
| 3878 | if x, ok := m.GetMask().(*OfpOxmOfbField_Ipv4DstMask); ok { |
| 3879 | return x.Ipv4DstMask |
| 3880 | } |
| 3881 | return 0 |
| 3882 | } |
| 3883 | |
| 3884 | func (m *OfpOxmOfbField) GetArpSpaMask() uint32 { |
| 3885 | if x, ok := m.GetMask().(*OfpOxmOfbField_ArpSpaMask); ok { |
| 3886 | return x.ArpSpaMask |
| 3887 | } |
| 3888 | return 0 |
| 3889 | } |
| 3890 | |
| 3891 | func (m *OfpOxmOfbField) GetArpTpaMask() uint32 { |
| 3892 | if x, ok := m.GetMask().(*OfpOxmOfbField_ArpTpaMask); ok { |
| 3893 | return x.ArpTpaMask |
| 3894 | } |
| 3895 | return 0 |
| 3896 | } |
| 3897 | |
| 3898 | func (m *OfpOxmOfbField) GetIpv6SrcMask() []byte { |
| 3899 | if x, ok := m.GetMask().(*OfpOxmOfbField_Ipv6SrcMask); ok { |
| 3900 | return x.Ipv6SrcMask |
| 3901 | } |
| 3902 | return nil |
| 3903 | } |
| 3904 | |
| 3905 | func (m *OfpOxmOfbField) GetIpv6DstMask() []byte { |
| 3906 | if x, ok := m.GetMask().(*OfpOxmOfbField_Ipv6DstMask); ok { |
| 3907 | return x.Ipv6DstMask |
| 3908 | } |
| 3909 | return nil |
| 3910 | } |
| 3911 | |
| 3912 | func (m *OfpOxmOfbField) GetIpv6FlabelMask() uint32 { |
| 3913 | if x, ok := m.GetMask().(*OfpOxmOfbField_Ipv6FlabelMask); ok { |
| 3914 | return x.Ipv6FlabelMask |
| 3915 | } |
| 3916 | return 0 |
| 3917 | } |
| 3918 | |
| 3919 | func (m *OfpOxmOfbField) GetPbbIsidMask() uint32 { |
| 3920 | if x, ok := m.GetMask().(*OfpOxmOfbField_PbbIsidMask); ok { |
| 3921 | return x.PbbIsidMask |
| 3922 | } |
| 3923 | return 0 |
| 3924 | } |
| 3925 | |
| 3926 | func (m *OfpOxmOfbField) GetTunnelIdMask() uint64 { |
| 3927 | if x, ok := m.GetMask().(*OfpOxmOfbField_TunnelIdMask); ok { |
| 3928 | return x.TunnelIdMask |
| 3929 | } |
| 3930 | return 0 |
| 3931 | } |
| 3932 | |
| 3933 | func (m *OfpOxmOfbField) GetIpv6ExthdrMask() uint32 { |
| 3934 | if x, ok := m.GetMask().(*OfpOxmOfbField_Ipv6ExthdrMask); ok { |
| 3935 | return x.Ipv6ExthdrMask |
| 3936 | } |
| 3937 | return 0 |
| 3938 | } |
| 3939 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 3940 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 3941 | func (*OfpOxmOfbField) XXX_OneofWrappers() []interface{} { |
| 3942 | return []interface{}{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 3943 | (*OfpOxmOfbField_Port)(nil), |
| 3944 | (*OfpOxmOfbField_PhysicalPort)(nil), |
| 3945 | (*OfpOxmOfbField_TableMetadata)(nil), |
| 3946 | (*OfpOxmOfbField_EthDst)(nil), |
| 3947 | (*OfpOxmOfbField_EthSrc)(nil), |
| 3948 | (*OfpOxmOfbField_EthType)(nil), |
| 3949 | (*OfpOxmOfbField_VlanVid)(nil), |
| 3950 | (*OfpOxmOfbField_VlanPcp)(nil), |
| 3951 | (*OfpOxmOfbField_IpDscp)(nil), |
| 3952 | (*OfpOxmOfbField_IpEcn)(nil), |
| 3953 | (*OfpOxmOfbField_IpProto)(nil), |
| 3954 | (*OfpOxmOfbField_Ipv4Src)(nil), |
| 3955 | (*OfpOxmOfbField_Ipv4Dst)(nil), |
| 3956 | (*OfpOxmOfbField_TcpSrc)(nil), |
| 3957 | (*OfpOxmOfbField_TcpDst)(nil), |
| 3958 | (*OfpOxmOfbField_UdpSrc)(nil), |
| 3959 | (*OfpOxmOfbField_UdpDst)(nil), |
| 3960 | (*OfpOxmOfbField_SctpSrc)(nil), |
| 3961 | (*OfpOxmOfbField_SctpDst)(nil), |
| 3962 | (*OfpOxmOfbField_Icmpv4Type)(nil), |
| 3963 | (*OfpOxmOfbField_Icmpv4Code)(nil), |
| 3964 | (*OfpOxmOfbField_ArpOp)(nil), |
| 3965 | (*OfpOxmOfbField_ArpSpa)(nil), |
| 3966 | (*OfpOxmOfbField_ArpTpa)(nil), |
| 3967 | (*OfpOxmOfbField_ArpSha)(nil), |
| 3968 | (*OfpOxmOfbField_ArpTha)(nil), |
| 3969 | (*OfpOxmOfbField_Ipv6Src)(nil), |
| 3970 | (*OfpOxmOfbField_Ipv6Dst)(nil), |
| 3971 | (*OfpOxmOfbField_Ipv6Flabel)(nil), |
| 3972 | (*OfpOxmOfbField_Icmpv6Type)(nil), |
| 3973 | (*OfpOxmOfbField_Icmpv6Code)(nil), |
| 3974 | (*OfpOxmOfbField_Ipv6NdTarget)(nil), |
| 3975 | (*OfpOxmOfbField_Ipv6NdSsl)(nil), |
| 3976 | (*OfpOxmOfbField_Ipv6NdTll)(nil), |
| 3977 | (*OfpOxmOfbField_MplsLabel)(nil), |
| 3978 | (*OfpOxmOfbField_MplsTc)(nil), |
| 3979 | (*OfpOxmOfbField_MplsBos)(nil), |
| 3980 | (*OfpOxmOfbField_PbbIsid)(nil), |
| 3981 | (*OfpOxmOfbField_TunnelId)(nil), |
| 3982 | (*OfpOxmOfbField_Ipv6Exthdr)(nil), |
| 3983 | (*OfpOxmOfbField_TableMetadataMask)(nil), |
| 3984 | (*OfpOxmOfbField_EthDstMask)(nil), |
| 3985 | (*OfpOxmOfbField_EthSrcMask)(nil), |
| 3986 | (*OfpOxmOfbField_VlanVidMask)(nil), |
| 3987 | (*OfpOxmOfbField_Ipv4SrcMask)(nil), |
| 3988 | (*OfpOxmOfbField_Ipv4DstMask)(nil), |
| 3989 | (*OfpOxmOfbField_ArpSpaMask)(nil), |
| 3990 | (*OfpOxmOfbField_ArpTpaMask)(nil), |
| 3991 | (*OfpOxmOfbField_Ipv6SrcMask)(nil), |
| 3992 | (*OfpOxmOfbField_Ipv6DstMask)(nil), |
| 3993 | (*OfpOxmOfbField_Ipv6FlabelMask)(nil), |
| 3994 | (*OfpOxmOfbField_PbbIsidMask)(nil), |
| 3995 | (*OfpOxmOfbField_TunnelIdMask)(nil), |
| 3996 | (*OfpOxmOfbField_Ipv6ExthdrMask)(nil), |
| 3997 | } |
| 3998 | } |
| 3999 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4000 | // Header for OXM experimenter match fields. |
| 4001 | // The experimenter class should not use OXM_HEADER() macros for defining |
| 4002 | // fields due to this extra header. |
| 4003 | type OfpOxmExperimenterField struct { |
| 4004 | OxmHeader uint32 `protobuf:"varint,1,opt,name=oxm_header,json=oxmHeader,proto3" json:"oxm_header,omitempty"` |
| 4005 | Experimenter uint32 `protobuf:"varint,2,opt,name=experimenter,proto3" json:"experimenter,omitempty"` |
| 4006 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4007 | XXX_unrecognized []byte `json:"-"` |
| 4008 | XXX_sizecache int32 `json:"-"` |
| 4009 | } |
| 4010 | |
| 4011 | func (m *OfpOxmExperimenterField) Reset() { *m = OfpOxmExperimenterField{} } |
| 4012 | func (m *OfpOxmExperimenterField) String() string { return proto.CompactTextString(m) } |
| 4013 | func (*OfpOxmExperimenterField) ProtoMessage() {} |
| 4014 | func (*OfpOxmExperimenterField) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4015 | return fileDescriptor_08e3a4e375aeddc7, []int{13} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4016 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4017 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4018 | func (m *OfpOxmExperimenterField) XXX_Unmarshal(b []byte) error { |
| 4019 | return xxx_messageInfo_OfpOxmExperimenterField.Unmarshal(m, b) |
| 4020 | } |
| 4021 | func (m *OfpOxmExperimenterField) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4022 | return xxx_messageInfo_OfpOxmExperimenterField.Marshal(b, m, deterministic) |
| 4023 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4024 | func (m *OfpOxmExperimenterField) XXX_Merge(src proto.Message) { |
| 4025 | xxx_messageInfo_OfpOxmExperimenterField.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4026 | } |
| 4027 | func (m *OfpOxmExperimenterField) XXX_Size() int { |
| 4028 | return xxx_messageInfo_OfpOxmExperimenterField.Size(m) |
| 4029 | } |
| 4030 | func (m *OfpOxmExperimenterField) XXX_DiscardUnknown() { |
| 4031 | xxx_messageInfo_OfpOxmExperimenterField.DiscardUnknown(m) |
| 4032 | } |
| 4033 | |
| 4034 | var xxx_messageInfo_OfpOxmExperimenterField proto.InternalMessageInfo |
| 4035 | |
| 4036 | func (m *OfpOxmExperimenterField) GetOxmHeader() uint32 { |
| 4037 | if m != nil { |
| 4038 | return m.OxmHeader |
| 4039 | } |
| 4040 | return 0 |
| 4041 | } |
| 4042 | |
| 4043 | func (m *OfpOxmExperimenterField) GetExperimenter() uint32 { |
| 4044 | if m != nil { |
| 4045 | return m.Experimenter |
| 4046 | } |
| 4047 | return 0 |
| 4048 | } |
| 4049 | |
| 4050 | // Action header that is common to all actions. The length includes the |
| 4051 | // header and any padding used to make the action 64-bit aligned. |
| 4052 | // NB: The length of an action *must* always be a multiple of eight. |
| 4053 | type OfpAction struct { |
| 4054 | Type OfpActionType `protobuf:"varint,1,opt,name=type,proto3,enum=openflow_13.OfpActionType" json:"type,omitempty"` |
| 4055 | // Types that are valid to be assigned to Action: |
| 4056 | // *OfpAction_Output |
| 4057 | // *OfpAction_MplsTtl |
| 4058 | // *OfpAction_Push |
| 4059 | // *OfpAction_PopMpls |
| 4060 | // *OfpAction_Group |
| 4061 | // *OfpAction_NwTtl |
| 4062 | // *OfpAction_SetField |
| 4063 | // *OfpAction_Experimenter |
| 4064 | Action isOfpAction_Action `protobuf_oneof:"action"` |
| 4065 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4066 | XXX_unrecognized []byte `json:"-"` |
| 4067 | XXX_sizecache int32 `json:"-"` |
| 4068 | } |
| 4069 | |
| 4070 | func (m *OfpAction) Reset() { *m = OfpAction{} } |
| 4071 | func (m *OfpAction) String() string { return proto.CompactTextString(m) } |
| 4072 | func (*OfpAction) ProtoMessage() {} |
| 4073 | func (*OfpAction) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4074 | return fileDescriptor_08e3a4e375aeddc7, []int{14} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4075 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4076 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4077 | func (m *OfpAction) XXX_Unmarshal(b []byte) error { |
| 4078 | return xxx_messageInfo_OfpAction.Unmarshal(m, b) |
| 4079 | } |
| 4080 | func (m *OfpAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4081 | return xxx_messageInfo_OfpAction.Marshal(b, m, deterministic) |
| 4082 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4083 | func (m *OfpAction) XXX_Merge(src proto.Message) { |
| 4084 | xxx_messageInfo_OfpAction.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4085 | } |
| 4086 | func (m *OfpAction) XXX_Size() int { |
| 4087 | return xxx_messageInfo_OfpAction.Size(m) |
| 4088 | } |
| 4089 | func (m *OfpAction) XXX_DiscardUnknown() { |
| 4090 | xxx_messageInfo_OfpAction.DiscardUnknown(m) |
| 4091 | } |
| 4092 | |
| 4093 | var xxx_messageInfo_OfpAction proto.InternalMessageInfo |
| 4094 | |
| 4095 | func (m *OfpAction) GetType() OfpActionType { |
| 4096 | if m != nil { |
| 4097 | return m.Type |
| 4098 | } |
| 4099 | return OfpActionType_OFPAT_OUTPUT |
| 4100 | } |
| 4101 | |
| 4102 | type isOfpAction_Action interface { |
| 4103 | isOfpAction_Action() |
| 4104 | } |
| 4105 | |
| 4106 | type OfpAction_Output struct { |
| 4107 | Output *OfpActionOutput `protobuf:"bytes,2,opt,name=output,proto3,oneof"` |
| 4108 | } |
| 4109 | |
| 4110 | type OfpAction_MplsTtl struct { |
| 4111 | MplsTtl *OfpActionMplsTtl `protobuf:"bytes,3,opt,name=mpls_ttl,json=mplsTtl,proto3,oneof"` |
| 4112 | } |
| 4113 | |
| 4114 | type OfpAction_Push struct { |
| 4115 | Push *OfpActionPush `protobuf:"bytes,4,opt,name=push,proto3,oneof"` |
| 4116 | } |
| 4117 | |
| 4118 | type OfpAction_PopMpls struct { |
| 4119 | PopMpls *OfpActionPopMpls `protobuf:"bytes,5,opt,name=pop_mpls,json=popMpls,proto3,oneof"` |
| 4120 | } |
| 4121 | |
| 4122 | type OfpAction_Group struct { |
| 4123 | Group *OfpActionGroup `protobuf:"bytes,6,opt,name=group,proto3,oneof"` |
| 4124 | } |
| 4125 | |
| 4126 | type OfpAction_NwTtl struct { |
| 4127 | NwTtl *OfpActionNwTtl `protobuf:"bytes,7,opt,name=nw_ttl,json=nwTtl,proto3,oneof"` |
| 4128 | } |
| 4129 | |
| 4130 | type OfpAction_SetField struct { |
| 4131 | SetField *OfpActionSetField `protobuf:"bytes,8,opt,name=set_field,json=setField,proto3,oneof"` |
| 4132 | } |
| 4133 | |
| 4134 | type OfpAction_Experimenter struct { |
| 4135 | Experimenter *OfpActionExperimenter `protobuf:"bytes,9,opt,name=experimenter,proto3,oneof"` |
| 4136 | } |
| 4137 | |
| 4138 | func (*OfpAction_Output) isOfpAction_Action() {} |
| 4139 | |
| 4140 | func (*OfpAction_MplsTtl) isOfpAction_Action() {} |
| 4141 | |
| 4142 | func (*OfpAction_Push) isOfpAction_Action() {} |
| 4143 | |
| 4144 | func (*OfpAction_PopMpls) isOfpAction_Action() {} |
| 4145 | |
| 4146 | func (*OfpAction_Group) isOfpAction_Action() {} |
| 4147 | |
| 4148 | func (*OfpAction_NwTtl) isOfpAction_Action() {} |
| 4149 | |
| 4150 | func (*OfpAction_SetField) isOfpAction_Action() {} |
| 4151 | |
| 4152 | func (*OfpAction_Experimenter) isOfpAction_Action() {} |
| 4153 | |
| 4154 | func (m *OfpAction) GetAction() isOfpAction_Action { |
| 4155 | if m != nil { |
| 4156 | return m.Action |
| 4157 | } |
| 4158 | return nil |
| 4159 | } |
| 4160 | |
| 4161 | func (m *OfpAction) GetOutput() *OfpActionOutput { |
| 4162 | if x, ok := m.GetAction().(*OfpAction_Output); ok { |
| 4163 | return x.Output |
| 4164 | } |
| 4165 | return nil |
| 4166 | } |
| 4167 | |
| 4168 | func (m *OfpAction) GetMplsTtl() *OfpActionMplsTtl { |
| 4169 | if x, ok := m.GetAction().(*OfpAction_MplsTtl); ok { |
| 4170 | return x.MplsTtl |
| 4171 | } |
| 4172 | return nil |
| 4173 | } |
| 4174 | |
| 4175 | func (m *OfpAction) GetPush() *OfpActionPush { |
| 4176 | if x, ok := m.GetAction().(*OfpAction_Push); ok { |
| 4177 | return x.Push |
| 4178 | } |
| 4179 | return nil |
| 4180 | } |
| 4181 | |
| 4182 | func (m *OfpAction) GetPopMpls() *OfpActionPopMpls { |
| 4183 | if x, ok := m.GetAction().(*OfpAction_PopMpls); ok { |
| 4184 | return x.PopMpls |
| 4185 | } |
| 4186 | return nil |
| 4187 | } |
| 4188 | |
| 4189 | func (m *OfpAction) GetGroup() *OfpActionGroup { |
| 4190 | if x, ok := m.GetAction().(*OfpAction_Group); ok { |
| 4191 | return x.Group |
| 4192 | } |
| 4193 | return nil |
| 4194 | } |
| 4195 | |
| 4196 | func (m *OfpAction) GetNwTtl() *OfpActionNwTtl { |
| 4197 | if x, ok := m.GetAction().(*OfpAction_NwTtl); ok { |
| 4198 | return x.NwTtl |
| 4199 | } |
| 4200 | return nil |
| 4201 | } |
| 4202 | |
| 4203 | func (m *OfpAction) GetSetField() *OfpActionSetField { |
| 4204 | if x, ok := m.GetAction().(*OfpAction_SetField); ok { |
| 4205 | return x.SetField |
| 4206 | } |
| 4207 | return nil |
| 4208 | } |
| 4209 | |
| 4210 | func (m *OfpAction) GetExperimenter() *OfpActionExperimenter { |
| 4211 | if x, ok := m.GetAction().(*OfpAction_Experimenter); ok { |
| 4212 | return x.Experimenter |
| 4213 | } |
| 4214 | return nil |
| 4215 | } |
| 4216 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4217 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 4218 | func (*OfpAction) XXX_OneofWrappers() []interface{} { |
| 4219 | return []interface{}{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4220 | (*OfpAction_Output)(nil), |
| 4221 | (*OfpAction_MplsTtl)(nil), |
| 4222 | (*OfpAction_Push)(nil), |
| 4223 | (*OfpAction_PopMpls)(nil), |
| 4224 | (*OfpAction_Group)(nil), |
| 4225 | (*OfpAction_NwTtl)(nil), |
| 4226 | (*OfpAction_SetField)(nil), |
| 4227 | (*OfpAction_Experimenter)(nil), |
| 4228 | } |
| 4229 | } |
| 4230 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4231 | // Action structure for OFPAT_OUTPUT, which sends packets out 'port'. |
| 4232 | // When the 'port' is the OFPP_CONTROLLER, 'max_len' indicates the max |
| 4233 | // number of bytes to send. A 'max_len' of zero means no bytes of the |
| 4234 | // packet should be sent. A 'max_len' of OFPCML_NO_BUFFER means that |
| 4235 | // the packet is not buffered and the complete packet is to be sent to |
| 4236 | // the controller. |
| 4237 | type OfpActionOutput struct { |
| 4238 | Port uint32 `protobuf:"varint,1,opt,name=port,proto3" json:"port,omitempty"` |
| 4239 | MaxLen uint32 `protobuf:"varint,2,opt,name=max_len,json=maxLen,proto3" json:"max_len,omitempty"` |
| 4240 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4241 | XXX_unrecognized []byte `json:"-"` |
| 4242 | XXX_sizecache int32 `json:"-"` |
| 4243 | } |
| 4244 | |
| 4245 | func (m *OfpActionOutput) Reset() { *m = OfpActionOutput{} } |
| 4246 | func (m *OfpActionOutput) String() string { return proto.CompactTextString(m) } |
| 4247 | func (*OfpActionOutput) ProtoMessage() {} |
| 4248 | func (*OfpActionOutput) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4249 | return fileDescriptor_08e3a4e375aeddc7, []int{15} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4250 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4251 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4252 | func (m *OfpActionOutput) XXX_Unmarshal(b []byte) error { |
| 4253 | return xxx_messageInfo_OfpActionOutput.Unmarshal(m, b) |
| 4254 | } |
| 4255 | func (m *OfpActionOutput) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4256 | return xxx_messageInfo_OfpActionOutput.Marshal(b, m, deterministic) |
| 4257 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4258 | func (m *OfpActionOutput) XXX_Merge(src proto.Message) { |
| 4259 | xxx_messageInfo_OfpActionOutput.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4260 | } |
| 4261 | func (m *OfpActionOutput) XXX_Size() int { |
| 4262 | return xxx_messageInfo_OfpActionOutput.Size(m) |
| 4263 | } |
| 4264 | func (m *OfpActionOutput) XXX_DiscardUnknown() { |
| 4265 | xxx_messageInfo_OfpActionOutput.DiscardUnknown(m) |
| 4266 | } |
| 4267 | |
| 4268 | var xxx_messageInfo_OfpActionOutput proto.InternalMessageInfo |
| 4269 | |
| 4270 | func (m *OfpActionOutput) GetPort() uint32 { |
| 4271 | if m != nil { |
| 4272 | return m.Port |
| 4273 | } |
| 4274 | return 0 |
| 4275 | } |
| 4276 | |
| 4277 | func (m *OfpActionOutput) GetMaxLen() uint32 { |
| 4278 | if m != nil { |
| 4279 | return m.MaxLen |
| 4280 | } |
| 4281 | return 0 |
| 4282 | } |
| 4283 | |
| 4284 | // Action structure for OFPAT_SET_MPLS_TTL. |
| 4285 | type OfpActionMplsTtl struct { |
| 4286 | MplsTtl uint32 `protobuf:"varint,1,opt,name=mpls_ttl,json=mplsTtl,proto3" json:"mpls_ttl,omitempty"` |
| 4287 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4288 | XXX_unrecognized []byte `json:"-"` |
| 4289 | XXX_sizecache int32 `json:"-"` |
| 4290 | } |
| 4291 | |
| 4292 | func (m *OfpActionMplsTtl) Reset() { *m = OfpActionMplsTtl{} } |
| 4293 | func (m *OfpActionMplsTtl) String() string { return proto.CompactTextString(m) } |
| 4294 | func (*OfpActionMplsTtl) ProtoMessage() {} |
| 4295 | func (*OfpActionMplsTtl) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4296 | return fileDescriptor_08e3a4e375aeddc7, []int{16} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4297 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4298 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4299 | func (m *OfpActionMplsTtl) XXX_Unmarshal(b []byte) error { |
| 4300 | return xxx_messageInfo_OfpActionMplsTtl.Unmarshal(m, b) |
| 4301 | } |
| 4302 | func (m *OfpActionMplsTtl) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4303 | return xxx_messageInfo_OfpActionMplsTtl.Marshal(b, m, deterministic) |
| 4304 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4305 | func (m *OfpActionMplsTtl) XXX_Merge(src proto.Message) { |
| 4306 | xxx_messageInfo_OfpActionMplsTtl.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4307 | } |
| 4308 | func (m *OfpActionMplsTtl) XXX_Size() int { |
| 4309 | return xxx_messageInfo_OfpActionMplsTtl.Size(m) |
| 4310 | } |
| 4311 | func (m *OfpActionMplsTtl) XXX_DiscardUnknown() { |
| 4312 | xxx_messageInfo_OfpActionMplsTtl.DiscardUnknown(m) |
| 4313 | } |
| 4314 | |
| 4315 | var xxx_messageInfo_OfpActionMplsTtl proto.InternalMessageInfo |
| 4316 | |
| 4317 | func (m *OfpActionMplsTtl) GetMplsTtl() uint32 { |
| 4318 | if m != nil { |
| 4319 | return m.MplsTtl |
| 4320 | } |
| 4321 | return 0 |
| 4322 | } |
| 4323 | |
| 4324 | // Action structure for OFPAT_PUSH_VLAN/MPLS/PBB. |
| 4325 | type OfpActionPush struct { |
| 4326 | Ethertype uint32 `protobuf:"varint,1,opt,name=ethertype,proto3" json:"ethertype,omitempty"` |
| 4327 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4328 | XXX_unrecognized []byte `json:"-"` |
| 4329 | XXX_sizecache int32 `json:"-"` |
| 4330 | } |
| 4331 | |
| 4332 | func (m *OfpActionPush) Reset() { *m = OfpActionPush{} } |
| 4333 | func (m *OfpActionPush) String() string { return proto.CompactTextString(m) } |
| 4334 | func (*OfpActionPush) ProtoMessage() {} |
| 4335 | func (*OfpActionPush) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4336 | return fileDescriptor_08e3a4e375aeddc7, []int{17} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4337 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4338 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4339 | func (m *OfpActionPush) XXX_Unmarshal(b []byte) error { |
| 4340 | return xxx_messageInfo_OfpActionPush.Unmarshal(m, b) |
| 4341 | } |
| 4342 | func (m *OfpActionPush) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4343 | return xxx_messageInfo_OfpActionPush.Marshal(b, m, deterministic) |
| 4344 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4345 | func (m *OfpActionPush) XXX_Merge(src proto.Message) { |
| 4346 | xxx_messageInfo_OfpActionPush.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4347 | } |
| 4348 | func (m *OfpActionPush) XXX_Size() int { |
| 4349 | return xxx_messageInfo_OfpActionPush.Size(m) |
| 4350 | } |
| 4351 | func (m *OfpActionPush) XXX_DiscardUnknown() { |
| 4352 | xxx_messageInfo_OfpActionPush.DiscardUnknown(m) |
| 4353 | } |
| 4354 | |
| 4355 | var xxx_messageInfo_OfpActionPush proto.InternalMessageInfo |
| 4356 | |
| 4357 | func (m *OfpActionPush) GetEthertype() uint32 { |
| 4358 | if m != nil { |
| 4359 | return m.Ethertype |
| 4360 | } |
| 4361 | return 0 |
| 4362 | } |
| 4363 | |
| 4364 | // Action structure for OFPAT_POP_MPLS. |
| 4365 | type OfpActionPopMpls struct { |
| 4366 | Ethertype uint32 `protobuf:"varint,1,opt,name=ethertype,proto3" json:"ethertype,omitempty"` |
| 4367 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4368 | XXX_unrecognized []byte `json:"-"` |
| 4369 | XXX_sizecache int32 `json:"-"` |
| 4370 | } |
| 4371 | |
| 4372 | func (m *OfpActionPopMpls) Reset() { *m = OfpActionPopMpls{} } |
| 4373 | func (m *OfpActionPopMpls) String() string { return proto.CompactTextString(m) } |
| 4374 | func (*OfpActionPopMpls) ProtoMessage() {} |
| 4375 | func (*OfpActionPopMpls) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4376 | return fileDescriptor_08e3a4e375aeddc7, []int{18} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4377 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4378 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4379 | func (m *OfpActionPopMpls) XXX_Unmarshal(b []byte) error { |
| 4380 | return xxx_messageInfo_OfpActionPopMpls.Unmarshal(m, b) |
| 4381 | } |
| 4382 | func (m *OfpActionPopMpls) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4383 | return xxx_messageInfo_OfpActionPopMpls.Marshal(b, m, deterministic) |
| 4384 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4385 | func (m *OfpActionPopMpls) XXX_Merge(src proto.Message) { |
| 4386 | xxx_messageInfo_OfpActionPopMpls.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4387 | } |
| 4388 | func (m *OfpActionPopMpls) XXX_Size() int { |
| 4389 | return xxx_messageInfo_OfpActionPopMpls.Size(m) |
| 4390 | } |
| 4391 | func (m *OfpActionPopMpls) XXX_DiscardUnknown() { |
| 4392 | xxx_messageInfo_OfpActionPopMpls.DiscardUnknown(m) |
| 4393 | } |
| 4394 | |
| 4395 | var xxx_messageInfo_OfpActionPopMpls proto.InternalMessageInfo |
| 4396 | |
| 4397 | func (m *OfpActionPopMpls) GetEthertype() uint32 { |
| 4398 | if m != nil { |
| 4399 | return m.Ethertype |
| 4400 | } |
| 4401 | return 0 |
| 4402 | } |
| 4403 | |
| 4404 | // Action structure for OFPAT_GROUP. |
| 4405 | type OfpActionGroup struct { |
| 4406 | GroupId uint32 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"` |
| 4407 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4408 | XXX_unrecognized []byte `json:"-"` |
| 4409 | XXX_sizecache int32 `json:"-"` |
| 4410 | } |
| 4411 | |
| 4412 | func (m *OfpActionGroup) Reset() { *m = OfpActionGroup{} } |
| 4413 | func (m *OfpActionGroup) String() string { return proto.CompactTextString(m) } |
| 4414 | func (*OfpActionGroup) ProtoMessage() {} |
| 4415 | func (*OfpActionGroup) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4416 | return fileDescriptor_08e3a4e375aeddc7, []int{19} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4417 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4418 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4419 | func (m *OfpActionGroup) XXX_Unmarshal(b []byte) error { |
| 4420 | return xxx_messageInfo_OfpActionGroup.Unmarshal(m, b) |
| 4421 | } |
| 4422 | func (m *OfpActionGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4423 | return xxx_messageInfo_OfpActionGroup.Marshal(b, m, deterministic) |
| 4424 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4425 | func (m *OfpActionGroup) XXX_Merge(src proto.Message) { |
| 4426 | xxx_messageInfo_OfpActionGroup.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4427 | } |
| 4428 | func (m *OfpActionGroup) XXX_Size() int { |
| 4429 | return xxx_messageInfo_OfpActionGroup.Size(m) |
| 4430 | } |
| 4431 | func (m *OfpActionGroup) XXX_DiscardUnknown() { |
| 4432 | xxx_messageInfo_OfpActionGroup.DiscardUnknown(m) |
| 4433 | } |
| 4434 | |
| 4435 | var xxx_messageInfo_OfpActionGroup proto.InternalMessageInfo |
| 4436 | |
| 4437 | func (m *OfpActionGroup) GetGroupId() uint32 { |
| 4438 | if m != nil { |
| 4439 | return m.GroupId |
| 4440 | } |
| 4441 | return 0 |
| 4442 | } |
| 4443 | |
| 4444 | // Action structure for OFPAT_SET_NW_TTL. |
| 4445 | type OfpActionNwTtl struct { |
| 4446 | NwTtl uint32 `protobuf:"varint,1,opt,name=nw_ttl,json=nwTtl,proto3" json:"nw_ttl,omitempty"` |
| 4447 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4448 | XXX_unrecognized []byte `json:"-"` |
| 4449 | XXX_sizecache int32 `json:"-"` |
| 4450 | } |
| 4451 | |
| 4452 | func (m *OfpActionNwTtl) Reset() { *m = OfpActionNwTtl{} } |
| 4453 | func (m *OfpActionNwTtl) String() string { return proto.CompactTextString(m) } |
| 4454 | func (*OfpActionNwTtl) ProtoMessage() {} |
| 4455 | func (*OfpActionNwTtl) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4456 | return fileDescriptor_08e3a4e375aeddc7, []int{20} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4457 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4458 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4459 | func (m *OfpActionNwTtl) XXX_Unmarshal(b []byte) error { |
| 4460 | return xxx_messageInfo_OfpActionNwTtl.Unmarshal(m, b) |
| 4461 | } |
| 4462 | func (m *OfpActionNwTtl) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4463 | return xxx_messageInfo_OfpActionNwTtl.Marshal(b, m, deterministic) |
| 4464 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4465 | func (m *OfpActionNwTtl) XXX_Merge(src proto.Message) { |
| 4466 | xxx_messageInfo_OfpActionNwTtl.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4467 | } |
| 4468 | func (m *OfpActionNwTtl) XXX_Size() int { |
| 4469 | return xxx_messageInfo_OfpActionNwTtl.Size(m) |
| 4470 | } |
| 4471 | func (m *OfpActionNwTtl) XXX_DiscardUnknown() { |
| 4472 | xxx_messageInfo_OfpActionNwTtl.DiscardUnknown(m) |
| 4473 | } |
| 4474 | |
| 4475 | var xxx_messageInfo_OfpActionNwTtl proto.InternalMessageInfo |
| 4476 | |
| 4477 | func (m *OfpActionNwTtl) GetNwTtl() uint32 { |
| 4478 | if m != nil { |
| 4479 | return m.NwTtl |
| 4480 | } |
| 4481 | return 0 |
| 4482 | } |
| 4483 | |
| 4484 | // Action structure for OFPAT_SET_FIELD. |
| 4485 | type OfpActionSetField struct { |
| 4486 | Field *OfpOxmField `protobuf:"bytes,1,opt,name=field,proto3" json:"field,omitempty"` |
| 4487 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4488 | XXX_unrecognized []byte `json:"-"` |
| 4489 | XXX_sizecache int32 `json:"-"` |
| 4490 | } |
| 4491 | |
| 4492 | func (m *OfpActionSetField) Reset() { *m = OfpActionSetField{} } |
| 4493 | func (m *OfpActionSetField) String() string { return proto.CompactTextString(m) } |
| 4494 | func (*OfpActionSetField) ProtoMessage() {} |
| 4495 | func (*OfpActionSetField) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4496 | return fileDescriptor_08e3a4e375aeddc7, []int{21} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4497 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4498 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4499 | func (m *OfpActionSetField) XXX_Unmarshal(b []byte) error { |
| 4500 | return xxx_messageInfo_OfpActionSetField.Unmarshal(m, b) |
| 4501 | } |
| 4502 | func (m *OfpActionSetField) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4503 | return xxx_messageInfo_OfpActionSetField.Marshal(b, m, deterministic) |
| 4504 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4505 | func (m *OfpActionSetField) XXX_Merge(src proto.Message) { |
| 4506 | xxx_messageInfo_OfpActionSetField.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4507 | } |
| 4508 | func (m *OfpActionSetField) XXX_Size() int { |
| 4509 | return xxx_messageInfo_OfpActionSetField.Size(m) |
| 4510 | } |
| 4511 | func (m *OfpActionSetField) XXX_DiscardUnknown() { |
| 4512 | xxx_messageInfo_OfpActionSetField.DiscardUnknown(m) |
| 4513 | } |
| 4514 | |
| 4515 | var xxx_messageInfo_OfpActionSetField proto.InternalMessageInfo |
| 4516 | |
| 4517 | func (m *OfpActionSetField) GetField() *OfpOxmField { |
| 4518 | if m != nil { |
| 4519 | return m.Field |
| 4520 | } |
| 4521 | return nil |
| 4522 | } |
| 4523 | |
| 4524 | // Action header for OFPAT_EXPERIMENTER. |
| 4525 | // The rest of the body is experimenter-defined. |
| 4526 | type OfpActionExperimenter struct { |
| 4527 | Experimenter uint32 `protobuf:"varint,1,opt,name=experimenter,proto3" json:"experimenter,omitempty"` |
| 4528 | Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` |
| 4529 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4530 | XXX_unrecognized []byte `json:"-"` |
| 4531 | XXX_sizecache int32 `json:"-"` |
| 4532 | } |
| 4533 | |
| 4534 | func (m *OfpActionExperimenter) Reset() { *m = OfpActionExperimenter{} } |
| 4535 | func (m *OfpActionExperimenter) String() string { return proto.CompactTextString(m) } |
| 4536 | func (*OfpActionExperimenter) ProtoMessage() {} |
| 4537 | func (*OfpActionExperimenter) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4538 | return fileDescriptor_08e3a4e375aeddc7, []int{22} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4539 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4540 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4541 | func (m *OfpActionExperimenter) XXX_Unmarshal(b []byte) error { |
| 4542 | return xxx_messageInfo_OfpActionExperimenter.Unmarshal(m, b) |
| 4543 | } |
| 4544 | func (m *OfpActionExperimenter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4545 | return xxx_messageInfo_OfpActionExperimenter.Marshal(b, m, deterministic) |
| 4546 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4547 | func (m *OfpActionExperimenter) XXX_Merge(src proto.Message) { |
| 4548 | xxx_messageInfo_OfpActionExperimenter.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4549 | } |
| 4550 | func (m *OfpActionExperimenter) XXX_Size() int { |
| 4551 | return xxx_messageInfo_OfpActionExperimenter.Size(m) |
| 4552 | } |
| 4553 | func (m *OfpActionExperimenter) XXX_DiscardUnknown() { |
| 4554 | xxx_messageInfo_OfpActionExperimenter.DiscardUnknown(m) |
| 4555 | } |
| 4556 | |
| 4557 | var xxx_messageInfo_OfpActionExperimenter proto.InternalMessageInfo |
| 4558 | |
| 4559 | func (m *OfpActionExperimenter) GetExperimenter() uint32 { |
| 4560 | if m != nil { |
| 4561 | return m.Experimenter |
| 4562 | } |
| 4563 | return 0 |
| 4564 | } |
| 4565 | |
| 4566 | func (m *OfpActionExperimenter) GetData() []byte { |
| 4567 | if m != nil { |
| 4568 | return m.Data |
| 4569 | } |
| 4570 | return nil |
| 4571 | } |
| 4572 | |
| 4573 | // Instruction header that is common to all instructions. The length includes |
| 4574 | // the header and any padding used to make the instruction 64-bit aligned. |
| 4575 | // NB: The length of an instruction *must* always be a multiple of eight. |
| 4576 | type OfpInstruction struct { |
| 4577 | Type uint32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"` |
| 4578 | // Types that are valid to be assigned to Data: |
| 4579 | // *OfpInstruction_GotoTable |
| 4580 | // *OfpInstruction_WriteMetadata |
| 4581 | // *OfpInstruction_Actions |
| 4582 | // *OfpInstruction_Meter |
| 4583 | // *OfpInstruction_Experimenter |
| 4584 | Data isOfpInstruction_Data `protobuf_oneof:"data"` |
| 4585 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4586 | XXX_unrecognized []byte `json:"-"` |
| 4587 | XXX_sizecache int32 `json:"-"` |
| 4588 | } |
| 4589 | |
| 4590 | func (m *OfpInstruction) Reset() { *m = OfpInstruction{} } |
| 4591 | func (m *OfpInstruction) String() string { return proto.CompactTextString(m) } |
| 4592 | func (*OfpInstruction) ProtoMessage() {} |
| 4593 | func (*OfpInstruction) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4594 | return fileDescriptor_08e3a4e375aeddc7, []int{23} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4595 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4596 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4597 | func (m *OfpInstruction) XXX_Unmarshal(b []byte) error { |
| 4598 | return xxx_messageInfo_OfpInstruction.Unmarshal(m, b) |
| 4599 | } |
| 4600 | func (m *OfpInstruction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4601 | return xxx_messageInfo_OfpInstruction.Marshal(b, m, deterministic) |
| 4602 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4603 | func (m *OfpInstruction) XXX_Merge(src proto.Message) { |
| 4604 | xxx_messageInfo_OfpInstruction.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4605 | } |
| 4606 | func (m *OfpInstruction) XXX_Size() int { |
| 4607 | return xxx_messageInfo_OfpInstruction.Size(m) |
| 4608 | } |
| 4609 | func (m *OfpInstruction) XXX_DiscardUnknown() { |
| 4610 | xxx_messageInfo_OfpInstruction.DiscardUnknown(m) |
| 4611 | } |
| 4612 | |
| 4613 | var xxx_messageInfo_OfpInstruction proto.InternalMessageInfo |
| 4614 | |
| 4615 | func (m *OfpInstruction) GetType() uint32 { |
| 4616 | if m != nil { |
| 4617 | return m.Type |
| 4618 | } |
| 4619 | return 0 |
| 4620 | } |
| 4621 | |
| 4622 | type isOfpInstruction_Data interface { |
| 4623 | isOfpInstruction_Data() |
| 4624 | } |
| 4625 | |
| 4626 | type OfpInstruction_GotoTable struct { |
| 4627 | GotoTable *OfpInstructionGotoTable `protobuf:"bytes,2,opt,name=goto_table,json=gotoTable,proto3,oneof"` |
| 4628 | } |
| 4629 | |
| 4630 | type OfpInstruction_WriteMetadata struct { |
| 4631 | WriteMetadata *OfpInstructionWriteMetadata `protobuf:"bytes,3,opt,name=write_metadata,json=writeMetadata,proto3,oneof"` |
| 4632 | } |
| 4633 | |
| 4634 | type OfpInstruction_Actions struct { |
| 4635 | Actions *OfpInstructionActions `protobuf:"bytes,4,opt,name=actions,proto3,oneof"` |
| 4636 | } |
| 4637 | |
| 4638 | type OfpInstruction_Meter struct { |
| 4639 | Meter *OfpInstructionMeter `protobuf:"bytes,5,opt,name=meter,proto3,oneof"` |
| 4640 | } |
| 4641 | |
| 4642 | type OfpInstruction_Experimenter struct { |
| 4643 | Experimenter *OfpInstructionExperimenter `protobuf:"bytes,6,opt,name=experimenter,proto3,oneof"` |
| 4644 | } |
| 4645 | |
| 4646 | func (*OfpInstruction_GotoTable) isOfpInstruction_Data() {} |
| 4647 | |
| 4648 | func (*OfpInstruction_WriteMetadata) isOfpInstruction_Data() {} |
| 4649 | |
| 4650 | func (*OfpInstruction_Actions) isOfpInstruction_Data() {} |
| 4651 | |
| 4652 | func (*OfpInstruction_Meter) isOfpInstruction_Data() {} |
| 4653 | |
| 4654 | func (*OfpInstruction_Experimenter) isOfpInstruction_Data() {} |
| 4655 | |
| 4656 | func (m *OfpInstruction) GetData() isOfpInstruction_Data { |
| 4657 | if m != nil { |
| 4658 | return m.Data |
| 4659 | } |
| 4660 | return nil |
| 4661 | } |
| 4662 | |
| 4663 | func (m *OfpInstruction) GetGotoTable() *OfpInstructionGotoTable { |
| 4664 | if x, ok := m.GetData().(*OfpInstruction_GotoTable); ok { |
| 4665 | return x.GotoTable |
| 4666 | } |
| 4667 | return nil |
| 4668 | } |
| 4669 | |
| 4670 | func (m *OfpInstruction) GetWriteMetadata() *OfpInstructionWriteMetadata { |
| 4671 | if x, ok := m.GetData().(*OfpInstruction_WriteMetadata); ok { |
| 4672 | return x.WriteMetadata |
| 4673 | } |
| 4674 | return nil |
| 4675 | } |
| 4676 | |
| 4677 | func (m *OfpInstruction) GetActions() *OfpInstructionActions { |
| 4678 | if x, ok := m.GetData().(*OfpInstruction_Actions); ok { |
| 4679 | return x.Actions |
| 4680 | } |
| 4681 | return nil |
| 4682 | } |
| 4683 | |
| 4684 | func (m *OfpInstruction) GetMeter() *OfpInstructionMeter { |
| 4685 | if x, ok := m.GetData().(*OfpInstruction_Meter); ok { |
| 4686 | return x.Meter |
| 4687 | } |
| 4688 | return nil |
| 4689 | } |
| 4690 | |
| 4691 | func (m *OfpInstruction) GetExperimenter() *OfpInstructionExperimenter { |
| 4692 | if x, ok := m.GetData().(*OfpInstruction_Experimenter); ok { |
| 4693 | return x.Experimenter |
| 4694 | } |
| 4695 | return nil |
| 4696 | } |
| 4697 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4698 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 4699 | func (*OfpInstruction) XXX_OneofWrappers() []interface{} { |
| 4700 | return []interface{}{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4701 | (*OfpInstruction_GotoTable)(nil), |
| 4702 | (*OfpInstruction_WriteMetadata)(nil), |
| 4703 | (*OfpInstruction_Actions)(nil), |
| 4704 | (*OfpInstruction_Meter)(nil), |
| 4705 | (*OfpInstruction_Experimenter)(nil), |
| 4706 | } |
| 4707 | } |
| 4708 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4709 | // Instruction structure for OFPIT_GOTO_TABLE |
| 4710 | type OfpInstructionGotoTable struct { |
| 4711 | TableId uint32 `protobuf:"varint,1,opt,name=table_id,json=tableId,proto3" json:"table_id,omitempty"` |
| 4712 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4713 | XXX_unrecognized []byte `json:"-"` |
| 4714 | XXX_sizecache int32 `json:"-"` |
| 4715 | } |
| 4716 | |
| 4717 | func (m *OfpInstructionGotoTable) Reset() { *m = OfpInstructionGotoTable{} } |
| 4718 | func (m *OfpInstructionGotoTable) String() string { return proto.CompactTextString(m) } |
| 4719 | func (*OfpInstructionGotoTable) ProtoMessage() {} |
| 4720 | func (*OfpInstructionGotoTable) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4721 | return fileDescriptor_08e3a4e375aeddc7, []int{24} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4722 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4723 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4724 | func (m *OfpInstructionGotoTable) XXX_Unmarshal(b []byte) error { |
| 4725 | return xxx_messageInfo_OfpInstructionGotoTable.Unmarshal(m, b) |
| 4726 | } |
| 4727 | func (m *OfpInstructionGotoTable) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4728 | return xxx_messageInfo_OfpInstructionGotoTable.Marshal(b, m, deterministic) |
| 4729 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4730 | func (m *OfpInstructionGotoTable) XXX_Merge(src proto.Message) { |
| 4731 | xxx_messageInfo_OfpInstructionGotoTable.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4732 | } |
| 4733 | func (m *OfpInstructionGotoTable) XXX_Size() int { |
| 4734 | return xxx_messageInfo_OfpInstructionGotoTable.Size(m) |
| 4735 | } |
| 4736 | func (m *OfpInstructionGotoTable) XXX_DiscardUnknown() { |
| 4737 | xxx_messageInfo_OfpInstructionGotoTable.DiscardUnknown(m) |
| 4738 | } |
| 4739 | |
| 4740 | var xxx_messageInfo_OfpInstructionGotoTable proto.InternalMessageInfo |
| 4741 | |
| 4742 | func (m *OfpInstructionGotoTable) GetTableId() uint32 { |
| 4743 | if m != nil { |
| 4744 | return m.TableId |
| 4745 | } |
| 4746 | return 0 |
| 4747 | } |
| 4748 | |
| 4749 | // Instruction structure for OFPIT_WRITE_METADATA |
| 4750 | type OfpInstructionWriteMetadata struct { |
| 4751 | Metadata uint64 `protobuf:"varint,1,opt,name=metadata,proto3" json:"metadata,omitempty"` |
| 4752 | MetadataMask uint64 `protobuf:"varint,2,opt,name=metadata_mask,json=metadataMask,proto3" json:"metadata_mask,omitempty"` |
| 4753 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4754 | XXX_unrecognized []byte `json:"-"` |
| 4755 | XXX_sizecache int32 `json:"-"` |
| 4756 | } |
| 4757 | |
| 4758 | func (m *OfpInstructionWriteMetadata) Reset() { *m = OfpInstructionWriteMetadata{} } |
| 4759 | func (m *OfpInstructionWriteMetadata) String() string { return proto.CompactTextString(m) } |
| 4760 | func (*OfpInstructionWriteMetadata) ProtoMessage() {} |
| 4761 | func (*OfpInstructionWriteMetadata) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4762 | return fileDescriptor_08e3a4e375aeddc7, []int{25} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4763 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4764 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4765 | func (m *OfpInstructionWriteMetadata) XXX_Unmarshal(b []byte) error { |
| 4766 | return xxx_messageInfo_OfpInstructionWriteMetadata.Unmarshal(m, b) |
| 4767 | } |
| 4768 | func (m *OfpInstructionWriteMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4769 | return xxx_messageInfo_OfpInstructionWriteMetadata.Marshal(b, m, deterministic) |
| 4770 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4771 | func (m *OfpInstructionWriteMetadata) XXX_Merge(src proto.Message) { |
| 4772 | xxx_messageInfo_OfpInstructionWriteMetadata.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4773 | } |
| 4774 | func (m *OfpInstructionWriteMetadata) XXX_Size() int { |
| 4775 | return xxx_messageInfo_OfpInstructionWriteMetadata.Size(m) |
| 4776 | } |
| 4777 | func (m *OfpInstructionWriteMetadata) XXX_DiscardUnknown() { |
| 4778 | xxx_messageInfo_OfpInstructionWriteMetadata.DiscardUnknown(m) |
| 4779 | } |
| 4780 | |
| 4781 | var xxx_messageInfo_OfpInstructionWriteMetadata proto.InternalMessageInfo |
| 4782 | |
| 4783 | func (m *OfpInstructionWriteMetadata) GetMetadata() uint64 { |
| 4784 | if m != nil { |
| 4785 | return m.Metadata |
| 4786 | } |
| 4787 | return 0 |
| 4788 | } |
| 4789 | |
| 4790 | func (m *OfpInstructionWriteMetadata) GetMetadataMask() uint64 { |
| 4791 | if m != nil { |
| 4792 | return m.MetadataMask |
| 4793 | } |
| 4794 | return 0 |
| 4795 | } |
| 4796 | |
| 4797 | // Instruction structure for OFPIT_WRITE/APPLY/CLEAR_ACTIONS |
| 4798 | type OfpInstructionActions struct { |
| 4799 | Actions []*OfpAction `protobuf:"bytes,1,rep,name=actions,proto3" json:"actions,omitempty"` |
| 4800 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4801 | XXX_unrecognized []byte `json:"-"` |
| 4802 | XXX_sizecache int32 `json:"-"` |
| 4803 | } |
| 4804 | |
| 4805 | func (m *OfpInstructionActions) Reset() { *m = OfpInstructionActions{} } |
| 4806 | func (m *OfpInstructionActions) String() string { return proto.CompactTextString(m) } |
| 4807 | func (*OfpInstructionActions) ProtoMessage() {} |
| 4808 | func (*OfpInstructionActions) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4809 | return fileDescriptor_08e3a4e375aeddc7, []int{26} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4810 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4811 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4812 | func (m *OfpInstructionActions) XXX_Unmarshal(b []byte) error { |
| 4813 | return xxx_messageInfo_OfpInstructionActions.Unmarshal(m, b) |
| 4814 | } |
| 4815 | func (m *OfpInstructionActions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4816 | return xxx_messageInfo_OfpInstructionActions.Marshal(b, m, deterministic) |
| 4817 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4818 | func (m *OfpInstructionActions) XXX_Merge(src proto.Message) { |
| 4819 | xxx_messageInfo_OfpInstructionActions.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4820 | } |
| 4821 | func (m *OfpInstructionActions) XXX_Size() int { |
| 4822 | return xxx_messageInfo_OfpInstructionActions.Size(m) |
| 4823 | } |
| 4824 | func (m *OfpInstructionActions) XXX_DiscardUnknown() { |
| 4825 | xxx_messageInfo_OfpInstructionActions.DiscardUnknown(m) |
| 4826 | } |
| 4827 | |
| 4828 | var xxx_messageInfo_OfpInstructionActions proto.InternalMessageInfo |
| 4829 | |
| 4830 | func (m *OfpInstructionActions) GetActions() []*OfpAction { |
| 4831 | if m != nil { |
| 4832 | return m.Actions |
| 4833 | } |
| 4834 | return nil |
| 4835 | } |
| 4836 | |
| 4837 | // Instruction structure for OFPIT_METER |
| 4838 | type OfpInstructionMeter struct { |
| 4839 | MeterId uint32 `protobuf:"varint,1,opt,name=meter_id,json=meterId,proto3" json:"meter_id,omitempty"` |
| 4840 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4841 | XXX_unrecognized []byte `json:"-"` |
| 4842 | XXX_sizecache int32 `json:"-"` |
| 4843 | } |
| 4844 | |
| 4845 | func (m *OfpInstructionMeter) Reset() { *m = OfpInstructionMeter{} } |
| 4846 | func (m *OfpInstructionMeter) String() string { return proto.CompactTextString(m) } |
| 4847 | func (*OfpInstructionMeter) ProtoMessage() {} |
| 4848 | func (*OfpInstructionMeter) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4849 | return fileDescriptor_08e3a4e375aeddc7, []int{27} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4850 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4851 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4852 | func (m *OfpInstructionMeter) XXX_Unmarshal(b []byte) error { |
| 4853 | return xxx_messageInfo_OfpInstructionMeter.Unmarshal(m, b) |
| 4854 | } |
| 4855 | func (m *OfpInstructionMeter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4856 | return xxx_messageInfo_OfpInstructionMeter.Marshal(b, m, deterministic) |
| 4857 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4858 | func (m *OfpInstructionMeter) XXX_Merge(src proto.Message) { |
| 4859 | xxx_messageInfo_OfpInstructionMeter.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4860 | } |
| 4861 | func (m *OfpInstructionMeter) XXX_Size() int { |
| 4862 | return xxx_messageInfo_OfpInstructionMeter.Size(m) |
| 4863 | } |
| 4864 | func (m *OfpInstructionMeter) XXX_DiscardUnknown() { |
| 4865 | xxx_messageInfo_OfpInstructionMeter.DiscardUnknown(m) |
| 4866 | } |
| 4867 | |
| 4868 | var xxx_messageInfo_OfpInstructionMeter proto.InternalMessageInfo |
| 4869 | |
| 4870 | func (m *OfpInstructionMeter) GetMeterId() uint32 { |
| 4871 | if m != nil { |
| 4872 | return m.MeterId |
| 4873 | } |
| 4874 | return 0 |
| 4875 | } |
| 4876 | |
| 4877 | // Instruction structure for experimental instructions |
| 4878 | type OfpInstructionExperimenter struct { |
| 4879 | Experimenter uint32 `protobuf:"varint,1,opt,name=experimenter,proto3" json:"experimenter,omitempty"` |
| 4880 | // Experimenter-defined arbitrary additional data. |
| 4881 | Data []byte `protobuf:"bytes,2,opt,name=data,proto3" json:"data,omitempty"` |
| 4882 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4883 | XXX_unrecognized []byte `json:"-"` |
| 4884 | XXX_sizecache int32 `json:"-"` |
| 4885 | } |
| 4886 | |
| 4887 | func (m *OfpInstructionExperimenter) Reset() { *m = OfpInstructionExperimenter{} } |
| 4888 | func (m *OfpInstructionExperimenter) String() string { return proto.CompactTextString(m) } |
| 4889 | func (*OfpInstructionExperimenter) ProtoMessage() {} |
| 4890 | func (*OfpInstructionExperimenter) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4891 | return fileDescriptor_08e3a4e375aeddc7, []int{28} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4892 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4893 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4894 | func (m *OfpInstructionExperimenter) XXX_Unmarshal(b []byte) error { |
| 4895 | return xxx_messageInfo_OfpInstructionExperimenter.Unmarshal(m, b) |
| 4896 | } |
| 4897 | func (m *OfpInstructionExperimenter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4898 | return xxx_messageInfo_OfpInstructionExperimenter.Marshal(b, m, deterministic) |
| 4899 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4900 | func (m *OfpInstructionExperimenter) XXX_Merge(src proto.Message) { |
| 4901 | xxx_messageInfo_OfpInstructionExperimenter.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4902 | } |
| 4903 | func (m *OfpInstructionExperimenter) XXX_Size() int { |
| 4904 | return xxx_messageInfo_OfpInstructionExperimenter.Size(m) |
| 4905 | } |
| 4906 | func (m *OfpInstructionExperimenter) XXX_DiscardUnknown() { |
| 4907 | xxx_messageInfo_OfpInstructionExperimenter.DiscardUnknown(m) |
| 4908 | } |
| 4909 | |
| 4910 | var xxx_messageInfo_OfpInstructionExperimenter proto.InternalMessageInfo |
| 4911 | |
| 4912 | func (m *OfpInstructionExperimenter) GetExperimenter() uint32 { |
| 4913 | if m != nil { |
| 4914 | return m.Experimenter |
| 4915 | } |
| 4916 | return 0 |
| 4917 | } |
| 4918 | |
| 4919 | func (m *OfpInstructionExperimenter) GetData() []byte { |
| 4920 | if m != nil { |
| 4921 | return m.Data |
| 4922 | } |
| 4923 | return nil |
| 4924 | } |
| 4925 | |
| 4926 | // Flow setup and teardown (controller -> datapath). |
| 4927 | type OfpFlowMod struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4928 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4929 | Cookie uint64 `protobuf:"varint,1,opt,name=cookie,proto3" json:"cookie,omitempty"` |
| 4930 | CookieMask uint64 `protobuf:"varint,2,opt,name=cookie_mask,json=cookieMask,proto3" json:"cookie_mask,omitempty"` |
| 4931 | TableId uint32 `protobuf:"varint,3,opt,name=table_id,json=tableId,proto3" json:"table_id,omitempty"` |
| 4932 | Command OfpFlowModCommand `protobuf:"varint,4,opt,name=command,proto3,enum=openflow_13.OfpFlowModCommand" json:"command,omitempty"` |
| 4933 | IdleTimeout uint32 `protobuf:"varint,5,opt,name=idle_timeout,json=idleTimeout,proto3" json:"idle_timeout,omitempty"` |
| 4934 | HardTimeout uint32 `protobuf:"varint,6,opt,name=hard_timeout,json=hardTimeout,proto3" json:"hard_timeout,omitempty"` |
| 4935 | Priority uint32 `protobuf:"varint,7,opt,name=priority,proto3" json:"priority,omitempty"` |
| 4936 | BufferId uint32 `protobuf:"varint,8,opt,name=buffer_id,json=bufferId,proto3" json:"buffer_id,omitempty"` |
| 4937 | OutPort uint32 `protobuf:"varint,9,opt,name=out_port,json=outPort,proto3" json:"out_port,omitempty"` |
| 4938 | OutGroup uint32 `protobuf:"varint,10,opt,name=out_group,json=outGroup,proto3" json:"out_group,omitempty"` |
| 4939 | Flags uint32 `protobuf:"varint,11,opt,name=flags,proto3" json:"flags,omitempty"` |
| 4940 | Match *OfpMatch `protobuf:"bytes,12,opt,name=match,proto3" json:"match,omitempty"` |
| 4941 | Instructions []*OfpInstruction `protobuf:"bytes,13,rep,name=instructions,proto3" json:"instructions,omitempty"` |
| 4942 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 4943 | XXX_unrecognized []byte `json:"-"` |
| 4944 | XXX_sizecache int32 `json:"-"` |
| 4945 | } |
| 4946 | |
| 4947 | func (m *OfpFlowMod) Reset() { *m = OfpFlowMod{} } |
| 4948 | func (m *OfpFlowMod) String() string { return proto.CompactTextString(m) } |
| 4949 | func (*OfpFlowMod) ProtoMessage() {} |
| 4950 | func (*OfpFlowMod) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4951 | return fileDescriptor_08e3a4e375aeddc7, []int{29} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4952 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4953 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4954 | func (m *OfpFlowMod) XXX_Unmarshal(b []byte) error { |
| 4955 | return xxx_messageInfo_OfpFlowMod.Unmarshal(m, b) |
| 4956 | } |
| 4957 | func (m *OfpFlowMod) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 4958 | return xxx_messageInfo_OfpFlowMod.Marshal(b, m, deterministic) |
| 4959 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 4960 | func (m *OfpFlowMod) XXX_Merge(src proto.Message) { |
| 4961 | xxx_messageInfo_OfpFlowMod.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 4962 | } |
| 4963 | func (m *OfpFlowMod) XXX_Size() int { |
| 4964 | return xxx_messageInfo_OfpFlowMod.Size(m) |
| 4965 | } |
| 4966 | func (m *OfpFlowMod) XXX_DiscardUnknown() { |
| 4967 | xxx_messageInfo_OfpFlowMod.DiscardUnknown(m) |
| 4968 | } |
| 4969 | |
| 4970 | var xxx_messageInfo_OfpFlowMod proto.InternalMessageInfo |
| 4971 | |
| 4972 | func (m *OfpFlowMod) GetCookie() uint64 { |
| 4973 | if m != nil { |
| 4974 | return m.Cookie |
| 4975 | } |
| 4976 | return 0 |
| 4977 | } |
| 4978 | |
| 4979 | func (m *OfpFlowMod) GetCookieMask() uint64 { |
| 4980 | if m != nil { |
| 4981 | return m.CookieMask |
| 4982 | } |
| 4983 | return 0 |
| 4984 | } |
| 4985 | |
| 4986 | func (m *OfpFlowMod) GetTableId() uint32 { |
| 4987 | if m != nil { |
| 4988 | return m.TableId |
| 4989 | } |
| 4990 | return 0 |
| 4991 | } |
| 4992 | |
| 4993 | func (m *OfpFlowMod) GetCommand() OfpFlowModCommand { |
| 4994 | if m != nil { |
| 4995 | return m.Command |
| 4996 | } |
| 4997 | return OfpFlowModCommand_OFPFC_ADD |
| 4998 | } |
| 4999 | |
| 5000 | func (m *OfpFlowMod) GetIdleTimeout() uint32 { |
| 5001 | if m != nil { |
| 5002 | return m.IdleTimeout |
| 5003 | } |
| 5004 | return 0 |
| 5005 | } |
| 5006 | |
| 5007 | func (m *OfpFlowMod) GetHardTimeout() uint32 { |
| 5008 | if m != nil { |
| 5009 | return m.HardTimeout |
| 5010 | } |
| 5011 | return 0 |
| 5012 | } |
| 5013 | |
| 5014 | func (m *OfpFlowMod) GetPriority() uint32 { |
| 5015 | if m != nil { |
| 5016 | return m.Priority |
| 5017 | } |
| 5018 | return 0 |
| 5019 | } |
| 5020 | |
| 5021 | func (m *OfpFlowMod) GetBufferId() uint32 { |
| 5022 | if m != nil { |
| 5023 | return m.BufferId |
| 5024 | } |
| 5025 | return 0 |
| 5026 | } |
| 5027 | |
| 5028 | func (m *OfpFlowMod) GetOutPort() uint32 { |
| 5029 | if m != nil { |
| 5030 | return m.OutPort |
| 5031 | } |
| 5032 | return 0 |
| 5033 | } |
| 5034 | |
| 5035 | func (m *OfpFlowMod) GetOutGroup() uint32 { |
| 5036 | if m != nil { |
| 5037 | return m.OutGroup |
| 5038 | } |
| 5039 | return 0 |
| 5040 | } |
| 5041 | |
| 5042 | func (m *OfpFlowMod) GetFlags() uint32 { |
| 5043 | if m != nil { |
| 5044 | return m.Flags |
| 5045 | } |
| 5046 | return 0 |
| 5047 | } |
| 5048 | |
| 5049 | func (m *OfpFlowMod) GetMatch() *OfpMatch { |
| 5050 | if m != nil { |
| 5051 | return m.Match |
| 5052 | } |
| 5053 | return nil |
| 5054 | } |
| 5055 | |
| 5056 | func (m *OfpFlowMod) GetInstructions() []*OfpInstruction { |
| 5057 | if m != nil { |
| 5058 | return m.Instructions |
| 5059 | } |
| 5060 | return nil |
| 5061 | } |
| 5062 | |
| 5063 | // Bucket for use in groups. |
| 5064 | type OfpBucket struct { |
| 5065 | Weight uint32 `protobuf:"varint,1,opt,name=weight,proto3" json:"weight,omitempty"` |
| 5066 | WatchPort uint32 `protobuf:"varint,2,opt,name=watch_port,json=watchPort,proto3" json:"watch_port,omitempty"` |
| 5067 | WatchGroup uint32 `protobuf:"varint,3,opt,name=watch_group,json=watchGroup,proto3" json:"watch_group,omitempty"` |
| 5068 | Actions []*OfpAction `protobuf:"bytes,4,rep,name=actions,proto3" json:"actions,omitempty"` |
| 5069 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5070 | XXX_unrecognized []byte `json:"-"` |
| 5071 | XXX_sizecache int32 `json:"-"` |
| 5072 | } |
| 5073 | |
| 5074 | func (m *OfpBucket) Reset() { *m = OfpBucket{} } |
| 5075 | func (m *OfpBucket) String() string { return proto.CompactTextString(m) } |
| 5076 | func (*OfpBucket) ProtoMessage() {} |
| 5077 | func (*OfpBucket) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5078 | return fileDescriptor_08e3a4e375aeddc7, []int{30} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5079 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5080 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5081 | func (m *OfpBucket) XXX_Unmarshal(b []byte) error { |
| 5082 | return xxx_messageInfo_OfpBucket.Unmarshal(m, b) |
| 5083 | } |
| 5084 | func (m *OfpBucket) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5085 | return xxx_messageInfo_OfpBucket.Marshal(b, m, deterministic) |
| 5086 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5087 | func (m *OfpBucket) XXX_Merge(src proto.Message) { |
| 5088 | xxx_messageInfo_OfpBucket.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5089 | } |
| 5090 | func (m *OfpBucket) XXX_Size() int { |
| 5091 | return xxx_messageInfo_OfpBucket.Size(m) |
| 5092 | } |
| 5093 | func (m *OfpBucket) XXX_DiscardUnknown() { |
| 5094 | xxx_messageInfo_OfpBucket.DiscardUnknown(m) |
| 5095 | } |
| 5096 | |
| 5097 | var xxx_messageInfo_OfpBucket proto.InternalMessageInfo |
| 5098 | |
| 5099 | func (m *OfpBucket) GetWeight() uint32 { |
| 5100 | if m != nil { |
| 5101 | return m.Weight |
| 5102 | } |
| 5103 | return 0 |
| 5104 | } |
| 5105 | |
| 5106 | func (m *OfpBucket) GetWatchPort() uint32 { |
| 5107 | if m != nil { |
| 5108 | return m.WatchPort |
| 5109 | } |
| 5110 | return 0 |
| 5111 | } |
| 5112 | |
| 5113 | func (m *OfpBucket) GetWatchGroup() uint32 { |
| 5114 | if m != nil { |
| 5115 | return m.WatchGroup |
| 5116 | } |
| 5117 | return 0 |
| 5118 | } |
| 5119 | |
| 5120 | func (m *OfpBucket) GetActions() []*OfpAction { |
| 5121 | if m != nil { |
| 5122 | return m.Actions |
| 5123 | } |
| 5124 | return nil |
| 5125 | } |
| 5126 | |
| 5127 | // Group setup and teardown (controller -> datapath). |
| 5128 | type OfpGroupMod struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5129 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5130 | Command OfpGroupModCommand `protobuf:"varint,1,opt,name=command,proto3,enum=openflow_13.OfpGroupModCommand" json:"command,omitempty"` |
| 5131 | Type OfpGroupType `protobuf:"varint,2,opt,name=type,proto3,enum=openflow_13.OfpGroupType" json:"type,omitempty"` |
| 5132 | GroupId uint32 `protobuf:"varint,3,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"` |
| 5133 | Buckets []*OfpBucket `protobuf:"bytes,4,rep,name=buckets,proto3" json:"buckets,omitempty"` |
| 5134 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5135 | XXX_unrecognized []byte `json:"-"` |
| 5136 | XXX_sizecache int32 `json:"-"` |
| 5137 | } |
| 5138 | |
| 5139 | func (m *OfpGroupMod) Reset() { *m = OfpGroupMod{} } |
| 5140 | func (m *OfpGroupMod) String() string { return proto.CompactTextString(m) } |
| 5141 | func (*OfpGroupMod) ProtoMessage() {} |
| 5142 | func (*OfpGroupMod) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5143 | return fileDescriptor_08e3a4e375aeddc7, []int{31} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5144 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5145 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5146 | func (m *OfpGroupMod) XXX_Unmarshal(b []byte) error { |
| 5147 | return xxx_messageInfo_OfpGroupMod.Unmarshal(m, b) |
| 5148 | } |
| 5149 | func (m *OfpGroupMod) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5150 | return xxx_messageInfo_OfpGroupMod.Marshal(b, m, deterministic) |
| 5151 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5152 | func (m *OfpGroupMod) XXX_Merge(src proto.Message) { |
| 5153 | xxx_messageInfo_OfpGroupMod.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5154 | } |
| 5155 | func (m *OfpGroupMod) XXX_Size() int { |
| 5156 | return xxx_messageInfo_OfpGroupMod.Size(m) |
| 5157 | } |
| 5158 | func (m *OfpGroupMod) XXX_DiscardUnknown() { |
| 5159 | xxx_messageInfo_OfpGroupMod.DiscardUnknown(m) |
| 5160 | } |
| 5161 | |
| 5162 | var xxx_messageInfo_OfpGroupMod proto.InternalMessageInfo |
| 5163 | |
| 5164 | func (m *OfpGroupMod) GetCommand() OfpGroupModCommand { |
| 5165 | if m != nil { |
| 5166 | return m.Command |
| 5167 | } |
| 5168 | return OfpGroupModCommand_OFPGC_ADD |
| 5169 | } |
| 5170 | |
| 5171 | func (m *OfpGroupMod) GetType() OfpGroupType { |
| 5172 | if m != nil { |
| 5173 | return m.Type |
| 5174 | } |
| 5175 | return OfpGroupType_OFPGT_ALL |
| 5176 | } |
| 5177 | |
| 5178 | func (m *OfpGroupMod) GetGroupId() uint32 { |
| 5179 | if m != nil { |
| 5180 | return m.GroupId |
| 5181 | } |
| 5182 | return 0 |
| 5183 | } |
| 5184 | |
| 5185 | func (m *OfpGroupMod) GetBuckets() []*OfpBucket { |
| 5186 | if m != nil { |
| 5187 | return m.Buckets |
| 5188 | } |
| 5189 | return nil |
| 5190 | } |
| 5191 | |
| 5192 | // Send packet (controller -> datapath). |
| 5193 | type OfpPacketOut struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5194 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5195 | BufferId uint32 `protobuf:"varint,1,opt,name=buffer_id,json=bufferId,proto3" json:"buffer_id,omitempty"` |
| 5196 | InPort uint32 `protobuf:"varint,2,opt,name=in_port,json=inPort,proto3" json:"in_port,omitempty"` |
| 5197 | Actions []*OfpAction `protobuf:"bytes,3,rep,name=actions,proto3" json:"actions,omitempty"` |
| 5198 | // The variable size action list is optionally followed by packet data. |
| 5199 | // This data is only present and meaningful if buffer_id == -1. |
| 5200 | Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"` |
| 5201 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5202 | XXX_unrecognized []byte `json:"-"` |
| 5203 | XXX_sizecache int32 `json:"-"` |
| 5204 | } |
| 5205 | |
| 5206 | func (m *OfpPacketOut) Reset() { *m = OfpPacketOut{} } |
| 5207 | func (m *OfpPacketOut) String() string { return proto.CompactTextString(m) } |
| 5208 | func (*OfpPacketOut) ProtoMessage() {} |
| 5209 | func (*OfpPacketOut) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5210 | return fileDescriptor_08e3a4e375aeddc7, []int{32} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5211 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5212 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5213 | func (m *OfpPacketOut) XXX_Unmarshal(b []byte) error { |
| 5214 | return xxx_messageInfo_OfpPacketOut.Unmarshal(m, b) |
| 5215 | } |
| 5216 | func (m *OfpPacketOut) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5217 | return xxx_messageInfo_OfpPacketOut.Marshal(b, m, deterministic) |
| 5218 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5219 | func (m *OfpPacketOut) XXX_Merge(src proto.Message) { |
| 5220 | xxx_messageInfo_OfpPacketOut.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5221 | } |
| 5222 | func (m *OfpPacketOut) XXX_Size() int { |
| 5223 | return xxx_messageInfo_OfpPacketOut.Size(m) |
| 5224 | } |
| 5225 | func (m *OfpPacketOut) XXX_DiscardUnknown() { |
| 5226 | xxx_messageInfo_OfpPacketOut.DiscardUnknown(m) |
| 5227 | } |
| 5228 | |
| 5229 | var xxx_messageInfo_OfpPacketOut proto.InternalMessageInfo |
| 5230 | |
| 5231 | func (m *OfpPacketOut) GetBufferId() uint32 { |
| 5232 | if m != nil { |
| 5233 | return m.BufferId |
| 5234 | } |
| 5235 | return 0 |
| 5236 | } |
| 5237 | |
| 5238 | func (m *OfpPacketOut) GetInPort() uint32 { |
| 5239 | if m != nil { |
| 5240 | return m.InPort |
| 5241 | } |
| 5242 | return 0 |
| 5243 | } |
| 5244 | |
| 5245 | func (m *OfpPacketOut) GetActions() []*OfpAction { |
| 5246 | if m != nil { |
| 5247 | return m.Actions |
| 5248 | } |
| 5249 | return nil |
| 5250 | } |
| 5251 | |
| 5252 | func (m *OfpPacketOut) GetData() []byte { |
| 5253 | if m != nil { |
| 5254 | return m.Data |
| 5255 | } |
| 5256 | return nil |
| 5257 | } |
| 5258 | |
| 5259 | // Packet received on port (datapath -> controller). |
| 5260 | type OfpPacketIn struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5261 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5262 | BufferId uint32 `protobuf:"varint,1,opt,name=buffer_id,json=bufferId,proto3" json:"buffer_id,omitempty"` |
| 5263 | Reason OfpPacketInReason `protobuf:"varint,2,opt,name=reason,proto3,enum=openflow_13.OfpPacketInReason" json:"reason,omitempty"` |
| 5264 | TableId uint32 `protobuf:"varint,3,opt,name=table_id,json=tableId,proto3" json:"table_id,omitempty"` |
| 5265 | Cookie uint64 `protobuf:"varint,4,opt,name=cookie,proto3" json:"cookie,omitempty"` |
| 5266 | Match *OfpMatch `protobuf:"bytes,5,opt,name=match,proto3" json:"match,omitempty"` |
| 5267 | Data []byte `protobuf:"bytes,6,opt,name=data,proto3" json:"data,omitempty"` |
| 5268 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5269 | XXX_unrecognized []byte `json:"-"` |
| 5270 | XXX_sizecache int32 `json:"-"` |
| 5271 | } |
| 5272 | |
| 5273 | func (m *OfpPacketIn) Reset() { *m = OfpPacketIn{} } |
| 5274 | func (m *OfpPacketIn) String() string { return proto.CompactTextString(m) } |
| 5275 | func (*OfpPacketIn) ProtoMessage() {} |
| 5276 | func (*OfpPacketIn) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5277 | return fileDescriptor_08e3a4e375aeddc7, []int{33} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5278 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5279 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5280 | func (m *OfpPacketIn) XXX_Unmarshal(b []byte) error { |
| 5281 | return xxx_messageInfo_OfpPacketIn.Unmarshal(m, b) |
| 5282 | } |
| 5283 | func (m *OfpPacketIn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5284 | return xxx_messageInfo_OfpPacketIn.Marshal(b, m, deterministic) |
| 5285 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5286 | func (m *OfpPacketIn) XXX_Merge(src proto.Message) { |
| 5287 | xxx_messageInfo_OfpPacketIn.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5288 | } |
| 5289 | func (m *OfpPacketIn) XXX_Size() int { |
| 5290 | return xxx_messageInfo_OfpPacketIn.Size(m) |
| 5291 | } |
| 5292 | func (m *OfpPacketIn) XXX_DiscardUnknown() { |
| 5293 | xxx_messageInfo_OfpPacketIn.DiscardUnknown(m) |
| 5294 | } |
| 5295 | |
| 5296 | var xxx_messageInfo_OfpPacketIn proto.InternalMessageInfo |
| 5297 | |
| 5298 | func (m *OfpPacketIn) GetBufferId() uint32 { |
| 5299 | if m != nil { |
| 5300 | return m.BufferId |
| 5301 | } |
| 5302 | return 0 |
| 5303 | } |
| 5304 | |
| 5305 | func (m *OfpPacketIn) GetReason() OfpPacketInReason { |
| 5306 | if m != nil { |
| 5307 | return m.Reason |
| 5308 | } |
| 5309 | return OfpPacketInReason_OFPR_NO_MATCH |
| 5310 | } |
| 5311 | |
| 5312 | func (m *OfpPacketIn) GetTableId() uint32 { |
| 5313 | if m != nil { |
| 5314 | return m.TableId |
| 5315 | } |
| 5316 | return 0 |
| 5317 | } |
| 5318 | |
| 5319 | func (m *OfpPacketIn) GetCookie() uint64 { |
| 5320 | if m != nil { |
| 5321 | return m.Cookie |
| 5322 | } |
| 5323 | return 0 |
| 5324 | } |
| 5325 | |
| 5326 | func (m *OfpPacketIn) GetMatch() *OfpMatch { |
| 5327 | if m != nil { |
| 5328 | return m.Match |
| 5329 | } |
| 5330 | return nil |
| 5331 | } |
| 5332 | |
| 5333 | func (m *OfpPacketIn) GetData() []byte { |
| 5334 | if m != nil { |
| 5335 | return m.Data |
| 5336 | } |
| 5337 | return nil |
| 5338 | } |
| 5339 | |
| 5340 | // Flow removed (datapath -> controller). |
| 5341 | type OfpFlowRemoved struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5342 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5343 | Cookie uint64 `protobuf:"varint,1,opt,name=cookie,proto3" json:"cookie,omitempty"` |
| 5344 | Priority uint32 `protobuf:"varint,2,opt,name=priority,proto3" json:"priority,omitempty"` |
| 5345 | Reason OfpFlowRemovedReason `protobuf:"varint,3,opt,name=reason,proto3,enum=openflow_13.OfpFlowRemovedReason" json:"reason,omitempty"` |
| 5346 | TableId uint32 `protobuf:"varint,4,opt,name=table_id,json=tableId,proto3" json:"table_id,omitempty"` |
| 5347 | DurationSec uint32 `protobuf:"varint,5,opt,name=duration_sec,json=durationSec,proto3" json:"duration_sec,omitempty"` |
| 5348 | DurationNsec uint32 `protobuf:"varint,6,opt,name=duration_nsec,json=durationNsec,proto3" json:"duration_nsec,omitempty"` |
| 5349 | IdleTimeout uint32 `protobuf:"varint,7,opt,name=idle_timeout,json=idleTimeout,proto3" json:"idle_timeout,omitempty"` |
| 5350 | HardTimeout uint32 `protobuf:"varint,8,opt,name=hard_timeout,json=hardTimeout,proto3" json:"hard_timeout,omitempty"` |
| 5351 | PacketCount uint64 `protobuf:"varint,9,opt,name=packet_count,json=packetCount,proto3" json:"packet_count,omitempty"` |
| 5352 | ByteCount uint64 `protobuf:"varint,10,opt,name=byte_count,json=byteCount,proto3" json:"byte_count,omitempty"` |
| 5353 | Match *OfpMatch `protobuf:"bytes,121,opt,name=match,proto3" json:"match,omitempty"` |
| 5354 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5355 | XXX_unrecognized []byte `json:"-"` |
| 5356 | XXX_sizecache int32 `json:"-"` |
| 5357 | } |
| 5358 | |
| 5359 | func (m *OfpFlowRemoved) Reset() { *m = OfpFlowRemoved{} } |
| 5360 | func (m *OfpFlowRemoved) String() string { return proto.CompactTextString(m) } |
| 5361 | func (*OfpFlowRemoved) ProtoMessage() {} |
| 5362 | func (*OfpFlowRemoved) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5363 | return fileDescriptor_08e3a4e375aeddc7, []int{34} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5364 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5365 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5366 | func (m *OfpFlowRemoved) XXX_Unmarshal(b []byte) error { |
| 5367 | return xxx_messageInfo_OfpFlowRemoved.Unmarshal(m, b) |
| 5368 | } |
| 5369 | func (m *OfpFlowRemoved) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5370 | return xxx_messageInfo_OfpFlowRemoved.Marshal(b, m, deterministic) |
| 5371 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5372 | func (m *OfpFlowRemoved) XXX_Merge(src proto.Message) { |
| 5373 | xxx_messageInfo_OfpFlowRemoved.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5374 | } |
| 5375 | func (m *OfpFlowRemoved) XXX_Size() int { |
| 5376 | return xxx_messageInfo_OfpFlowRemoved.Size(m) |
| 5377 | } |
| 5378 | func (m *OfpFlowRemoved) XXX_DiscardUnknown() { |
| 5379 | xxx_messageInfo_OfpFlowRemoved.DiscardUnknown(m) |
| 5380 | } |
| 5381 | |
| 5382 | var xxx_messageInfo_OfpFlowRemoved proto.InternalMessageInfo |
| 5383 | |
| 5384 | func (m *OfpFlowRemoved) GetCookie() uint64 { |
| 5385 | if m != nil { |
| 5386 | return m.Cookie |
| 5387 | } |
| 5388 | return 0 |
| 5389 | } |
| 5390 | |
| 5391 | func (m *OfpFlowRemoved) GetPriority() uint32 { |
| 5392 | if m != nil { |
| 5393 | return m.Priority |
| 5394 | } |
| 5395 | return 0 |
| 5396 | } |
| 5397 | |
| 5398 | func (m *OfpFlowRemoved) GetReason() OfpFlowRemovedReason { |
| 5399 | if m != nil { |
| 5400 | return m.Reason |
| 5401 | } |
| 5402 | return OfpFlowRemovedReason_OFPRR_IDLE_TIMEOUT |
| 5403 | } |
| 5404 | |
| 5405 | func (m *OfpFlowRemoved) GetTableId() uint32 { |
| 5406 | if m != nil { |
| 5407 | return m.TableId |
| 5408 | } |
| 5409 | return 0 |
| 5410 | } |
| 5411 | |
| 5412 | func (m *OfpFlowRemoved) GetDurationSec() uint32 { |
| 5413 | if m != nil { |
| 5414 | return m.DurationSec |
| 5415 | } |
| 5416 | return 0 |
| 5417 | } |
| 5418 | |
| 5419 | func (m *OfpFlowRemoved) GetDurationNsec() uint32 { |
| 5420 | if m != nil { |
| 5421 | return m.DurationNsec |
| 5422 | } |
| 5423 | return 0 |
| 5424 | } |
| 5425 | |
| 5426 | func (m *OfpFlowRemoved) GetIdleTimeout() uint32 { |
| 5427 | if m != nil { |
| 5428 | return m.IdleTimeout |
| 5429 | } |
| 5430 | return 0 |
| 5431 | } |
| 5432 | |
| 5433 | func (m *OfpFlowRemoved) GetHardTimeout() uint32 { |
| 5434 | if m != nil { |
| 5435 | return m.HardTimeout |
| 5436 | } |
| 5437 | return 0 |
| 5438 | } |
| 5439 | |
| 5440 | func (m *OfpFlowRemoved) GetPacketCount() uint64 { |
| 5441 | if m != nil { |
| 5442 | return m.PacketCount |
| 5443 | } |
| 5444 | return 0 |
| 5445 | } |
| 5446 | |
| 5447 | func (m *OfpFlowRemoved) GetByteCount() uint64 { |
| 5448 | if m != nil { |
| 5449 | return m.ByteCount |
| 5450 | } |
| 5451 | return 0 |
| 5452 | } |
| 5453 | |
| 5454 | func (m *OfpFlowRemoved) GetMatch() *OfpMatch { |
| 5455 | if m != nil { |
| 5456 | return m.Match |
| 5457 | } |
| 5458 | return nil |
| 5459 | } |
| 5460 | |
| 5461 | // Common header for all meter bands |
| 5462 | type OfpMeterBandHeader struct { |
| 5463 | Type OfpMeterBandType `protobuf:"varint,1,opt,name=type,proto3,enum=openflow_13.OfpMeterBandType" json:"type,omitempty"` |
William Kurkian | 6ea97f8 | 2019-03-13 15:51:55 -0400 | [diff] [blame] | 5464 | Rate uint32 `protobuf:"varint,2,opt,name=rate,proto3" json:"rate,omitempty"` |
| 5465 | BurstSize uint32 `protobuf:"varint,3,opt,name=burst_size,json=burstSize,proto3" json:"burst_size,omitempty"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5466 | // Types that are valid to be assigned to Data: |
| 5467 | // *OfpMeterBandHeader_Drop |
| 5468 | // *OfpMeterBandHeader_DscpRemark |
| 5469 | // *OfpMeterBandHeader_Experimenter |
| 5470 | Data isOfpMeterBandHeader_Data `protobuf_oneof:"data"` |
| 5471 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5472 | XXX_unrecognized []byte `json:"-"` |
| 5473 | XXX_sizecache int32 `json:"-"` |
| 5474 | } |
| 5475 | |
| 5476 | func (m *OfpMeterBandHeader) Reset() { *m = OfpMeterBandHeader{} } |
| 5477 | func (m *OfpMeterBandHeader) String() string { return proto.CompactTextString(m) } |
| 5478 | func (*OfpMeterBandHeader) ProtoMessage() {} |
| 5479 | func (*OfpMeterBandHeader) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5480 | return fileDescriptor_08e3a4e375aeddc7, []int{35} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5481 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5482 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5483 | func (m *OfpMeterBandHeader) XXX_Unmarshal(b []byte) error { |
| 5484 | return xxx_messageInfo_OfpMeterBandHeader.Unmarshal(m, b) |
| 5485 | } |
| 5486 | func (m *OfpMeterBandHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5487 | return xxx_messageInfo_OfpMeterBandHeader.Marshal(b, m, deterministic) |
| 5488 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5489 | func (m *OfpMeterBandHeader) XXX_Merge(src proto.Message) { |
| 5490 | xxx_messageInfo_OfpMeterBandHeader.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5491 | } |
| 5492 | func (m *OfpMeterBandHeader) XXX_Size() int { |
| 5493 | return xxx_messageInfo_OfpMeterBandHeader.Size(m) |
| 5494 | } |
| 5495 | func (m *OfpMeterBandHeader) XXX_DiscardUnknown() { |
| 5496 | xxx_messageInfo_OfpMeterBandHeader.DiscardUnknown(m) |
| 5497 | } |
| 5498 | |
| 5499 | var xxx_messageInfo_OfpMeterBandHeader proto.InternalMessageInfo |
| 5500 | |
| 5501 | func (m *OfpMeterBandHeader) GetType() OfpMeterBandType { |
| 5502 | if m != nil { |
| 5503 | return m.Type |
| 5504 | } |
| 5505 | return OfpMeterBandType_OFPMBT_INVALID |
| 5506 | } |
| 5507 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5508 | func (m *OfpMeterBandHeader) GetRate() uint32 { |
| 5509 | if m != nil { |
| 5510 | return m.Rate |
| 5511 | } |
| 5512 | return 0 |
| 5513 | } |
| 5514 | |
| 5515 | func (m *OfpMeterBandHeader) GetBurstSize() uint32 { |
| 5516 | if m != nil { |
| 5517 | return m.BurstSize |
| 5518 | } |
| 5519 | return 0 |
| 5520 | } |
| 5521 | |
| 5522 | type isOfpMeterBandHeader_Data interface { |
| 5523 | isOfpMeterBandHeader_Data() |
| 5524 | } |
| 5525 | |
| 5526 | type OfpMeterBandHeader_Drop struct { |
William Kurkian | 6ea97f8 | 2019-03-13 15:51:55 -0400 | [diff] [blame] | 5527 | Drop *OfpMeterBandDrop `protobuf:"bytes,4,opt,name=drop,proto3,oneof"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5528 | } |
| 5529 | |
| 5530 | type OfpMeterBandHeader_DscpRemark struct { |
William Kurkian | 6ea97f8 | 2019-03-13 15:51:55 -0400 | [diff] [blame] | 5531 | DscpRemark *OfpMeterBandDscpRemark `protobuf:"bytes,5,opt,name=dscp_remark,json=dscpRemark,proto3,oneof"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5532 | } |
| 5533 | |
| 5534 | type OfpMeterBandHeader_Experimenter struct { |
William Kurkian | 6ea97f8 | 2019-03-13 15:51:55 -0400 | [diff] [blame] | 5535 | Experimenter *OfpMeterBandExperimenter `protobuf:"bytes,6,opt,name=experimenter,proto3,oneof"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5536 | } |
| 5537 | |
| 5538 | func (*OfpMeterBandHeader_Drop) isOfpMeterBandHeader_Data() {} |
| 5539 | |
| 5540 | func (*OfpMeterBandHeader_DscpRemark) isOfpMeterBandHeader_Data() {} |
| 5541 | |
| 5542 | func (*OfpMeterBandHeader_Experimenter) isOfpMeterBandHeader_Data() {} |
| 5543 | |
| 5544 | func (m *OfpMeterBandHeader) GetData() isOfpMeterBandHeader_Data { |
| 5545 | if m != nil { |
| 5546 | return m.Data |
| 5547 | } |
| 5548 | return nil |
| 5549 | } |
| 5550 | |
| 5551 | func (m *OfpMeterBandHeader) GetDrop() *OfpMeterBandDrop { |
| 5552 | if x, ok := m.GetData().(*OfpMeterBandHeader_Drop); ok { |
| 5553 | return x.Drop |
| 5554 | } |
| 5555 | return nil |
| 5556 | } |
| 5557 | |
| 5558 | func (m *OfpMeterBandHeader) GetDscpRemark() *OfpMeterBandDscpRemark { |
| 5559 | if x, ok := m.GetData().(*OfpMeterBandHeader_DscpRemark); ok { |
| 5560 | return x.DscpRemark |
| 5561 | } |
| 5562 | return nil |
| 5563 | } |
| 5564 | |
| 5565 | func (m *OfpMeterBandHeader) GetExperimenter() *OfpMeterBandExperimenter { |
| 5566 | if x, ok := m.GetData().(*OfpMeterBandHeader_Experimenter); ok { |
| 5567 | return x.Experimenter |
| 5568 | } |
| 5569 | return nil |
| 5570 | } |
| 5571 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5572 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 5573 | func (*OfpMeterBandHeader) XXX_OneofWrappers() []interface{} { |
| 5574 | return []interface{}{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5575 | (*OfpMeterBandHeader_Drop)(nil), |
| 5576 | (*OfpMeterBandHeader_DscpRemark)(nil), |
| 5577 | (*OfpMeterBandHeader_Experimenter)(nil), |
| 5578 | } |
| 5579 | } |
| 5580 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5581 | // OFPMBT_DROP band - drop packets |
| 5582 | type OfpMeterBandDrop struct { |
| 5583 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5584 | XXX_unrecognized []byte `json:"-"` |
| 5585 | XXX_sizecache int32 `json:"-"` |
| 5586 | } |
| 5587 | |
| 5588 | func (m *OfpMeterBandDrop) Reset() { *m = OfpMeterBandDrop{} } |
| 5589 | func (m *OfpMeterBandDrop) String() string { return proto.CompactTextString(m) } |
| 5590 | func (*OfpMeterBandDrop) ProtoMessage() {} |
| 5591 | func (*OfpMeterBandDrop) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5592 | return fileDescriptor_08e3a4e375aeddc7, []int{36} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5593 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5594 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5595 | func (m *OfpMeterBandDrop) XXX_Unmarshal(b []byte) error { |
| 5596 | return xxx_messageInfo_OfpMeterBandDrop.Unmarshal(m, b) |
| 5597 | } |
| 5598 | func (m *OfpMeterBandDrop) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5599 | return xxx_messageInfo_OfpMeterBandDrop.Marshal(b, m, deterministic) |
| 5600 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5601 | func (m *OfpMeterBandDrop) XXX_Merge(src proto.Message) { |
| 5602 | xxx_messageInfo_OfpMeterBandDrop.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5603 | } |
| 5604 | func (m *OfpMeterBandDrop) XXX_Size() int { |
| 5605 | return xxx_messageInfo_OfpMeterBandDrop.Size(m) |
| 5606 | } |
| 5607 | func (m *OfpMeterBandDrop) XXX_DiscardUnknown() { |
| 5608 | xxx_messageInfo_OfpMeterBandDrop.DiscardUnknown(m) |
| 5609 | } |
| 5610 | |
| 5611 | var xxx_messageInfo_OfpMeterBandDrop proto.InternalMessageInfo |
| 5612 | |
| 5613 | // OFPMBT_DSCP_REMARK band - Remark DSCP in the IP header |
| 5614 | type OfpMeterBandDscpRemark struct { |
| 5615 | PrecLevel uint32 `protobuf:"varint,1,opt,name=prec_level,json=precLevel,proto3" json:"prec_level,omitempty"` |
| 5616 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5617 | XXX_unrecognized []byte `json:"-"` |
| 5618 | XXX_sizecache int32 `json:"-"` |
| 5619 | } |
| 5620 | |
| 5621 | func (m *OfpMeterBandDscpRemark) Reset() { *m = OfpMeterBandDscpRemark{} } |
| 5622 | func (m *OfpMeterBandDscpRemark) String() string { return proto.CompactTextString(m) } |
| 5623 | func (*OfpMeterBandDscpRemark) ProtoMessage() {} |
| 5624 | func (*OfpMeterBandDscpRemark) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5625 | return fileDescriptor_08e3a4e375aeddc7, []int{37} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5626 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5627 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5628 | func (m *OfpMeterBandDscpRemark) XXX_Unmarshal(b []byte) error { |
| 5629 | return xxx_messageInfo_OfpMeterBandDscpRemark.Unmarshal(m, b) |
| 5630 | } |
| 5631 | func (m *OfpMeterBandDscpRemark) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5632 | return xxx_messageInfo_OfpMeterBandDscpRemark.Marshal(b, m, deterministic) |
| 5633 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5634 | func (m *OfpMeterBandDscpRemark) XXX_Merge(src proto.Message) { |
| 5635 | xxx_messageInfo_OfpMeterBandDscpRemark.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5636 | } |
| 5637 | func (m *OfpMeterBandDscpRemark) XXX_Size() int { |
| 5638 | return xxx_messageInfo_OfpMeterBandDscpRemark.Size(m) |
| 5639 | } |
| 5640 | func (m *OfpMeterBandDscpRemark) XXX_DiscardUnknown() { |
| 5641 | xxx_messageInfo_OfpMeterBandDscpRemark.DiscardUnknown(m) |
| 5642 | } |
| 5643 | |
| 5644 | var xxx_messageInfo_OfpMeterBandDscpRemark proto.InternalMessageInfo |
| 5645 | |
| 5646 | func (m *OfpMeterBandDscpRemark) GetPrecLevel() uint32 { |
| 5647 | if m != nil { |
| 5648 | return m.PrecLevel |
| 5649 | } |
| 5650 | return 0 |
| 5651 | } |
| 5652 | |
| 5653 | // OFPMBT_EXPERIMENTER band - Experimenter type. |
| 5654 | // The rest of the band is experimenter-defined. |
| 5655 | type OfpMeterBandExperimenter struct { |
| 5656 | Experimenter uint32 `protobuf:"varint,1,opt,name=experimenter,proto3" json:"experimenter,omitempty"` |
| 5657 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5658 | XXX_unrecognized []byte `json:"-"` |
| 5659 | XXX_sizecache int32 `json:"-"` |
| 5660 | } |
| 5661 | |
| 5662 | func (m *OfpMeterBandExperimenter) Reset() { *m = OfpMeterBandExperimenter{} } |
| 5663 | func (m *OfpMeterBandExperimenter) String() string { return proto.CompactTextString(m) } |
| 5664 | func (*OfpMeterBandExperimenter) ProtoMessage() {} |
| 5665 | func (*OfpMeterBandExperimenter) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5666 | return fileDescriptor_08e3a4e375aeddc7, []int{38} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5667 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5668 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5669 | func (m *OfpMeterBandExperimenter) XXX_Unmarshal(b []byte) error { |
| 5670 | return xxx_messageInfo_OfpMeterBandExperimenter.Unmarshal(m, b) |
| 5671 | } |
| 5672 | func (m *OfpMeterBandExperimenter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5673 | return xxx_messageInfo_OfpMeterBandExperimenter.Marshal(b, m, deterministic) |
| 5674 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5675 | func (m *OfpMeterBandExperimenter) XXX_Merge(src proto.Message) { |
| 5676 | xxx_messageInfo_OfpMeterBandExperimenter.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5677 | } |
| 5678 | func (m *OfpMeterBandExperimenter) XXX_Size() int { |
| 5679 | return xxx_messageInfo_OfpMeterBandExperimenter.Size(m) |
| 5680 | } |
| 5681 | func (m *OfpMeterBandExperimenter) XXX_DiscardUnknown() { |
| 5682 | xxx_messageInfo_OfpMeterBandExperimenter.DiscardUnknown(m) |
| 5683 | } |
| 5684 | |
| 5685 | var xxx_messageInfo_OfpMeterBandExperimenter proto.InternalMessageInfo |
| 5686 | |
| 5687 | func (m *OfpMeterBandExperimenter) GetExperimenter() uint32 { |
| 5688 | if m != nil { |
| 5689 | return m.Experimenter |
| 5690 | } |
| 5691 | return 0 |
| 5692 | } |
| 5693 | |
| 5694 | // Meter configuration. OFPT_METER_MOD. |
| 5695 | type OfpMeterMod struct { |
| 5696 | Command OfpMeterModCommand `protobuf:"varint,1,opt,name=command,proto3,enum=openflow_13.OfpMeterModCommand" json:"command,omitempty"` |
| 5697 | Flags uint32 `protobuf:"varint,2,opt,name=flags,proto3" json:"flags,omitempty"` |
| 5698 | MeterId uint32 `protobuf:"varint,3,opt,name=meter_id,json=meterId,proto3" json:"meter_id,omitempty"` |
| 5699 | Bands []*OfpMeterBandHeader `protobuf:"bytes,4,rep,name=bands,proto3" json:"bands,omitempty"` |
| 5700 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5701 | XXX_unrecognized []byte `json:"-"` |
| 5702 | XXX_sizecache int32 `json:"-"` |
| 5703 | } |
| 5704 | |
| 5705 | func (m *OfpMeterMod) Reset() { *m = OfpMeterMod{} } |
| 5706 | func (m *OfpMeterMod) String() string { return proto.CompactTextString(m) } |
| 5707 | func (*OfpMeterMod) ProtoMessage() {} |
| 5708 | func (*OfpMeterMod) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5709 | return fileDescriptor_08e3a4e375aeddc7, []int{39} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5710 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5711 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5712 | func (m *OfpMeterMod) XXX_Unmarshal(b []byte) error { |
| 5713 | return xxx_messageInfo_OfpMeterMod.Unmarshal(m, b) |
| 5714 | } |
| 5715 | func (m *OfpMeterMod) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5716 | return xxx_messageInfo_OfpMeterMod.Marshal(b, m, deterministic) |
| 5717 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5718 | func (m *OfpMeterMod) XXX_Merge(src proto.Message) { |
| 5719 | xxx_messageInfo_OfpMeterMod.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5720 | } |
| 5721 | func (m *OfpMeterMod) XXX_Size() int { |
| 5722 | return xxx_messageInfo_OfpMeterMod.Size(m) |
| 5723 | } |
| 5724 | func (m *OfpMeterMod) XXX_DiscardUnknown() { |
| 5725 | xxx_messageInfo_OfpMeterMod.DiscardUnknown(m) |
| 5726 | } |
| 5727 | |
| 5728 | var xxx_messageInfo_OfpMeterMod proto.InternalMessageInfo |
| 5729 | |
| 5730 | func (m *OfpMeterMod) GetCommand() OfpMeterModCommand { |
| 5731 | if m != nil { |
| 5732 | return m.Command |
| 5733 | } |
| 5734 | return OfpMeterModCommand_OFPMC_ADD |
| 5735 | } |
| 5736 | |
| 5737 | func (m *OfpMeterMod) GetFlags() uint32 { |
| 5738 | if m != nil { |
| 5739 | return m.Flags |
| 5740 | } |
| 5741 | return 0 |
| 5742 | } |
| 5743 | |
| 5744 | func (m *OfpMeterMod) GetMeterId() uint32 { |
| 5745 | if m != nil { |
| 5746 | return m.MeterId |
| 5747 | } |
| 5748 | return 0 |
| 5749 | } |
| 5750 | |
| 5751 | func (m *OfpMeterMod) GetBands() []*OfpMeterBandHeader { |
| 5752 | if m != nil { |
| 5753 | return m.Bands |
| 5754 | } |
| 5755 | return nil |
| 5756 | } |
| 5757 | |
| 5758 | // OFPT_ERROR: Error message (datapath -> controller). |
| 5759 | type OfpErrorMsg struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5760 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5761 | Type uint32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"` |
| 5762 | Code uint32 `protobuf:"varint,2,opt,name=code,proto3" json:"code,omitempty"` |
| 5763 | Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` |
| 5764 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5765 | XXX_unrecognized []byte `json:"-"` |
| 5766 | XXX_sizecache int32 `json:"-"` |
| 5767 | } |
| 5768 | |
| 5769 | func (m *OfpErrorMsg) Reset() { *m = OfpErrorMsg{} } |
| 5770 | func (m *OfpErrorMsg) String() string { return proto.CompactTextString(m) } |
| 5771 | func (*OfpErrorMsg) ProtoMessage() {} |
| 5772 | func (*OfpErrorMsg) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5773 | return fileDescriptor_08e3a4e375aeddc7, []int{40} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5774 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5775 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5776 | func (m *OfpErrorMsg) XXX_Unmarshal(b []byte) error { |
| 5777 | return xxx_messageInfo_OfpErrorMsg.Unmarshal(m, b) |
| 5778 | } |
| 5779 | func (m *OfpErrorMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5780 | return xxx_messageInfo_OfpErrorMsg.Marshal(b, m, deterministic) |
| 5781 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5782 | func (m *OfpErrorMsg) XXX_Merge(src proto.Message) { |
| 5783 | xxx_messageInfo_OfpErrorMsg.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5784 | } |
| 5785 | func (m *OfpErrorMsg) XXX_Size() int { |
| 5786 | return xxx_messageInfo_OfpErrorMsg.Size(m) |
| 5787 | } |
| 5788 | func (m *OfpErrorMsg) XXX_DiscardUnknown() { |
| 5789 | xxx_messageInfo_OfpErrorMsg.DiscardUnknown(m) |
| 5790 | } |
| 5791 | |
| 5792 | var xxx_messageInfo_OfpErrorMsg proto.InternalMessageInfo |
| 5793 | |
| 5794 | func (m *OfpErrorMsg) GetType() uint32 { |
| 5795 | if m != nil { |
| 5796 | return m.Type |
| 5797 | } |
| 5798 | return 0 |
| 5799 | } |
| 5800 | |
| 5801 | func (m *OfpErrorMsg) GetCode() uint32 { |
| 5802 | if m != nil { |
| 5803 | return m.Code |
| 5804 | } |
| 5805 | return 0 |
| 5806 | } |
| 5807 | |
| 5808 | func (m *OfpErrorMsg) GetData() []byte { |
| 5809 | if m != nil { |
| 5810 | return m.Data |
| 5811 | } |
| 5812 | return nil |
| 5813 | } |
| 5814 | |
| 5815 | // OFPET_EXPERIMENTER: Error message (datapath -> controller). |
| 5816 | type OfpErrorExperimenterMsg struct { |
| 5817 | Type uint32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"` |
| 5818 | ExpType uint32 `protobuf:"varint,2,opt,name=exp_type,json=expType,proto3" json:"exp_type,omitempty"` |
| 5819 | Experimenter uint32 `protobuf:"varint,3,opt,name=experimenter,proto3" json:"experimenter,omitempty"` |
| 5820 | Data []byte `protobuf:"bytes,4,opt,name=data,proto3" json:"data,omitempty"` |
| 5821 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5822 | XXX_unrecognized []byte `json:"-"` |
| 5823 | XXX_sizecache int32 `json:"-"` |
| 5824 | } |
| 5825 | |
| 5826 | func (m *OfpErrorExperimenterMsg) Reset() { *m = OfpErrorExperimenterMsg{} } |
| 5827 | func (m *OfpErrorExperimenterMsg) String() string { return proto.CompactTextString(m) } |
| 5828 | func (*OfpErrorExperimenterMsg) ProtoMessage() {} |
| 5829 | func (*OfpErrorExperimenterMsg) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5830 | return fileDescriptor_08e3a4e375aeddc7, []int{41} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5831 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5832 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5833 | func (m *OfpErrorExperimenterMsg) XXX_Unmarshal(b []byte) error { |
| 5834 | return xxx_messageInfo_OfpErrorExperimenterMsg.Unmarshal(m, b) |
| 5835 | } |
| 5836 | func (m *OfpErrorExperimenterMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5837 | return xxx_messageInfo_OfpErrorExperimenterMsg.Marshal(b, m, deterministic) |
| 5838 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5839 | func (m *OfpErrorExperimenterMsg) XXX_Merge(src proto.Message) { |
| 5840 | xxx_messageInfo_OfpErrorExperimenterMsg.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5841 | } |
| 5842 | func (m *OfpErrorExperimenterMsg) XXX_Size() int { |
| 5843 | return xxx_messageInfo_OfpErrorExperimenterMsg.Size(m) |
| 5844 | } |
| 5845 | func (m *OfpErrorExperimenterMsg) XXX_DiscardUnknown() { |
| 5846 | xxx_messageInfo_OfpErrorExperimenterMsg.DiscardUnknown(m) |
| 5847 | } |
| 5848 | |
| 5849 | var xxx_messageInfo_OfpErrorExperimenterMsg proto.InternalMessageInfo |
| 5850 | |
| 5851 | func (m *OfpErrorExperimenterMsg) GetType() uint32 { |
| 5852 | if m != nil { |
| 5853 | return m.Type |
| 5854 | } |
| 5855 | return 0 |
| 5856 | } |
| 5857 | |
| 5858 | func (m *OfpErrorExperimenterMsg) GetExpType() uint32 { |
| 5859 | if m != nil { |
| 5860 | return m.ExpType |
| 5861 | } |
| 5862 | return 0 |
| 5863 | } |
| 5864 | |
| 5865 | func (m *OfpErrorExperimenterMsg) GetExperimenter() uint32 { |
| 5866 | if m != nil { |
| 5867 | return m.Experimenter |
| 5868 | } |
| 5869 | return 0 |
| 5870 | } |
| 5871 | |
| 5872 | func (m *OfpErrorExperimenterMsg) GetData() []byte { |
| 5873 | if m != nil { |
| 5874 | return m.Data |
| 5875 | } |
| 5876 | return nil |
| 5877 | } |
| 5878 | |
| 5879 | type OfpMultipartRequest struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5880 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5881 | Type OfpMultipartType `protobuf:"varint,1,opt,name=type,proto3,enum=openflow_13.OfpMultipartType" json:"type,omitempty"` |
| 5882 | Flags uint32 `protobuf:"varint,2,opt,name=flags,proto3" json:"flags,omitempty"` |
| 5883 | Body []byte `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"` |
| 5884 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5885 | XXX_unrecognized []byte `json:"-"` |
| 5886 | XXX_sizecache int32 `json:"-"` |
| 5887 | } |
| 5888 | |
| 5889 | func (m *OfpMultipartRequest) Reset() { *m = OfpMultipartRequest{} } |
| 5890 | func (m *OfpMultipartRequest) String() string { return proto.CompactTextString(m) } |
| 5891 | func (*OfpMultipartRequest) ProtoMessage() {} |
| 5892 | func (*OfpMultipartRequest) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5893 | return fileDescriptor_08e3a4e375aeddc7, []int{42} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5894 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5895 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5896 | func (m *OfpMultipartRequest) XXX_Unmarshal(b []byte) error { |
| 5897 | return xxx_messageInfo_OfpMultipartRequest.Unmarshal(m, b) |
| 5898 | } |
| 5899 | func (m *OfpMultipartRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5900 | return xxx_messageInfo_OfpMultipartRequest.Marshal(b, m, deterministic) |
| 5901 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5902 | func (m *OfpMultipartRequest) XXX_Merge(src proto.Message) { |
| 5903 | xxx_messageInfo_OfpMultipartRequest.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5904 | } |
| 5905 | func (m *OfpMultipartRequest) XXX_Size() int { |
| 5906 | return xxx_messageInfo_OfpMultipartRequest.Size(m) |
| 5907 | } |
| 5908 | func (m *OfpMultipartRequest) XXX_DiscardUnknown() { |
| 5909 | xxx_messageInfo_OfpMultipartRequest.DiscardUnknown(m) |
| 5910 | } |
| 5911 | |
| 5912 | var xxx_messageInfo_OfpMultipartRequest proto.InternalMessageInfo |
| 5913 | |
| 5914 | func (m *OfpMultipartRequest) GetType() OfpMultipartType { |
| 5915 | if m != nil { |
| 5916 | return m.Type |
| 5917 | } |
| 5918 | return OfpMultipartType_OFPMP_DESC |
| 5919 | } |
| 5920 | |
| 5921 | func (m *OfpMultipartRequest) GetFlags() uint32 { |
| 5922 | if m != nil { |
| 5923 | return m.Flags |
| 5924 | } |
| 5925 | return 0 |
| 5926 | } |
| 5927 | |
| 5928 | func (m *OfpMultipartRequest) GetBody() []byte { |
| 5929 | if m != nil { |
| 5930 | return m.Body |
| 5931 | } |
| 5932 | return nil |
| 5933 | } |
| 5934 | |
| 5935 | type OfpMultipartReply struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5936 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5937 | Type OfpMultipartType `protobuf:"varint,1,opt,name=type,proto3,enum=openflow_13.OfpMultipartType" json:"type,omitempty"` |
| 5938 | Flags uint32 `protobuf:"varint,2,opt,name=flags,proto3" json:"flags,omitempty"` |
| 5939 | Body []byte `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"` |
| 5940 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 5941 | XXX_unrecognized []byte `json:"-"` |
| 5942 | XXX_sizecache int32 `json:"-"` |
| 5943 | } |
| 5944 | |
| 5945 | func (m *OfpMultipartReply) Reset() { *m = OfpMultipartReply{} } |
| 5946 | func (m *OfpMultipartReply) String() string { return proto.CompactTextString(m) } |
| 5947 | func (*OfpMultipartReply) ProtoMessage() {} |
| 5948 | func (*OfpMultipartReply) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5949 | return fileDescriptor_08e3a4e375aeddc7, []int{43} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5950 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5951 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5952 | func (m *OfpMultipartReply) XXX_Unmarshal(b []byte) error { |
| 5953 | return xxx_messageInfo_OfpMultipartReply.Unmarshal(m, b) |
| 5954 | } |
| 5955 | func (m *OfpMultipartReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 5956 | return xxx_messageInfo_OfpMultipartReply.Marshal(b, m, deterministic) |
| 5957 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 5958 | func (m *OfpMultipartReply) XXX_Merge(src proto.Message) { |
| 5959 | xxx_messageInfo_OfpMultipartReply.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 5960 | } |
| 5961 | func (m *OfpMultipartReply) XXX_Size() int { |
| 5962 | return xxx_messageInfo_OfpMultipartReply.Size(m) |
| 5963 | } |
| 5964 | func (m *OfpMultipartReply) XXX_DiscardUnknown() { |
| 5965 | xxx_messageInfo_OfpMultipartReply.DiscardUnknown(m) |
| 5966 | } |
| 5967 | |
| 5968 | var xxx_messageInfo_OfpMultipartReply proto.InternalMessageInfo |
| 5969 | |
| 5970 | func (m *OfpMultipartReply) GetType() OfpMultipartType { |
| 5971 | if m != nil { |
| 5972 | return m.Type |
| 5973 | } |
| 5974 | return OfpMultipartType_OFPMP_DESC |
| 5975 | } |
| 5976 | |
| 5977 | func (m *OfpMultipartReply) GetFlags() uint32 { |
| 5978 | if m != nil { |
| 5979 | return m.Flags |
| 5980 | } |
| 5981 | return 0 |
| 5982 | } |
| 5983 | |
| 5984 | func (m *OfpMultipartReply) GetBody() []byte { |
| 5985 | if m != nil { |
| 5986 | return m.Body |
| 5987 | } |
| 5988 | return nil |
| 5989 | } |
| 5990 | |
| 5991 | // Body of reply to OFPMP_DESC request. Each entry is a NULL-terminated |
| 5992 | // ASCII string. |
| 5993 | type OfpDesc struct { |
| 5994 | MfrDesc string `protobuf:"bytes,1,opt,name=mfr_desc,json=mfrDesc,proto3" json:"mfr_desc,omitempty"` |
| 5995 | HwDesc string `protobuf:"bytes,2,opt,name=hw_desc,json=hwDesc,proto3" json:"hw_desc,omitempty"` |
| 5996 | SwDesc string `protobuf:"bytes,3,opt,name=sw_desc,json=swDesc,proto3" json:"sw_desc,omitempty"` |
| 5997 | SerialNum string `protobuf:"bytes,4,opt,name=serial_num,json=serialNum,proto3" json:"serial_num,omitempty"` |
| 5998 | DpDesc string `protobuf:"bytes,5,opt,name=dp_desc,json=dpDesc,proto3" json:"dp_desc,omitempty"` |
| 5999 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6000 | XXX_unrecognized []byte `json:"-"` |
| 6001 | XXX_sizecache int32 `json:"-"` |
| 6002 | } |
| 6003 | |
| 6004 | func (m *OfpDesc) Reset() { *m = OfpDesc{} } |
| 6005 | func (m *OfpDesc) String() string { return proto.CompactTextString(m) } |
| 6006 | func (*OfpDesc) ProtoMessage() {} |
| 6007 | func (*OfpDesc) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6008 | return fileDescriptor_08e3a4e375aeddc7, []int{44} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6009 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6010 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6011 | func (m *OfpDesc) XXX_Unmarshal(b []byte) error { |
| 6012 | return xxx_messageInfo_OfpDesc.Unmarshal(m, b) |
| 6013 | } |
| 6014 | func (m *OfpDesc) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6015 | return xxx_messageInfo_OfpDesc.Marshal(b, m, deterministic) |
| 6016 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6017 | func (m *OfpDesc) XXX_Merge(src proto.Message) { |
| 6018 | xxx_messageInfo_OfpDesc.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6019 | } |
| 6020 | func (m *OfpDesc) XXX_Size() int { |
| 6021 | return xxx_messageInfo_OfpDesc.Size(m) |
| 6022 | } |
| 6023 | func (m *OfpDesc) XXX_DiscardUnknown() { |
| 6024 | xxx_messageInfo_OfpDesc.DiscardUnknown(m) |
| 6025 | } |
| 6026 | |
| 6027 | var xxx_messageInfo_OfpDesc proto.InternalMessageInfo |
| 6028 | |
| 6029 | func (m *OfpDesc) GetMfrDesc() string { |
| 6030 | if m != nil { |
| 6031 | return m.MfrDesc |
| 6032 | } |
| 6033 | return "" |
| 6034 | } |
| 6035 | |
| 6036 | func (m *OfpDesc) GetHwDesc() string { |
| 6037 | if m != nil { |
| 6038 | return m.HwDesc |
| 6039 | } |
| 6040 | return "" |
| 6041 | } |
| 6042 | |
| 6043 | func (m *OfpDesc) GetSwDesc() string { |
| 6044 | if m != nil { |
| 6045 | return m.SwDesc |
| 6046 | } |
| 6047 | return "" |
| 6048 | } |
| 6049 | |
| 6050 | func (m *OfpDesc) GetSerialNum() string { |
| 6051 | if m != nil { |
| 6052 | return m.SerialNum |
| 6053 | } |
| 6054 | return "" |
| 6055 | } |
| 6056 | |
| 6057 | func (m *OfpDesc) GetDpDesc() string { |
| 6058 | if m != nil { |
| 6059 | return m.DpDesc |
| 6060 | } |
| 6061 | return "" |
| 6062 | } |
| 6063 | |
| 6064 | // Body for ofp_multipart_request of type OFPMP_FLOW. |
| 6065 | type OfpFlowStatsRequest struct { |
| 6066 | TableId uint32 `protobuf:"varint,1,opt,name=table_id,json=tableId,proto3" json:"table_id,omitempty"` |
| 6067 | OutPort uint32 `protobuf:"varint,2,opt,name=out_port,json=outPort,proto3" json:"out_port,omitempty"` |
| 6068 | OutGroup uint32 `protobuf:"varint,3,opt,name=out_group,json=outGroup,proto3" json:"out_group,omitempty"` |
| 6069 | Cookie uint64 `protobuf:"varint,4,opt,name=cookie,proto3" json:"cookie,omitempty"` |
| 6070 | CookieMask uint64 `protobuf:"varint,5,opt,name=cookie_mask,json=cookieMask,proto3" json:"cookie_mask,omitempty"` |
| 6071 | Match *OfpMatch `protobuf:"bytes,6,opt,name=match,proto3" json:"match,omitempty"` |
| 6072 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6073 | XXX_unrecognized []byte `json:"-"` |
| 6074 | XXX_sizecache int32 `json:"-"` |
| 6075 | } |
| 6076 | |
| 6077 | func (m *OfpFlowStatsRequest) Reset() { *m = OfpFlowStatsRequest{} } |
| 6078 | func (m *OfpFlowStatsRequest) String() string { return proto.CompactTextString(m) } |
| 6079 | func (*OfpFlowStatsRequest) ProtoMessage() {} |
| 6080 | func (*OfpFlowStatsRequest) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6081 | return fileDescriptor_08e3a4e375aeddc7, []int{45} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6082 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6083 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6084 | func (m *OfpFlowStatsRequest) XXX_Unmarshal(b []byte) error { |
| 6085 | return xxx_messageInfo_OfpFlowStatsRequest.Unmarshal(m, b) |
| 6086 | } |
| 6087 | func (m *OfpFlowStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6088 | return xxx_messageInfo_OfpFlowStatsRequest.Marshal(b, m, deterministic) |
| 6089 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6090 | func (m *OfpFlowStatsRequest) XXX_Merge(src proto.Message) { |
| 6091 | xxx_messageInfo_OfpFlowStatsRequest.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6092 | } |
| 6093 | func (m *OfpFlowStatsRequest) XXX_Size() int { |
| 6094 | return xxx_messageInfo_OfpFlowStatsRequest.Size(m) |
| 6095 | } |
| 6096 | func (m *OfpFlowStatsRequest) XXX_DiscardUnknown() { |
| 6097 | xxx_messageInfo_OfpFlowStatsRequest.DiscardUnknown(m) |
| 6098 | } |
| 6099 | |
| 6100 | var xxx_messageInfo_OfpFlowStatsRequest proto.InternalMessageInfo |
| 6101 | |
| 6102 | func (m *OfpFlowStatsRequest) GetTableId() uint32 { |
| 6103 | if m != nil { |
| 6104 | return m.TableId |
| 6105 | } |
| 6106 | return 0 |
| 6107 | } |
| 6108 | |
| 6109 | func (m *OfpFlowStatsRequest) GetOutPort() uint32 { |
| 6110 | if m != nil { |
| 6111 | return m.OutPort |
| 6112 | } |
| 6113 | return 0 |
| 6114 | } |
| 6115 | |
| 6116 | func (m *OfpFlowStatsRequest) GetOutGroup() uint32 { |
| 6117 | if m != nil { |
| 6118 | return m.OutGroup |
| 6119 | } |
| 6120 | return 0 |
| 6121 | } |
| 6122 | |
| 6123 | func (m *OfpFlowStatsRequest) GetCookie() uint64 { |
| 6124 | if m != nil { |
| 6125 | return m.Cookie |
| 6126 | } |
| 6127 | return 0 |
| 6128 | } |
| 6129 | |
| 6130 | func (m *OfpFlowStatsRequest) GetCookieMask() uint64 { |
| 6131 | if m != nil { |
| 6132 | return m.CookieMask |
| 6133 | } |
| 6134 | return 0 |
| 6135 | } |
| 6136 | |
| 6137 | func (m *OfpFlowStatsRequest) GetMatch() *OfpMatch { |
| 6138 | if m != nil { |
| 6139 | return m.Match |
| 6140 | } |
| 6141 | return nil |
| 6142 | } |
| 6143 | |
| 6144 | // Body of reply to OFPMP_FLOW request. |
| 6145 | type OfpFlowStats struct { |
| 6146 | Id uint64 `protobuf:"varint,14,opt,name=id,proto3" json:"id,omitempty"` |
| 6147 | TableId uint32 `protobuf:"varint,1,opt,name=table_id,json=tableId,proto3" json:"table_id,omitempty"` |
| 6148 | DurationSec uint32 `protobuf:"varint,2,opt,name=duration_sec,json=durationSec,proto3" json:"duration_sec,omitempty"` |
| 6149 | DurationNsec uint32 `protobuf:"varint,3,opt,name=duration_nsec,json=durationNsec,proto3" json:"duration_nsec,omitempty"` |
| 6150 | Priority uint32 `protobuf:"varint,4,opt,name=priority,proto3" json:"priority,omitempty"` |
| 6151 | IdleTimeout uint32 `protobuf:"varint,5,opt,name=idle_timeout,json=idleTimeout,proto3" json:"idle_timeout,omitempty"` |
| 6152 | HardTimeout uint32 `protobuf:"varint,6,opt,name=hard_timeout,json=hardTimeout,proto3" json:"hard_timeout,omitempty"` |
| 6153 | Flags uint32 `protobuf:"varint,7,opt,name=flags,proto3" json:"flags,omitempty"` |
| 6154 | Cookie uint64 `protobuf:"varint,8,opt,name=cookie,proto3" json:"cookie,omitempty"` |
| 6155 | PacketCount uint64 `protobuf:"varint,9,opt,name=packet_count,json=packetCount,proto3" json:"packet_count,omitempty"` |
| 6156 | ByteCount uint64 `protobuf:"varint,10,opt,name=byte_count,json=byteCount,proto3" json:"byte_count,omitempty"` |
| 6157 | Match *OfpMatch `protobuf:"bytes,12,opt,name=match,proto3" json:"match,omitempty"` |
| 6158 | Instructions []*OfpInstruction `protobuf:"bytes,13,rep,name=instructions,proto3" json:"instructions,omitempty"` |
| 6159 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6160 | XXX_unrecognized []byte `json:"-"` |
| 6161 | XXX_sizecache int32 `json:"-"` |
| 6162 | } |
| 6163 | |
| 6164 | func (m *OfpFlowStats) Reset() { *m = OfpFlowStats{} } |
| 6165 | func (m *OfpFlowStats) String() string { return proto.CompactTextString(m) } |
| 6166 | func (*OfpFlowStats) ProtoMessage() {} |
| 6167 | func (*OfpFlowStats) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6168 | return fileDescriptor_08e3a4e375aeddc7, []int{46} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6169 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6170 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6171 | func (m *OfpFlowStats) XXX_Unmarshal(b []byte) error { |
| 6172 | return xxx_messageInfo_OfpFlowStats.Unmarshal(m, b) |
| 6173 | } |
| 6174 | func (m *OfpFlowStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6175 | return xxx_messageInfo_OfpFlowStats.Marshal(b, m, deterministic) |
| 6176 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6177 | func (m *OfpFlowStats) XXX_Merge(src proto.Message) { |
| 6178 | xxx_messageInfo_OfpFlowStats.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6179 | } |
| 6180 | func (m *OfpFlowStats) XXX_Size() int { |
| 6181 | return xxx_messageInfo_OfpFlowStats.Size(m) |
| 6182 | } |
| 6183 | func (m *OfpFlowStats) XXX_DiscardUnknown() { |
| 6184 | xxx_messageInfo_OfpFlowStats.DiscardUnknown(m) |
| 6185 | } |
| 6186 | |
| 6187 | var xxx_messageInfo_OfpFlowStats proto.InternalMessageInfo |
| 6188 | |
| 6189 | func (m *OfpFlowStats) GetId() uint64 { |
| 6190 | if m != nil { |
| 6191 | return m.Id |
| 6192 | } |
| 6193 | return 0 |
| 6194 | } |
| 6195 | |
| 6196 | func (m *OfpFlowStats) GetTableId() uint32 { |
| 6197 | if m != nil { |
| 6198 | return m.TableId |
| 6199 | } |
| 6200 | return 0 |
| 6201 | } |
| 6202 | |
| 6203 | func (m *OfpFlowStats) GetDurationSec() uint32 { |
| 6204 | if m != nil { |
| 6205 | return m.DurationSec |
| 6206 | } |
| 6207 | return 0 |
| 6208 | } |
| 6209 | |
| 6210 | func (m *OfpFlowStats) GetDurationNsec() uint32 { |
| 6211 | if m != nil { |
| 6212 | return m.DurationNsec |
| 6213 | } |
| 6214 | return 0 |
| 6215 | } |
| 6216 | |
| 6217 | func (m *OfpFlowStats) GetPriority() uint32 { |
| 6218 | if m != nil { |
| 6219 | return m.Priority |
| 6220 | } |
| 6221 | return 0 |
| 6222 | } |
| 6223 | |
| 6224 | func (m *OfpFlowStats) GetIdleTimeout() uint32 { |
| 6225 | if m != nil { |
| 6226 | return m.IdleTimeout |
| 6227 | } |
| 6228 | return 0 |
| 6229 | } |
| 6230 | |
| 6231 | func (m *OfpFlowStats) GetHardTimeout() uint32 { |
| 6232 | if m != nil { |
| 6233 | return m.HardTimeout |
| 6234 | } |
| 6235 | return 0 |
| 6236 | } |
| 6237 | |
| 6238 | func (m *OfpFlowStats) GetFlags() uint32 { |
| 6239 | if m != nil { |
| 6240 | return m.Flags |
| 6241 | } |
| 6242 | return 0 |
| 6243 | } |
| 6244 | |
| 6245 | func (m *OfpFlowStats) GetCookie() uint64 { |
| 6246 | if m != nil { |
| 6247 | return m.Cookie |
| 6248 | } |
| 6249 | return 0 |
| 6250 | } |
| 6251 | |
| 6252 | func (m *OfpFlowStats) GetPacketCount() uint64 { |
| 6253 | if m != nil { |
| 6254 | return m.PacketCount |
| 6255 | } |
| 6256 | return 0 |
| 6257 | } |
| 6258 | |
| 6259 | func (m *OfpFlowStats) GetByteCount() uint64 { |
| 6260 | if m != nil { |
| 6261 | return m.ByteCount |
| 6262 | } |
| 6263 | return 0 |
| 6264 | } |
| 6265 | |
| 6266 | func (m *OfpFlowStats) GetMatch() *OfpMatch { |
| 6267 | if m != nil { |
| 6268 | return m.Match |
| 6269 | } |
| 6270 | return nil |
| 6271 | } |
| 6272 | |
| 6273 | func (m *OfpFlowStats) GetInstructions() []*OfpInstruction { |
| 6274 | if m != nil { |
| 6275 | return m.Instructions |
| 6276 | } |
| 6277 | return nil |
| 6278 | } |
| 6279 | |
| 6280 | // Body for ofp_multipart_request of type OFPMP_AGGREGATE. |
| 6281 | type OfpAggregateStatsRequest struct { |
| 6282 | TableId uint32 `protobuf:"varint,1,opt,name=table_id,json=tableId,proto3" json:"table_id,omitempty"` |
| 6283 | OutPort uint32 `protobuf:"varint,2,opt,name=out_port,json=outPort,proto3" json:"out_port,omitempty"` |
| 6284 | OutGroup uint32 `protobuf:"varint,3,opt,name=out_group,json=outGroup,proto3" json:"out_group,omitempty"` |
| 6285 | Cookie uint64 `protobuf:"varint,4,opt,name=cookie,proto3" json:"cookie,omitempty"` |
| 6286 | CookieMask uint64 `protobuf:"varint,5,opt,name=cookie_mask,json=cookieMask,proto3" json:"cookie_mask,omitempty"` |
| 6287 | Match *OfpMatch `protobuf:"bytes,6,opt,name=match,proto3" json:"match,omitempty"` |
| 6288 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6289 | XXX_unrecognized []byte `json:"-"` |
| 6290 | XXX_sizecache int32 `json:"-"` |
| 6291 | } |
| 6292 | |
| 6293 | func (m *OfpAggregateStatsRequest) Reset() { *m = OfpAggregateStatsRequest{} } |
| 6294 | func (m *OfpAggregateStatsRequest) String() string { return proto.CompactTextString(m) } |
| 6295 | func (*OfpAggregateStatsRequest) ProtoMessage() {} |
| 6296 | func (*OfpAggregateStatsRequest) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6297 | return fileDescriptor_08e3a4e375aeddc7, []int{47} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6298 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6299 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6300 | func (m *OfpAggregateStatsRequest) XXX_Unmarshal(b []byte) error { |
| 6301 | return xxx_messageInfo_OfpAggregateStatsRequest.Unmarshal(m, b) |
| 6302 | } |
| 6303 | func (m *OfpAggregateStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6304 | return xxx_messageInfo_OfpAggregateStatsRequest.Marshal(b, m, deterministic) |
| 6305 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6306 | func (m *OfpAggregateStatsRequest) XXX_Merge(src proto.Message) { |
| 6307 | xxx_messageInfo_OfpAggregateStatsRequest.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6308 | } |
| 6309 | func (m *OfpAggregateStatsRequest) XXX_Size() int { |
| 6310 | return xxx_messageInfo_OfpAggregateStatsRequest.Size(m) |
| 6311 | } |
| 6312 | func (m *OfpAggregateStatsRequest) XXX_DiscardUnknown() { |
| 6313 | xxx_messageInfo_OfpAggregateStatsRequest.DiscardUnknown(m) |
| 6314 | } |
| 6315 | |
| 6316 | var xxx_messageInfo_OfpAggregateStatsRequest proto.InternalMessageInfo |
| 6317 | |
| 6318 | func (m *OfpAggregateStatsRequest) GetTableId() uint32 { |
| 6319 | if m != nil { |
| 6320 | return m.TableId |
| 6321 | } |
| 6322 | return 0 |
| 6323 | } |
| 6324 | |
| 6325 | func (m *OfpAggregateStatsRequest) GetOutPort() uint32 { |
| 6326 | if m != nil { |
| 6327 | return m.OutPort |
| 6328 | } |
| 6329 | return 0 |
| 6330 | } |
| 6331 | |
| 6332 | func (m *OfpAggregateStatsRequest) GetOutGroup() uint32 { |
| 6333 | if m != nil { |
| 6334 | return m.OutGroup |
| 6335 | } |
| 6336 | return 0 |
| 6337 | } |
| 6338 | |
| 6339 | func (m *OfpAggregateStatsRequest) GetCookie() uint64 { |
| 6340 | if m != nil { |
| 6341 | return m.Cookie |
| 6342 | } |
| 6343 | return 0 |
| 6344 | } |
| 6345 | |
| 6346 | func (m *OfpAggregateStatsRequest) GetCookieMask() uint64 { |
| 6347 | if m != nil { |
| 6348 | return m.CookieMask |
| 6349 | } |
| 6350 | return 0 |
| 6351 | } |
| 6352 | |
| 6353 | func (m *OfpAggregateStatsRequest) GetMatch() *OfpMatch { |
| 6354 | if m != nil { |
| 6355 | return m.Match |
| 6356 | } |
| 6357 | return nil |
| 6358 | } |
| 6359 | |
| 6360 | // Body of reply to OFPMP_AGGREGATE request. |
| 6361 | type OfpAggregateStatsReply struct { |
| 6362 | PacketCount uint64 `protobuf:"varint,1,opt,name=packet_count,json=packetCount,proto3" json:"packet_count,omitempty"` |
| 6363 | ByteCount uint64 `protobuf:"varint,2,opt,name=byte_count,json=byteCount,proto3" json:"byte_count,omitempty"` |
| 6364 | FlowCount uint32 `protobuf:"varint,3,opt,name=flow_count,json=flowCount,proto3" json:"flow_count,omitempty"` |
| 6365 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6366 | XXX_unrecognized []byte `json:"-"` |
| 6367 | XXX_sizecache int32 `json:"-"` |
| 6368 | } |
| 6369 | |
| 6370 | func (m *OfpAggregateStatsReply) Reset() { *m = OfpAggregateStatsReply{} } |
| 6371 | func (m *OfpAggregateStatsReply) String() string { return proto.CompactTextString(m) } |
| 6372 | func (*OfpAggregateStatsReply) ProtoMessage() {} |
| 6373 | func (*OfpAggregateStatsReply) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6374 | return fileDescriptor_08e3a4e375aeddc7, []int{48} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6375 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6376 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6377 | func (m *OfpAggregateStatsReply) XXX_Unmarshal(b []byte) error { |
| 6378 | return xxx_messageInfo_OfpAggregateStatsReply.Unmarshal(m, b) |
| 6379 | } |
| 6380 | func (m *OfpAggregateStatsReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6381 | return xxx_messageInfo_OfpAggregateStatsReply.Marshal(b, m, deterministic) |
| 6382 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6383 | func (m *OfpAggregateStatsReply) XXX_Merge(src proto.Message) { |
| 6384 | xxx_messageInfo_OfpAggregateStatsReply.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6385 | } |
| 6386 | func (m *OfpAggregateStatsReply) XXX_Size() int { |
| 6387 | return xxx_messageInfo_OfpAggregateStatsReply.Size(m) |
| 6388 | } |
| 6389 | func (m *OfpAggregateStatsReply) XXX_DiscardUnknown() { |
| 6390 | xxx_messageInfo_OfpAggregateStatsReply.DiscardUnknown(m) |
| 6391 | } |
| 6392 | |
| 6393 | var xxx_messageInfo_OfpAggregateStatsReply proto.InternalMessageInfo |
| 6394 | |
| 6395 | func (m *OfpAggregateStatsReply) GetPacketCount() uint64 { |
| 6396 | if m != nil { |
| 6397 | return m.PacketCount |
| 6398 | } |
| 6399 | return 0 |
| 6400 | } |
| 6401 | |
| 6402 | func (m *OfpAggregateStatsReply) GetByteCount() uint64 { |
| 6403 | if m != nil { |
| 6404 | return m.ByteCount |
| 6405 | } |
| 6406 | return 0 |
| 6407 | } |
| 6408 | |
| 6409 | func (m *OfpAggregateStatsReply) GetFlowCount() uint32 { |
| 6410 | if m != nil { |
| 6411 | return m.FlowCount |
| 6412 | } |
| 6413 | return 0 |
| 6414 | } |
| 6415 | |
| 6416 | // Common header for all Table Feature Properties |
| 6417 | type OfpTableFeatureProperty struct { |
| 6418 | Type OfpTableFeaturePropType `protobuf:"varint,1,opt,name=type,proto3,enum=openflow_13.OfpTableFeaturePropType" json:"type,omitempty"` |
| 6419 | // Types that are valid to be assigned to Value: |
| 6420 | // *OfpTableFeatureProperty_Instructions |
| 6421 | // *OfpTableFeatureProperty_NextTables |
| 6422 | // *OfpTableFeatureProperty_Actions |
| 6423 | // *OfpTableFeatureProperty_Oxm |
| 6424 | // *OfpTableFeatureProperty_Experimenter |
| 6425 | Value isOfpTableFeatureProperty_Value `protobuf_oneof:"value"` |
| 6426 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6427 | XXX_unrecognized []byte `json:"-"` |
| 6428 | XXX_sizecache int32 `json:"-"` |
| 6429 | } |
| 6430 | |
| 6431 | func (m *OfpTableFeatureProperty) Reset() { *m = OfpTableFeatureProperty{} } |
| 6432 | func (m *OfpTableFeatureProperty) String() string { return proto.CompactTextString(m) } |
| 6433 | func (*OfpTableFeatureProperty) ProtoMessage() {} |
| 6434 | func (*OfpTableFeatureProperty) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6435 | return fileDescriptor_08e3a4e375aeddc7, []int{49} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6436 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6437 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6438 | func (m *OfpTableFeatureProperty) XXX_Unmarshal(b []byte) error { |
| 6439 | return xxx_messageInfo_OfpTableFeatureProperty.Unmarshal(m, b) |
| 6440 | } |
| 6441 | func (m *OfpTableFeatureProperty) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6442 | return xxx_messageInfo_OfpTableFeatureProperty.Marshal(b, m, deterministic) |
| 6443 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6444 | func (m *OfpTableFeatureProperty) XXX_Merge(src proto.Message) { |
| 6445 | xxx_messageInfo_OfpTableFeatureProperty.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6446 | } |
| 6447 | func (m *OfpTableFeatureProperty) XXX_Size() int { |
| 6448 | return xxx_messageInfo_OfpTableFeatureProperty.Size(m) |
| 6449 | } |
| 6450 | func (m *OfpTableFeatureProperty) XXX_DiscardUnknown() { |
| 6451 | xxx_messageInfo_OfpTableFeatureProperty.DiscardUnknown(m) |
| 6452 | } |
| 6453 | |
| 6454 | var xxx_messageInfo_OfpTableFeatureProperty proto.InternalMessageInfo |
| 6455 | |
| 6456 | func (m *OfpTableFeatureProperty) GetType() OfpTableFeaturePropType { |
| 6457 | if m != nil { |
| 6458 | return m.Type |
| 6459 | } |
| 6460 | return OfpTableFeaturePropType_OFPTFPT_INSTRUCTIONS |
| 6461 | } |
| 6462 | |
| 6463 | type isOfpTableFeatureProperty_Value interface { |
| 6464 | isOfpTableFeatureProperty_Value() |
| 6465 | } |
| 6466 | |
| 6467 | type OfpTableFeatureProperty_Instructions struct { |
| 6468 | Instructions *OfpTableFeaturePropInstructions `protobuf:"bytes,2,opt,name=instructions,proto3,oneof"` |
| 6469 | } |
| 6470 | |
| 6471 | type OfpTableFeatureProperty_NextTables struct { |
| 6472 | NextTables *OfpTableFeaturePropNextTables `protobuf:"bytes,3,opt,name=next_tables,json=nextTables,proto3,oneof"` |
| 6473 | } |
| 6474 | |
| 6475 | type OfpTableFeatureProperty_Actions struct { |
| 6476 | Actions *OfpTableFeaturePropActions `protobuf:"bytes,4,opt,name=actions,proto3,oneof"` |
| 6477 | } |
| 6478 | |
| 6479 | type OfpTableFeatureProperty_Oxm struct { |
| 6480 | Oxm *OfpTableFeaturePropOxm `protobuf:"bytes,5,opt,name=oxm,proto3,oneof"` |
| 6481 | } |
| 6482 | |
| 6483 | type OfpTableFeatureProperty_Experimenter struct { |
| 6484 | Experimenter *OfpTableFeaturePropExperimenter `protobuf:"bytes,6,opt,name=experimenter,proto3,oneof"` |
| 6485 | } |
| 6486 | |
| 6487 | func (*OfpTableFeatureProperty_Instructions) isOfpTableFeatureProperty_Value() {} |
| 6488 | |
| 6489 | func (*OfpTableFeatureProperty_NextTables) isOfpTableFeatureProperty_Value() {} |
| 6490 | |
| 6491 | func (*OfpTableFeatureProperty_Actions) isOfpTableFeatureProperty_Value() {} |
| 6492 | |
| 6493 | func (*OfpTableFeatureProperty_Oxm) isOfpTableFeatureProperty_Value() {} |
| 6494 | |
| 6495 | func (*OfpTableFeatureProperty_Experimenter) isOfpTableFeatureProperty_Value() {} |
| 6496 | |
| 6497 | func (m *OfpTableFeatureProperty) GetValue() isOfpTableFeatureProperty_Value { |
| 6498 | if m != nil { |
| 6499 | return m.Value |
| 6500 | } |
| 6501 | return nil |
| 6502 | } |
| 6503 | |
| 6504 | func (m *OfpTableFeatureProperty) GetInstructions() *OfpTableFeaturePropInstructions { |
| 6505 | if x, ok := m.GetValue().(*OfpTableFeatureProperty_Instructions); ok { |
| 6506 | return x.Instructions |
| 6507 | } |
| 6508 | return nil |
| 6509 | } |
| 6510 | |
| 6511 | func (m *OfpTableFeatureProperty) GetNextTables() *OfpTableFeaturePropNextTables { |
| 6512 | if x, ok := m.GetValue().(*OfpTableFeatureProperty_NextTables); ok { |
| 6513 | return x.NextTables |
| 6514 | } |
| 6515 | return nil |
| 6516 | } |
| 6517 | |
| 6518 | func (m *OfpTableFeatureProperty) GetActions() *OfpTableFeaturePropActions { |
| 6519 | if x, ok := m.GetValue().(*OfpTableFeatureProperty_Actions); ok { |
| 6520 | return x.Actions |
| 6521 | } |
| 6522 | return nil |
| 6523 | } |
| 6524 | |
| 6525 | func (m *OfpTableFeatureProperty) GetOxm() *OfpTableFeaturePropOxm { |
| 6526 | if x, ok := m.GetValue().(*OfpTableFeatureProperty_Oxm); ok { |
| 6527 | return x.Oxm |
| 6528 | } |
| 6529 | return nil |
| 6530 | } |
| 6531 | |
| 6532 | func (m *OfpTableFeatureProperty) GetExperimenter() *OfpTableFeaturePropExperimenter { |
| 6533 | if x, ok := m.GetValue().(*OfpTableFeatureProperty_Experimenter); ok { |
| 6534 | return x.Experimenter |
| 6535 | } |
| 6536 | return nil |
| 6537 | } |
| 6538 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6539 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 6540 | func (*OfpTableFeatureProperty) XXX_OneofWrappers() []interface{} { |
| 6541 | return []interface{}{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6542 | (*OfpTableFeatureProperty_Instructions)(nil), |
| 6543 | (*OfpTableFeatureProperty_NextTables)(nil), |
| 6544 | (*OfpTableFeatureProperty_Actions)(nil), |
| 6545 | (*OfpTableFeatureProperty_Oxm)(nil), |
| 6546 | (*OfpTableFeatureProperty_Experimenter)(nil), |
| 6547 | } |
| 6548 | } |
| 6549 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6550 | // Instructions property |
| 6551 | type OfpTableFeaturePropInstructions struct { |
| 6552 | // One of OFPTFPT_INSTRUCTIONS, |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6553 | //OFPTFPT_INSTRUCTIONS_MISS. |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6554 | Instructions []*OfpInstruction `protobuf:"bytes,1,rep,name=instructions,proto3" json:"instructions,omitempty"` |
| 6555 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6556 | XXX_unrecognized []byte `json:"-"` |
| 6557 | XXX_sizecache int32 `json:"-"` |
| 6558 | } |
| 6559 | |
| 6560 | func (m *OfpTableFeaturePropInstructions) Reset() { *m = OfpTableFeaturePropInstructions{} } |
| 6561 | func (m *OfpTableFeaturePropInstructions) String() string { return proto.CompactTextString(m) } |
| 6562 | func (*OfpTableFeaturePropInstructions) ProtoMessage() {} |
| 6563 | func (*OfpTableFeaturePropInstructions) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6564 | return fileDescriptor_08e3a4e375aeddc7, []int{50} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6565 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6566 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6567 | func (m *OfpTableFeaturePropInstructions) XXX_Unmarshal(b []byte) error { |
| 6568 | return xxx_messageInfo_OfpTableFeaturePropInstructions.Unmarshal(m, b) |
| 6569 | } |
| 6570 | func (m *OfpTableFeaturePropInstructions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6571 | return xxx_messageInfo_OfpTableFeaturePropInstructions.Marshal(b, m, deterministic) |
| 6572 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6573 | func (m *OfpTableFeaturePropInstructions) XXX_Merge(src proto.Message) { |
| 6574 | xxx_messageInfo_OfpTableFeaturePropInstructions.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6575 | } |
| 6576 | func (m *OfpTableFeaturePropInstructions) XXX_Size() int { |
| 6577 | return xxx_messageInfo_OfpTableFeaturePropInstructions.Size(m) |
| 6578 | } |
| 6579 | func (m *OfpTableFeaturePropInstructions) XXX_DiscardUnknown() { |
| 6580 | xxx_messageInfo_OfpTableFeaturePropInstructions.DiscardUnknown(m) |
| 6581 | } |
| 6582 | |
| 6583 | var xxx_messageInfo_OfpTableFeaturePropInstructions proto.InternalMessageInfo |
| 6584 | |
| 6585 | func (m *OfpTableFeaturePropInstructions) GetInstructions() []*OfpInstruction { |
| 6586 | if m != nil { |
| 6587 | return m.Instructions |
| 6588 | } |
| 6589 | return nil |
| 6590 | } |
| 6591 | |
| 6592 | // Next Tables property |
| 6593 | type OfpTableFeaturePropNextTables struct { |
| 6594 | // One of OFPTFPT_NEXT_TABLES, |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6595 | //OFPTFPT_NEXT_TABLES_MISS. |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6596 | NextTableIds []uint32 `protobuf:"varint,1,rep,packed,name=next_table_ids,json=nextTableIds,proto3" json:"next_table_ids,omitempty"` |
| 6597 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6598 | XXX_unrecognized []byte `json:"-"` |
| 6599 | XXX_sizecache int32 `json:"-"` |
| 6600 | } |
| 6601 | |
| 6602 | func (m *OfpTableFeaturePropNextTables) Reset() { *m = OfpTableFeaturePropNextTables{} } |
| 6603 | func (m *OfpTableFeaturePropNextTables) String() string { return proto.CompactTextString(m) } |
| 6604 | func (*OfpTableFeaturePropNextTables) ProtoMessage() {} |
| 6605 | func (*OfpTableFeaturePropNextTables) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6606 | return fileDescriptor_08e3a4e375aeddc7, []int{51} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6607 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6608 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6609 | func (m *OfpTableFeaturePropNextTables) XXX_Unmarshal(b []byte) error { |
| 6610 | return xxx_messageInfo_OfpTableFeaturePropNextTables.Unmarshal(m, b) |
| 6611 | } |
| 6612 | func (m *OfpTableFeaturePropNextTables) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6613 | return xxx_messageInfo_OfpTableFeaturePropNextTables.Marshal(b, m, deterministic) |
| 6614 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6615 | func (m *OfpTableFeaturePropNextTables) XXX_Merge(src proto.Message) { |
| 6616 | xxx_messageInfo_OfpTableFeaturePropNextTables.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6617 | } |
| 6618 | func (m *OfpTableFeaturePropNextTables) XXX_Size() int { |
| 6619 | return xxx_messageInfo_OfpTableFeaturePropNextTables.Size(m) |
| 6620 | } |
| 6621 | func (m *OfpTableFeaturePropNextTables) XXX_DiscardUnknown() { |
| 6622 | xxx_messageInfo_OfpTableFeaturePropNextTables.DiscardUnknown(m) |
| 6623 | } |
| 6624 | |
| 6625 | var xxx_messageInfo_OfpTableFeaturePropNextTables proto.InternalMessageInfo |
| 6626 | |
| 6627 | func (m *OfpTableFeaturePropNextTables) GetNextTableIds() []uint32 { |
| 6628 | if m != nil { |
| 6629 | return m.NextTableIds |
| 6630 | } |
| 6631 | return nil |
| 6632 | } |
| 6633 | |
| 6634 | // Actions property |
| 6635 | type OfpTableFeaturePropActions struct { |
| 6636 | // One of OFPTFPT_WRITE_ACTIONS, |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6637 | //OFPTFPT_WRITE_ACTIONS_MISS, |
| 6638 | //OFPTFPT_APPLY_ACTIONS, |
| 6639 | //OFPTFPT_APPLY_ACTIONS_MISS. |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6640 | Actions []*OfpAction `protobuf:"bytes,1,rep,name=actions,proto3" json:"actions,omitempty"` |
| 6641 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6642 | XXX_unrecognized []byte `json:"-"` |
| 6643 | XXX_sizecache int32 `json:"-"` |
| 6644 | } |
| 6645 | |
| 6646 | func (m *OfpTableFeaturePropActions) Reset() { *m = OfpTableFeaturePropActions{} } |
| 6647 | func (m *OfpTableFeaturePropActions) String() string { return proto.CompactTextString(m) } |
| 6648 | func (*OfpTableFeaturePropActions) ProtoMessage() {} |
| 6649 | func (*OfpTableFeaturePropActions) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6650 | return fileDescriptor_08e3a4e375aeddc7, []int{52} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6651 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6652 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6653 | func (m *OfpTableFeaturePropActions) XXX_Unmarshal(b []byte) error { |
| 6654 | return xxx_messageInfo_OfpTableFeaturePropActions.Unmarshal(m, b) |
| 6655 | } |
| 6656 | func (m *OfpTableFeaturePropActions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6657 | return xxx_messageInfo_OfpTableFeaturePropActions.Marshal(b, m, deterministic) |
| 6658 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6659 | func (m *OfpTableFeaturePropActions) XXX_Merge(src proto.Message) { |
| 6660 | xxx_messageInfo_OfpTableFeaturePropActions.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6661 | } |
| 6662 | func (m *OfpTableFeaturePropActions) XXX_Size() int { |
| 6663 | return xxx_messageInfo_OfpTableFeaturePropActions.Size(m) |
| 6664 | } |
| 6665 | func (m *OfpTableFeaturePropActions) XXX_DiscardUnknown() { |
| 6666 | xxx_messageInfo_OfpTableFeaturePropActions.DiscardUnknown(m) |
| 6667 | } |
| 6668 | |
| 6669 | var xxx_messageInfo_OfpTableFeaturePropActions proto.InternalMessageInfo |
| 6670 | |
| 6671 | func (m *OfpTableFeaturePropActions) GetActions() []*OfpAction { |
| 6672 | if m != nil { |
| 6673 | return m.Actions |
| 6674 | } |
| 6675 | return nil |
| 6676 | } |
| 6677 | |
| 6678 | // Match, Wildcard or Set-Field property |
| 6679 | type OfpTableFeaturePropOxm struct { |
| 6680 | // TODO is this a uint32??? |
| 6681 | OxmIds []uint32 `protobuf:"varint,3,rep,packed,name=oxm_ids,json=oxmIds,proto3" json:"oxm_ids,omitempty"` |
| 6682 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6683 | XXX_unrecognized []byte `json:"-"` |
| 6684 | XXX_sizecache int32 `json:"-"` |
| 6685 | } |
| 6686 | |
| 6687 | func (m *OfpTableFeaturePropOxm) Reset() { *m = OfpTableFeaturePropOxm{} } |
| 6688 | func (m *OfpTableFeaturePropOxm) String() string { return proto.CompactTextString(m) } |
| 6689 | func (*OfpTableFeaturePropOxm) ProtoMessage() {} |
| 6690 | func (*OfpTableFeaturePropOxm) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6691 | return fileDescriptor_08e3a4e375aeddc7, []int{53} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6692 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6693 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6694 | func (m *OfpTableFeaturePropOxm) XXX_Unmarshal(b []byte) error { |
| 6695 | return xxx_messageInfo_OfpTableFeaturePropOxm.Unmarshal(m, b) |
| 6696 | } |
| 6697 | func (m *OfpTableFeaturePropOxm) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6698 | return xxx_messageInfo_OfpTableFeaturePropOxm.Marshal(b, m, deterministic) |
| 6699 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6700 | func (m *OfpTableFeaturePropOxm) XXX_Merge(src proto.Message) { |
| 6701 | xxx_messageInfo_OfpTableFeaturePropOxm.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6702 | } |
| 6703 | func (m *OfpTableFeaturePropOxm) XXX_Size() int { |
| 6704 | return xxx_messageInfo_OfpTableFeaturePropOxm.Size(m) |
| 6705 | } |
| 6706 | func (m *OfpTableFeaturePropOxm) XXX_DiscardUnknown() { |
| 6707 | xxx_messageInfo_OfpTableFeaturePropOxm.DiscardUnknown(m) |
| 6708 | } |
| 6709 | |
| 6710 | var xxx_messageInfo_OfpTableFeaturePropOxm proto.InternalMessageInfo |
| 6711 | |
| 6712 | func (m *OfpTableFeaturePropOxm) GetOxmIds() []uint32 { |
| 6713 | if m != nil { |
| 6714 | return m.OxmIds |
| 6715 | } |
| 6716 | return nil |
| 6717 | } |
| 6718 | |
| 6719 | // Experimenter table feature property |
| 6720 | type OfpTableFeaturePropExperimenter struct { |
| 6721 | // One of OFPTFPT_EXPERIMENTER, |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6722 | //OFPTFPT_EXPERIMENTER_MISS. |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6723 | Experimenter uint32 `protobuf:"varint,2,opt,name=experimenter,proto3" json:"experimenter,omitempty"` |
| 6724 | ExpType uint32 `protobuf:"varint,3,opt,name=exp_type,json=expType,proto3" json:"exp_type,omitempty"` |
| 6725 | ExperimenterData []uint32 `protobuf:"varint,4,rep,packed,name=experimenter_data,json=experimenterData,proto3" json:"experimenter_data,omitempty"` |
| 6726 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6727 | XXX_unrecognized []byte `json:"-"` |
| 6728 | XXX_sizecache int32 `json:"-"` |
| 6729 | } |
| 6730 | |
| 6731 | func (m *OfpTableFeaturePropExperimenter) Reset() { *m = OfpTableFeaturePropExperimenter{} } |
| 6732 | func (m *OfpTableFeaturePropExperimenter) String() string { return proto.CompactTextString(m) } |
| 6733 | func (*OfpTableFeaturePropExperimenter) ProtoMessage() {} |
| 6734 | func (*OfpTableFeaturePropExperimenter) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6735 | return fileDescriptor_08e3a4e375aeddc7, []int{54} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6736 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6737 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6738 | func (m *OfpTableFeaturePropExperimenter) XXX_Unmarshal(b []byte) error { |
| 6739 | return xxx_messageInfo_OfpTableFeaturePropExperimenter.Unmarshal(m, b) |
| 6740 | } |
| 6741 | func (m *OfpTableFeaturePropExperimenter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6742 | return xxx_messageInfo_OfpTableFeaturePropExperimenter.Marshal(b, m, deterministic) |
| 6743 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6744 | func (m *OfpTableFeaturePropExperimenter) XXX_Merge(src proto.Message) { |
| 6745 | xxx_messageInfo_OfpTableFeaturePropExperimenter.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6746 | } |
| 6747 | func (m *OfpTableFeaturePropExperimenter) XXX_Size() int { |
| 6748 | return xxx_messageInfo_OfpTableFeaturePropExperimenter.Size(m) |
| 6749 | } |
| 6750 | func (m *OfpTableFeaturePropExperimenter) XXX_DiscardUnknown() { |
| 6751 | xxx_messageInfo_OfpTableFeaturePropExperimenter.DiscardUnknown(m) |
| 6752 | } |
| 6753 | |
| 6754 | var xxx_messageInfo_OfpTableFeaturePropExperimenter proto.InternalMessageInfo |
| 6755 | |
| 6756 | func (m *OfpTableFeaturePropExperimenter) GetExperimenter() uint32 { |
| 6757 | if m != nil { |
| 6758 | return m.Experimenter |
| 6759 | } |
| 6760 | return 0 |
| 6761 | } |
| 6762 | |
| 6763 | func (m *OfpTableFeaturePropExperimenter) GetExpType() uint32 { |
| 6764 | if m != nil { |
| 6765 | return m.ExpType |
| 6766 | } |
| 6767 | return 0 |
| 6768 | } |
| 6769 | |
| 6770 | func (m *OfpTableFeaturePropExperimenter) GetExperimenterData() []uint32 { |
| 6771 | if m != nil { |
| 6772 | return m.ExperimenterData |
| 6773 | } |
| 6774 | return nil |
| 6775 | } |
| 6776 | |
| 6777 | // Body for ofp_multipart_request of type OFPMP_TABLE_FEATURES./ |
| 6778 | // Body of reply to OFPMP_TABLE_FEATURES request. |
| 6779 | type OfpTableFeatures struct { |
| 6780 | TableId uint32 `protobuf:"varint,1,opt,name=table_id,json=tableId,proto3" json:"table_id,omitempty"` |
| 6781 | Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"` |
| 6782 | MetadataMatch uint64 `protobuf:"varint,3,opt,name=metadata_match,json=metadataMatch,proto3" json:"metadata_match,omitempty"` |
| 6783 | MetadataWrite uint64 `protobuf:"varint,4,opt,name=metadata_write,json=metadataWrite,proto3" json:"metadata_write,omitempty"` |
| 6784 | Config uint32 `protobuf:"varint,5,opt,name=config,proto3" json:"config,omitempty"` |
| 6785 | MaxEntries uint32 `protobuf:"varint,6,opt,name=max_entries,json=maxEntries,proto3" json:"max_entries,omitempty"` |
| 6786 | // Table Feature Property list |
| 6787 | Properties []*OfpTableFeatureProperty `protobuf:"bytes,7,rep,name=properties,proto3" json:"properties,omitempty"` |
| 6788 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6789 | XXX_unrecognized []byte `json:"-"` |
| 6790 | XXX_sizecache int32 `json:"-"` |
| 6791 | } |
| 6792 | |
| 6793 | func (m *OfpTableFeatures) Reset() { *m = OfpTableFeatures{} } |
| 6794 | func (m *OfpTableFeatures) String() string { return proto.CompactTextString(m) } |
| 6795 | func (*OfpTableFeatures) ProtoMessage() {} |
| 6796 | func (*OfpTableFeatures) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6797 | return fileDescriptor_08e3a4e375aeddc7, []int{55} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6798 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6799 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6800 | func (m *OfpTableFeatures) XXX_Unmarshal(b []byte) error { |
| 6801 | return xxx_messageInfo_OfpTableFeatures.Unmarshal(m, b) |
| 6802 | } |
| 6803 | func (m *OfpTableFeatures) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6804 | return xxx_messageInfo_OfpTableFeatures.Marshal(b, m, deterministic) |
| 6805 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6806 | func (m *OfpTableFeatures) XXX_Merge(src proto.Message) { |
| 6807 | xxx_messageInfo_OfpTableFeatures.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6808 | } |
| 6809 | func (m *OfpTableFeatures) XXX_Size() int { |
| 6810 | return xxx_messageInfo_OfpTableFeatures.Size(m) |
| 6811 | } |
| 6812 | func (m *OfpTableFeatures) XXX_DiscardUnknown() { |
| 6813 | xxx_messageInfo_OfpTableFeatures.DiscardUnknown(m) |
| 6814 | } |
| 6815 | |
| 6816 | var xxx_messageInfo_OfpTableFeatures proto.InternalMessageInfo |
| 6817 | |
| 6818 | func (m *OfpTableFeatures) GetTableId() uint32 { |
| 6819 | if m != nil { |
| 6820 | return m.TableId |
| 6821 | } |
| 6822 | return 0 |
| 6823 | } |
| 6824 | |
| 6825 | func (m *OfpTableFeatures) GetName() string { |
| 6826 | if m != nil { |
| 6827 | return m.Name |
| 6828 | } |
| 6829 | return "" |
| 6830 | } |
| 6831 | |
| 6832 | func (m *OfpTableFeatures) GetMetadataMatch() uint64 { |
| 6833 | if m != nil { |
| 6834 | return m.MetadataMatch |
| 6835 | } |
| 6836 | return 0 |
| 6837 | } |
| 6838 | |
| 6839 | func (m *OfpTableFeatures) GetMetadataWrite() uint64 { |
| 6840 | if m != nil { |
| 6841 | return m.MetadataWrite |
| 6842 | } |
| 6843 | return 0 |
| 6844 | } |
| 6845 | |
| 6846 | func (m *OfpTableFeatures) GetConfig() uint32 { |
| 6847 | if m != nil { |
| 6848 | return m.Config |
| 6849 | } |
| 6850 | return 0 |
| 6851 | } |
| 6852 | |
| 6853 | func (m *OfpTableFeatures) GetMaxEntries() uint32 { |
| 6854 | if m != nil { |
| 6855 | return m.MaxEntries |
| 6856 | } |
| 6857 | return 0 |
| 6858 | } |
| 6859 | |
| 6860 | func (m *OfpTableFeatures) GetProperties() []*OfpTableFeatureProperty { |
| 6861 | if m != nil { |
| 6862 | return m.Properties |
| 6863 | } |
| 6864 | return nil |
| 6865 | } |
| 6866 | |
| 6867 | // Body of reply to OFPMP_TABLE request. |
| 6868 | type OfpTableStats struct { |
| 6869 | TableId uint32 `protobuf:"varint,1,opt,name=table_id,json=tableId,proto3" json:"table_id,omitempty"` |
| 6870 | ActiveCount uint32 `protobuf:"varint,2,opt,name=active_count,json=activeCount,proto3" json:"active_count,omitempty"` |
| 6871 | LookupCount uint64 `protobuf:"varint,3,opt,name=lookup_count,json=lookupCount,proto3" json:"lookup_count,omitempty"` |
| 6872 | MatchedCount uint64 `protobuf:"varint,4,opt,name=matched_count,json=matchedCount,proto3" json:"matched_count,omitempty"` |
| 6873 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6874 | XXX_unrecognized []byte `json:"-"` |
| 6875 | XXX_sizecache int32 `json:"-"` |
| 6876 | } |
| 6877 | |
| 6878 | func (m *OfpTableStats) Reset() { *m = OfpTableStats{} } |
| 6879 | func (m *OfpTableStats) String() string { return proto.CompactTextString(m) } |
| 6880 | func (*OfpTableStats) ProtoMessage() {} |
| 6881 | func (*OfpTableStats) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6882 | return fileDescriptor_08e3a4e375aeddc7, []int{56} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6883 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6884 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6885 | func (m *OfpTableStats) XXX_Unmarshal(b []byte) error { |
| 6886 | return xxx_messageInfo_OfpTableStats.Unmarshal(m, b) |
| 6887 | } |
| 6888 | func (m *OfpTableStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6889 | return xxx_messageInfo_OfpTableStats.Marshal(b, m, deterministic) |
| 6890 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6891 | func (m *OfpTableStats) XXX_Merge(src proto.Message) { |
| 6892 | xxx_messageInfo_OfpTableStats.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6893 | } |
| 6894 | func (m *OfpTableStats) XXX_Size() int { |
| 6895 | return xxx_messageInfo_OfpTableStats.Size(m) |
| 6896 | } |
| 6897 | func (m *OfpTableStats) XXX_DiscardUnknown() { |
| 6898 | xxx_messageInfo_OfpTableStats.DiscardUnknown(m) |
| 6899 | } |
| 6900 | |
| 6901 | var xxx_messageInfo_OfpTableStats proto.InternalMessageInfo |
| 6902 | |
| 6903 | func (m *OfpTableStats) GetTableId() uint32 { |
| 6904 | if m != nil { |
| 6905 | return m.TableId |
| 6906 | } |
| 6907 | return 0 |
| 6908 | } |
| 6909 | |
| 6910 | func (m *OfpTableStats) GetActiveCount() uint32 { |
| 6911 | if m != nil { |
| 6912 | return m.ActiveCount |
| 6913 | } |
| 6914 | return 0 |
| 6915 | } |
| 6916 | |
| 6917 | func (m *OfpTableStats) GetLookupCount() uint64 { |
| 6918 | if m != nil { |
| 6919 | return m.LookupCount |
| 6920 | } |
| 6921 | return 0 |
| 6922 | } |
| 6923 | |
| 6924 | func (m *OfpTableStats) GetMatchedCount() uint64 { |
| 6925 | if m != nil { |
| 6926 | return m.MatchedCount |
| 6927 | } |
| 6928 | return 0 |
| 6929 | } |
| 6930 | |
| 6931 | // Body for ofp_multipart_request of type OFPMP_PORT. |
| 6932 | type OfpPortStatsRequest struct { |
| 6933 | PortNo uint32 `protobuf:"varint,1,opt,name=port_no,json=portNo,proto3" json:"port_no,omitempty"` |
| 6934 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6935 | XXX_unrecognized []byte `json:"-"` |
| 6936 | XXX_sizecache int32 `json:"-"` |
| 6937 | } |
| 6938 | |
| 6939 | func (m *OfpPortStatsRequest) Reset() { *m = OfpPortStatsRequest{} } |
| 6940 | func (m *OfpPortStatsRequest) String() string { return proto.CompactTextString(m) } |
| 6941 | func (*OfpPortStatsRequest) ProtoMessage() {} |
| 6942 | func (*OfpPortStatsRequest) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6943 | return fileDescriptor_08e3a4e375aeddc7, []int{57} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6944 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6945 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6946 | func (m *OfpPortStatsRequest) XXX_Unmarshal(b []byte) error { |
| 6947 | return xxx_messageInfo_OfpPortStatsRequest.Unmarshal(m, b) |
| 6948 | } |
| 6949 | func (m *OfpPortStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 6950 | return xxx_messageInfo_OfpPortStatsRequest.Marshal(b, m, deterministic) |
| 6951 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6952 | func (m *OfpPortStatsRequest) XXX_Merge(src proto.Message) { |
| 6953 | xxx_messageInfo_OfpPortStatsRequest.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6954 | } |
| 6955 | func (m *OfpPortStatsRequest) XXX_Size() int { |
| 6956 | return xxx_messageInfo_OfpPortStatsRequest.Size(m) |
| 6957 | } |
| 6958 | func (m *OfpPortStatsRequest) XXX_DiscardUnknown() { |
| 6959 | xxx_messageInfo_OfpPortStatsRequest.DiscardUnknown(m) |
| 6960 | } |
| 6961 | |
| 6962 | var xxx_messageInfo_OfpPortStatsRequest proto.InternalMessageInfo |
| 6963 | |
| 6964 | func (m *OfpPortStatsRequest) GetPortNo() uint32 { |
| 6965 | if m != nil { |
| 6966 | return m.PortNo |
| 6967 | } |
| 6968 | return 0 |
| 6969 | } |
| 6970 | |
| 6971 | // Body of reply to OFPMP_PORT request. If a counter is unsupported, set |
| 6972 | // the field to all ones. |
| 6973 | type OfpPortStats struct { |
| 6974 | PortNo uint32 `protobuf:"varint,1,opt,name=port_no,json=portNo,proto3" json:"port_no,omitempty"` |
| 6975 | RxPackets uint64 `protobuf:"varint,2,opt,name=rx_packets,json=rxPackets,proto3" json:"rx_packets,omitempty"` |
| 6976 | TxPackets uint64 `protobuf:"varint,3,opt,name=tx_packets,json=txPackets,proto3" json:"tx_packets,omitempty"` |
| 6977 | RxBytes uint64 `protobuf:"varint,4,opt,name=rx_bytes,json=rxBytes,proto3" json:"rx_bytes,omitempty"` |
| 6978 | TxBytes uint64 `protobuf:"varint,5,opt,name=tx_bytes,json=txBytes,proto3" json:"tx_bytes,omitempty"` |
| 6979 | RxDropped uint64 `protobuf:"varint,6,opt,name=rx_dropped,json=rxDropped,proto3" json:"rx_dropped,omitempty"` |
| 6980 | TxDropped uint64 `protobuf:"varint,7,opt,name=tx_dropped,json=txDropped,proto3" json:"tx_dropped,omitempty"` |
| 6981 | RxErrors uint64 `protobuf:"varint,8,opt,name=rx_errors,json=rxErrors,proto3" json:"rx_errors,omitempty"` |
| 6982 | TxErrors uint64 `protobuf:"varint,9,opt,name=tx_errors,json=txErrors,proto3" json:"tx_errors,omitempty"` |
| 6983 | RxFrameErr uint64 `protobuf:"varint,10,opt,name=rx_frame_err,json=rxFrameErr,proto3" json:"rx_frame_err,omitempty"` |
| 6984 | RxOverErr uint64 `protobuf:"varint,11,opt,name=rx_over_err,json=rxOverErr,proto3" json:"rx_over_err,omitempty"` |
| 6985 | RxCrcErr uint64 `protobuf:"varint,12,opt,name=rx_crc_err,json=rxCrcErr,proto3" json:"rx_crc_err,omitempty"` |
| 6986 | Collisions uint64 `protobuf:"varint,13,opt,name=collisions,proto3" json:"collisions,omitempty"` |
| 6987 | DurationSec uint32 `protobuf:"varint,14,opt,name=duration_sec,json=durationSec,proto3" json:"duration_sec,omitempty"` |
| 6988 | DurationNsec uint32 `protobuf:"varint,15,opt,name=duration_nsec,json=durationNsec,proto3" json:"duration_nsec,omitempty"` |
| 6989 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 6990 | XXX_unrecognized []byte `json:"-"` |
| 6991 | XXX_sizecache int32 `json:"-"` |
| 6992 | } |
| 6993 | |
| 6994 | func (m *OfpPortStats) Reset() { *m = OfpPortStats{} } |
| 6995 | func (m *OfpPortStats) String() string { return proto.CompactTextString(m) } |
| 6996 | func (*OfpPortStats) ProtoMessage() {} |
| 6997 | func (*OfpPortStats) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 6998 | return fileDescriptor_08e3a4e375aeddc7, []int{58} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 6999 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7000 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7001 | func (m *OfpPortStats) XXX_Unmarshal(b []byte) error { |
| 7002 | return xxx_messageInfo_OfpPortStats.Unmarshal(m, b) |
| 7003 | } |
| 7004 | func (m *OfpPortStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7005 | return xxx_messageInfo_OfpPortStats.Marshal(b, m, deterministic) |
| 7006 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7007 | func (m *OfpPortStats) XXX_Merge(src proto.Message) { |
| 7008 | xxx_messageInfo_OfpPortStats.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7009 | } |
| 7010 | func (m *OfpPortStats) XXX_Size() int { |
| 7011 | return xxx_messageInfo_OfpPortStats.Size(m) |
| 7012 | } |
| 7013 | func (m *OfpPortStats) XXX_DiscardUnknown() { |
| 7014 | xxx_messageInfo_OfpPortStats.DiscardUnknown(m) |
| 7015 | } |
| 7016 | |
| 7017 | var xxx_messageInfo_OfpPortStats proto.InternalMessageInfo |
| 7018 | |
| 7019 | func (m *OfpPortStats) GetPortNo() uint32 { |
| 7020 | if m != nil { |
| 7021 | return m.PortNo |
| 7022 | } |
| 7023 | return 0 |
| 7024 | } |
| 7025 | |
| 7026 | func (m *OfpPortStats) GetRxPackets() uint64 { |
| 7027 | if m != nil { |
| 7028 | return m.RxPackets |
| 7029 | } |
| 7030 | return 0 |
| 7031 | } |
| 7032 | |
| 7033 | func (m *OfpPortStats) GetTxPackets() uint64 { |
| 7034 | if m != nil { |
| 7035 | return m.TxPackets |
| 7036 | } |
| 7037 | return 0 |
| 7038 | } |
| 7039 | |
| 7040 | func (m *OfpPortStats) GetRxBytes() uint64 { |
| 7041 | if m != nil { |
| 7042 | return m.RxBytes |
| 7043 | } |
| 7044 | return 0 |
| 7045 | } |
| 7046 | |
| 7047 | func (m *OfpPortStats) GetTxBytes() uint64 { |
| 7048 | if m != nil { |
| 7049 | return m.TxBytes |
| 7050 | } |
| 7051 | return 0 |
| 7052 | } |
| 7053 | |
| 7054 | func (m *OfpPortStats) GetRxDropped() uint64 { |
| 7055 | if m != nil { |
| 7056 | return m.RxDropped |
| 7057 | } |
| 7058 | return 0 |
| 7059 | } |
| 7060 | |
| 7061 | func (m *OfpPortStats) GetTxDropped() uint64 { |
| 7062 | if m != nil { |
| 7063 | return m.TxDropped |
| 7064 | } |
| 7065 | return 0 |
| 7066 | } |
| 7067 | |
| 7068 | func (m *OfpPortStats) GetRxErrors() uint64 { |
| 7069 | if m != nil { |
| 7070 | return m.RxErrors |
| 7071 | } |
| 7072 | return 0 |
| 7073 | } |
| 7074 | |
| 7075 | func (m *OfpPortStats) GetTxErrors() uint64 { |
| 7076 | if m != nil { |
| 7077 | return m.TxErrors |
| 7078 | } |
| 7079 | return 0 |
| 7080 | } |
| 7081 | |
| 7082 | func (m *OfpPortStats) GetRxFrameErr() uint64 { |
| 7083 | if m != nil { |
| 7084 | return m.RxFrameErr |
| 7085 | } |
| 7086 | return 0 |
| 7087 | } |
| 7088 | |
| 7089 | func (m *OfpPortStats) GetRxOverErr() uint64 { |
| 7090 | if m != nil { |
| 7091 | return m.RxOverErr |
| 7092 | } |
| 7093 | return 0 |
| 7094 | } |
| 7095 | |
| 7096 | func (m *OfpPortStats) GetRxCrcErr() uint64 { |
| 7097 | if m != nil { |
| 7098 | return m.RxCrcErr |
| 7099 | } |
| 7100 | return 0 |
| 7101 | } |
| 7102 | |
| 7103 | func (m *OfpPortStats) GetCollisions() uint64 { |
| 7104 | if m != nil { |
| 7105 | return m.Collisions |
| 7106 | } |
| 7107 | return 0 |
| 7108 | } |
| 7109 | |
| 7110 | func (m *OfpPortStats) GetDurationSec() uint32 { |
| 7111 | if m != nil { |
| 7112 | return m.DurationSec |
| 7113 | } |
| 7114 | return 0 |
| 7115 | } |
| 7116 | |
| 7117 | func (m *OfpPortStats) GetDurationNsec() uint32 { |
| 7118 | if m != nil { |
| 7119 | return m.DurationNsec |
| 7120 | } |
| 7121 | return 0 |
| 7122 | } |
| 7123 | |
| 7124 | // Body of OFPMP_GROUP request. |
| 7125 | type OfpGroupStatsRequest struct { |
| 7126 | GroupId uint32 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"` |
| 7127 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7128 | XXX_unrecognized []byte `json:"-"` |
| 7129 | XXX_sizecache int32 `json:"-"` |
| 7130 | } |
| 7131 | |
| 7132 | func (m *OfpGroupStatsRequest) Reset() { *m = OfpGroupStatsRequest{} } |
| 7133 | func (m *OfpGroupStatsRequest) String() string { return proto.CompactTextString(m) } |
| 7134 | func (*OfpGroupStatsRequest) ProtoMessage() {} |
| 7135 | func (*OfpGroupStatsRequest) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7136 | return fileDescriptor_08e3a4e375aeddc7, []int{59} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7137 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7138 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7139 | func (m *OfpGroupStatsRequest) XXX_Unmarshal(b []byte) error { |
| 7140 | return xxx_messageInfo_OfpGroupStatsRequest.Unmarshal(m, b) |
| 7141 | } |
| 7142 | func (m *OfpGroupStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7143 | return xxx_messageInfo_OfpGroupStatsRequest.Marshal(b, m, deterministic) |
| 7144 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7145 | func (m *OfpGroupStatsRequest) XXX_Merge(src proto.Message) { |
| 7146 | xxx_messageInfo_OfpGroupStatsRequest.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7147 | } |
| 7148 | func (m *OfpGroupStatsRequest) XXX_Size() int { |
| 7149 | return xxx_messageInfo_OfpGroupStatsRequest.Size(m) |
| 7150 | } |
| 7151 | func (m *OfpGroupStatsRequest) XXX_DiscardUnknown() { |
| 7152 | xxx_messageInfo_OfpGroupStatsRequest.DiscardUnknown(m) |
| 7153 | } |
| 7154 | |
| 7155 | var xxx_messageInfo_OfpGroupStatsRequest proto.InternalMessageInfo |
| 7156 | |
| 7157 | func (m *OfpGroupStatsRequest) GetGroupId() uint32 { |
| 7158 | if m != nil { |
| 7159 | return m.GroupId |
| 7160 | } |
| 7161 | return 0 |
| 7162 | } |
| 7163 | |
| 7164 | // Used in group stats replies. |
| 7165 | type OfpBucketCounter struct { |
| 7166 | PacketCount uint64 `protobuf:"varint,1,opt,name=packet_count,json=packetCount,proto3" json:"packet_count,omitempty"` |
| 7167 | ByteCount uint64 `protobuf:"varint,2,opt,name=byte_count,json=byteCount,proto3" json:"byte_count,omitempty"` |
| 7168 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7169 | XXX_unrecognized []byte `json:"-"` |
| 7170 | XXX_sizecache int32 `json:"-"` |
| 7171 | } |
| 7172 | |
| 7173 | func (m *OfpBucketCounter) Reset() { *m = OfpBucketCounter{} } |
| 7174 | func (m *OfpBucketCounter) String() string { return proto.CompactTextString(m) } |
| 7175 | func (*OfpBucketCounter) ProtoMessage() {} |
| 7176 | func (*OfpBucketCounter) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7177 | return fileDescriptor_08e3a4e375aeddc7, []int{60} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7178 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7179 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7180 | func (m *OfpBucketCounter) XXX_Unmarshal(b []byte) error { |
| 7181 | return xxx_messageInfo_OfpBucketCounter.Unmarshal(m, b) |
| 7182 | } |
| 7183 | func (m *OfpBucketCounter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7184 | return xxx_messageInfo_OfpBucketCounter.Marshal(b, m, deterministic) |
| 7185 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7186 | func (m *OfpBucketCounter) XXX_Merge(src proto.Message) { |
| 7187 | xxx_messageInfo_OfpBucketCounter.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7188 | } |
| 7189 | func (m *OfpBucketCounter) XXX_Size() int { |
| 7190 | return xxx_messageInfo_OfpBucketCounter.Size(m) |
| 7191 | } |
| 7192 | func (m *OfpBucketCounter) XXX_DiscardUnknown() { |
| 7193 | xxx_messageInfo_OfpBucketCounter.DiscardUnknown(m) |
| 7194 | } |
| 7195 | |
| 7196 | var xxx_messageInfo_OfpBucketCounter proto.InternalMessageInfo |
| 7197 | |
| 7198 | func (m *OfpBucketCounter) GetPacketCount() uint64 { |
| 7199 | if m != nil { |
| 7200 | return m.PacketCount |
| 7201 | } |
| 7202 | return 0 |
| 7203 | } |
| 7204 | |
| 7205 | func (m *OfpBucketCounter) GetByteCount() uint64 { |
| 7206 | if m != nil { |
| 7207 | return m.ByteCount |
| 7208 | } |
| 7209 | return 0 |
| 7210 | } |
| 7211 | |
| 7212 | // Body of reply to OFPMP_GROUP request. |
| 7213 | type OfpGroupStats struct { |
| 7214 | GroupId uint32 `protobuf:"varint,1,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"` |
| 7215 | RefCount uint32 `protobuf:"varint,2,opt,name=ref_count,json=refCount,proto3" json:"ref_count,omitempty"` |
| 7216 | PacketCount uint64 `protobuf:"varint,3,opt,name=packet_count,json=packetCount,proto3" json:"packet_count,omitempty"` |
| 7217 | ByteCount uint64 `protobuf:"varint,4,opt,name=byte_count,json=byteCount,proto3" json:"byte_count,omitempty"` |
| 7218 | DurationSec uint32 `protobuf:"varint,5,opt,name=duration_sec,json=durationSec,proto3" json:"duration_sec,omitempty"` |
| 7219 | DurationNsec uint32 `protobuf:"varint,6,opt,name=duration_nsec,json=durationNsec,proto3" json:"duration_nsec,omitempty"` |
| 7220 | BucketStats []*OfpBucketCounter `protobuf:"bytes,7,rep,name=bucket_stats,json=bucketStats,proto3" json:"bucket_stats,omitempty"` |
| 7221 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7222 | XXX_unrecognized []byte `json:"-"` |
| 7223 | XXX_sizecache int32 `json:"-"` |
| 7224 | } |
| 7225 | |
| 7226 | func (m *OfpGroupStats) Reset() { *m = OfpGroupStats{} } |
| 7227 | func (m *OfpGroupStats) String() string { return proto.CompactTextString(m) } |
| 7228 | func (*OfpGroupStats) ProtoMessage() {} |
| 7229 | func (*OfpGroupStats) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7230 | return fileDescriptor_08e3a4e375aeddc7, []int{61} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7231 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7232 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7233 | func (m *OfpGroupStats) XXX_Unmarshal(b []byte) error { |
| 7234 | return xxx_messageInfo_OfpGroupStats.Unmarshal(m, b) |
| 7235 | } |
| 7236 | func (m *OfpGroupStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7237 | return xxx_messageInfo_OfpGroupStats.Marshal(b, m, deterministic) |
| 7238 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7239 | func (m *OfpGroupStats) XXX_Merge(src proto.Message) { |
| 7240 | xxx_messageInfo_OfpGroupStats.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7241 | } |
| 7242 | func (m *OfpGroupStats) XXX_Size() int { |
| 7243 | return xxx_messageInfo_OfpGroupStats.Size(m) |
| 7244 | } |
| 7245 | func (m *OfpGroupStats) XXX_DiscardUnknown() { |
| 7246 | xxx_messageInfo_OfpGroupStats.DiscardUnknown(m) |
| 7247 | } |
| 7248 | |
| 7249 | var xxx_messageInfo_OfpGroupStats proto.InternalMessageInfo |
| 7250 | |
| 7251 | func (m *OfpGroupStats) GetGroupId() uint32 { |
| 7252 | if m != nil { |
| 7253 | return m.GroupId |
| 7254 | } |
| 7255 | return 0 |
| 7256 | } |
| 7257 | |
| 7258 | func (m *OfpGroupStats) GetRefCount() uint32 { |
| 7259 | if m != nil { |
| 7260 | return m.RefCount |
| 7261 | } |
| 7262 | return 0 |
| 7263 | } |
| 7264 | |
| 7265 | func (m *OfpGroupStats) GetPacketCount() uint64 { |
| 7266 | if m != nil { |
| 7267 | return m.PacketCount |
| 7268 | } |
| 7269 | return 0 |
| 7270 | } |
| 7271 | |
| 7272 | func (m *OfpGroupStats) GetByteCount() uint64 { |
| 7273 | if m != nil { |
| 7274 | return m.ByteCount |
| 7275 | } |
| 7276 | return 0 |
| 7277 | } |
| 7278 | |
| 7279 | func (m *OfpGroupStats) GetDurationSec() uint32 { |
| 7280 | if m != nil { |
| 7281 | return m.DurationSec |
| 7282 | } |
| 7283 | return 0 |
| 7284 | } |
| 7285 | |
| 7286 | func (m *OfpGroupStats) GetDurationNsec() uint32 { |
| 7287 | if m != nil { |
| 7288 | return m.DurationNsec |
| 7289 | } |
| 7290 | return 0 |
| 7291 | } |
| 7292 | |
| 7293 | func (m *OfpGroupStats) GetBucketStats() []*OfpBucketCounter { |
| 7294 | if m != nil { |
| 7295 | return m.BucketStats |
| 7296 | } |
| 7297 | return nil |
| 7298 | } |
| 7299 | |
| 7300 | // Body of reply to OFPMP_GROUP_DESC request. |
| 7301 | type OfpGroupDesc struct { |
| 7302 | Type OfpGroupType `protobuf:"varint,1,opt,name=type,proto3,enum=openflow_13.OfpGroupType" json:"type,omitempty"` |
| 7303 | GroupId uint32 `protobuf:"varint,2,opt,name=group_id,json=groupId,proto3" json:"group_id,omitempty"` |
| 7304 | Buckets []*OfpBucket `protobuf:"bytes,3,rep,name=buckets,proto3" json:"buckets,omitempty"` |
| 7305 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7306 | XXX_unrecognized []byte `json:"-"` |
| 7307 | XXX_sizecache int32 `json:"-"` |
| 7308 | } |
| 7309 | |
| 7310 | func (m *OfpGroupDesc) Reset() { *m = OfpGroupDesc{} } |
| 7311 | func (m *OfpGroupDesc) String() string { return proto.CompactTextString(m) } |
| 7312 | func (*OfpGroupDesc) ProtoMessage() {} |
| 7313 | func (*OfpGroupDesc) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7314 | return fileDescriptor_08e3a4e375aeddc7, []int{62} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7315 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7316 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7317 | func (m *OfpGroupDesc) XXX_Unmarshal(b []byte) error { |
| 7318 | return xxx_messageInfo_OfpGroupDesc.Unmarshal(m, b) |
| 7319 | } |
| 7320 | func (m *OfpGroupDesc) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7321 | return xxx_messageInfo_OfpGroupDesc.Marshal(b, m, deterministic) |
| 7322 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7323 | func (m *OfpGroupDesc) XXX_Merge(src proto.Message) { |
| 7324 | xxx_messageInfo_OfpGroupDesc.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7325 | } |
| 7326 | func (m *OfpGroupDesc) XXX_Size() int { |
| 7327 | return xxx_messageInfo_OfpGroupDesc.Size(m) |
| 7328 | } |
| 7329 | func (m *OfpGroupDesc) XXX_DiscardUnknown() { |
| 7330 | xxx_messageInfo_OfpGroupDesc.DiscardUnknown(m) |
| 7331 | } |
| 7332 | |
| 7333 | var xxx_messageInfo_OfpGroupDesc proto.InternalMessageInfo |
| 7334 | |
| 7335 | func (m *OfpGroupDesc) GetType() OfpGroupType { |
| 7336 | if m != nil { |
| 7337 | return m.Type |
| 7338 | } |
| 7339 | return OfpGroupType_OFPGT_ALL |
| 7340 | } |
| 7341 | |
| 7342 | func (m *OfpGroupDesc) GetGroupId() uint32 { |
| 7343 | if m != nil { |
| 7344 | return m.GroupId |
| 7345 | } |
| 7346 | return 0 |
| 7347 | } |
| 7348 | |
| 7349 | func (m *OfpGroupDesc) GetBuckets() []*OfpBucket { |
| 7350 | if m != nil { |
| 7351 | return m.Buckets |
| 7352 | } |
| 7353 | return nil |
| 7354 | } |
| 7355 | |
| 7356 | type OfpGroupEntry struct { |
| 7357 | Desc *OfpGroupDesc `protobuf:"bytes,1,opt,name=desc,proto3" json:"desc,omitempty"` |
| 7358 | Stats *OfpGroupStats `protobuf:"bytes,2,opt,name=stats,proto3" json:"stats,omitempty"` |
| 7359 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7360 | XXX_unrecognized []byte `json:"-"` |
| 7361 | XXX_sizecache int32 `json:"-"` |
| 7362 | } |
| 7363 | |
| 7364 | func (m *OfpGroupEntry) Reset() { *m = OfpGroupEntry{} } |
| 7365 | func (m *OfpGroupEntry) String() string { return proto.CompactTextString(m) } |
| 7366 | func (*OfpGroupEntry) ProtoMessage() {} |
| 7367 | func (*OfpGroupEntry) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7368 | return fileDescriptor_08e3a4e375aeddc7, []int{63} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7369 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7370 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7371 | func (m *OfpGroupEntry) XXX_Unmarshal(b []byte) error { |
| 7372 | return xxx_messageInfo_OfpGroupEntry.Unmarshal(m, b) |
| 7373 | } |
| 7374 | func (m *OfpGroupEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7375 | return xxx_messageInfo_OfpGroupEntry.Marshal(b, m, deterministic) |
| 7376 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7377 | func (m *OfpGroupEntry) XXX_Merge(src proto.Message) { |
| 7378 | xxx_messageInfo_OfpGroupEntry.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7379 | } |
| 7380 | func (m *OfpGroupEntry) XXX_Size() int { |
| 7381 | return xxx_messageInfo_OfpGroupEntry.Size(m) |
| 7382 | } |
| 7383 | func (m *OfpGroupEntry) XXX_DiscardUnknown() { |
| 7384 | xxx_messageInfo_OfpGroupEntry.DiscardUnknown(m) |
| 7385 | } |
| 7386 | |
| 7387 | var xxx_messageInfo_OfpGroupEntry proto.InternalMessageInfo |
| 7388 | |
| 7389 | func (m *OfpGroupEntry) GetDesc() *OfpGroupDesc { |
| 7390 | if m != nil { |
| 7391 | return m.Desc |
| 7392 | } |
| 7393 | return nil |
| 7394 | } |
| 7395 | |
| 7396 | func (m *OfpGroupEntry) GetStats() *OfpGroupStats { |
| 7397 | if m != nil { |
| 7398 | return m.Stats |
| 7399 | } |
| 7400 | return nil |
| 7401 | } |
| 7402 | |
| 7403 | // Body of reply to OFPMP_GROUP_FEATURES request. Group features. |
| 7404 | type OfpGroupFeatures struct { |
| 7405 | Types uint32 `protobuf:"varint,1,opt,name=types,proto3" json:"types,omitempty"` |
| 7406 | Capabilities uint32 `protobuf:"varint,2,opt,name=capabilities,proto3" json:"capabilities,omitempty"` |
| 7407 | MaxGroups []uint32 `protobuf:"varint,3,rep,packed,name=max_groups,json=maxGroups,proto3" json:"max_groups,omitempty"` |
| 7408 | Actions []uint32 `protobuf:"varint,4,rep,packed,name=actions,proto3" json:"actions,omitempty"` |
| 7409 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7410 | XXX_unrecognized []byte `json:"-"` |
| 7411 | XXX_sizecache int32 `json:"-"` |
| 7412 | } |
| 7413 | |
| 7414 | func (m *OfpGroupFeatures) Reset() { *m = OfpGroupFeatures{} } |
| 7415 | func (m *OfpGroupFeatures) String() string { return proto.CompactTextString(m) } |
| 7416 | func (*OfpGroupFeatures) ProtoMessage() {} |
| 7417 | func (*OfpGroupFeatures) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7418 | return fileDescriptor_08e3a4e375aeddc7, []int{64} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7419 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7420 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7421 | func (m *OfpGroupFeatures) XXX_Unmarshal(b []byte) error { |
| 7422 | return xxx_messageInfo_OfpGroupFeatures.Unmarshal(m, b) |
| 7423 | } |
| 7424 | func (m *OfpGroupFeatures) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7425 | return xxx_messageInfo_OfpGroupFeatures.Marshal(b, m, deterministic) |
| 7426 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7427 | func (m *OfpGroupFeatures) XXX_Merge(src proto.Message) { |
| 7428 | xxx_messageInfo_OfpGroupFeatures.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7429 | } |
| 7430 | func (m *OfpGroupFeatures) XXX_Size() int { |
| 7431 | return xxx_messageInfo_OfpGroupFeatures.Size(m) |
| 7432 | } |
| 7433 | func (m *OfpGroupFeatures) XXX_DiscardUnknown() { |
| 7434 | xxx_messageInfo_OfpGroupFeatures.DiscardUnknown(m) |
| 7435 | } |
| 7436 | |
| 7437 | var xxx_messageInfo_OfpGroupFeatures proto.InternalMessageInfo |
| 7438 | |
| 7439 | func (m *OfpGroupFeatures) GetTypes() uint32 { |
| 7440 | if m != nil { |
| 7441 | return m.Types |
| 7442 | } |
| 7443 | return 0 |
| 7444 | } |
| 7445 | |
| 7446 | func (m *OfpGroupFeatures) GetCapabilities() uint32 { |
| 7447 | if m != nil { |
| 7448 | return m.Capabilities |
| 7449 | } |
| 7450 | return 0 |
| 7451 | } |
| 7452 | |
| 7453 | func (m *OfpGroupFeatures) GetMaxGroups() []uint32 { |
| 7454 | if m != nil { |
| 7455 | return m.MaxGroups |
| 7456 | } |
| 7457 | return nil |
| 7458 | } |
| 7459 | |
| 7460 | func (m *OfpGroupFeatures) GetActions() []uint32 { |
| 7461 | if m != nil { |
| 7462 | return m.Actions |
| 7463 | } |
| 7464 | return nil |
| 7465 | } |
| 7466 | |
| 7467 | // Body of OFPMP_METER and OFPMP_METER_CONFIG requests. |
| 7468 | type OfpMeterMultipartRequest struct { |
| 7469 | MeterId uint32 `protobuf:"varint,1,opt,name=meter_id,json=meterId,proto3" json:"meter_id,omitempty"` |
| 7470 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7471 | XXX_unrecognized []byte `json:"-"` |
| 7472 | XXX_sizecache int32 `json:"-"` |
| 7473 | } |
| 7474 | |
| 7475 | func (m *OfpMeterMultipartRequest) Reset() { *m = OfpMeterMultipartRequest{} } |
| 7476 | func (m *OfpMeterMultipartRequest) String() string { return proto.CompactTextString(m) } |
| 7477 | func (*OfpMeterMultipartRequest) ProtoMessage() {} |
| 7478 | func (*OfpMeterMultipartRequest) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7479 | return fileDescriptor_08e3a4e375aeddc7, []int{65} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7480 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7481 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7482 | func (m *OfpMeterMultipartRequest) XXX_Unmarshal(b []byte) error { |
| 7483 | return xxx_messageInfo_OfpMeterMultipartRequest.Unmarshal(m, b) |
| 7484 | } |
| 7485 | func (m *OfpMeterMultipartRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7486 | return xxx_messageInfo_OfpMeterMultipartRequest.Marshal(b, m, deterministic) |
| 7487 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7488 | func (m *OfpMeterMultipartRequest) XXX_Merge(src proto.Message) { |
| 7489 | xxx_messageInfo_OfpMeterMultipartRequest.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7490 | } |
| 7491 | func (m *OfpMeterMultipartRequest) XXX_Size() int { |
| 7492 | return xxx_messageInfo_OfpMeterMultipartRequest.Size(m) |
| 7493 | } |
| 7494 | func (m *OfpMeterMultipartRequest) XXX_DiscardUnknown() { |
| 7495 | xxx_messageInfo_OfpMeterMultipartRequest.DiscardUnknown(m) |
| 7496 | } |
| 7497 | |
| 7498 | var xxx_messageInfo_OfpMeterMultipartRequest proto.InternalMessageInfo |
| 7499 | |
| 7500 | func (m *OfpMeterMultipartRequest) GetMeterId() uint32 { |
| 7501 | if m != nil { |
| 7502 | return m.MeterId |
| 7503 | } |
| 7504 | return 0 |
| 7505 | } |
| 7506 | |
| 7507 | // Statistics for each meter band |
| 7508 | type OfpMeterBandStats struct { |
| 7509 | PacketBandCount uint64 `protobuf:"varint,1,opt,name=packet_band_count,json=packetBandCount,proto3" json:"packet_band_count,omitempty"` |
| 7510 | ByteBandCount uint64 `protobuf:"varint,2,opt,name=byte_band_count,json=byteBandCount,proto3" json:"byte_band_count,omitempty"` |
| 7511 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7512 | XXX_unrecognized []byte `json:"-"` |
| 7513 | XXX_sizecache int32 `json:"-"` |
| 7514 | } |
| 7515 | |
| 7516 | func (m *OfpMeterBandStats) Reset() { *m = OfpMeterBandStats{} } |
| 7517 | func (m *OfpMeterBandStats) String() string { return proto.CompactTextString(m) } |
| 7518 | func (*OfpMeterBandStats) ProtoMessage() {} |
| 7519 | func (*OfpMeterBandStats) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7520 | return fileDescriptor_08e3a4e375aeddc7, []int{66} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7521 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7522 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7523 | func (m *OfpMeterBandStats) XXX_Unmarshal(b []byte) error { |
| 7524 | return xxx_messageInfo_OfpMeterBandStats.Unmarshal(m, b) |
| 7525 | } |
| 7526 | func (m *OfpMeterBandStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7527 | return xxx_messageInfo_OfpMeterBandStats.Marshal(b, m, deterministic) |
| 7528 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7529 | func (m *OfpMeterBandStats) XXX_Merge(src proto.Message) { |
| 7530 | xxx_messageInfo_OfpMeterBandStats.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7531 | } |
| 7532 | func (m *OfpMeterBandStats) XXX_Size() int { |
| 7533 | return xxx_messageInfo_OfpMeterBandStats.Size(m) |
| 7534 | } |
| 7535 | func (m *OfpMeterBandStats) XXX_DiscardUnknown() { |
| 7536 | xxx_messageInfo_OfpMeterBandStats.DiscardUnknown(m) |
| 7537 | } |
| 7538 | |
| 7539 | var xxx_messageInfo_OfpMeterBandStats proto.InternalMessageInfo |
| 7540 | |
| 7541 | func (m *OfpMeterBandStats) GetPacketBandCount() uint64 { |
| 7542 | if m != nil { |
| 7543 | return m.PacketBandCount |
| 7544 | } |
| 7545 | return 0 |
| 7546 | } |
| 7547 | |
| 7548 | func (m *OfpMeterBandStats) GetByteBandCount() uint64 { |
| 7549 | if m != nil { |
| 7550 | return m.ByteBandCount |
| 7551 | } |
| 7552 | return 0 |
| 7553 | } |
| 7554 | |
| 7555 | // Body of reply to OFPMP_METER request. Meter statistics. |
| 7556 | type OfpMeterStats struct { |
| 7557 | MeterId uint32 `protobuf:"varint,1,opt,name=meter_id,json=meterId,proto3" json:"meter_id,omitempty"` |
| 7558 | FlowCount uint32 `protobuf:"varint,2,opt,name=flow_count,json=flowCount,proto3" json:"flow_count,omitempty"` |
| 7559 | PacketInCount uint64 `protobuf:"varint,3,opt,name=packet_in_count,json=packetInCount,proto3" json:"packet_in_count,omitempty"` |
| 7560 | ByteInCount uint64 `protobuf:"varint,4,opt,name=byte_in_count,json=byteInCount,proto3" json:"byte_in_count,omitempty"` |
| 7561 | DurationSec uint32 `protobuf:"varint,5,opt,name=duration_sec,json=durationSec,proto3" json:"duration_sec,omitempty"` |
| 7562 | DurationNsec uint32 `protobuf:"varint,6,opt,name=duration_nsec,json=durationNsec,proto3" json:"duration_nsec,omitempty"` |
| 7563 | BandStats []*OfpMeterBandStats `protobuf:"bytes,7,rep,name=band_stats,json=bandStats,proto3" json:"band_stats,omitempty"` |
| 7564 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7565 | XXX_unrecognized []byte `json:"-"` |
| 7566 | XXX_sizecache int32 `json:"-"` |
| 7567 | } |
| 7568 | |
| 7569 | func (m *OfpMeterStats) Reset() { *m = OfpMeterStats{} } |
| 7570 | func (m *OfpMeterStats) String() string { return proto.CompactTextString(m) } |
| 7571 | func (*OfpMeterStats) ProtoMessage() {} |
| 7572 | func (*OfpMeterStats) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7573 | return fileDescriptor_08e3a4e375aeddc7, []int{67} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7574 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7575 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7576 | func (m *OfpMeterStats) XXX_Unmarshal(b []byte) error { |
| 7577 | return xxx_messageInfo_OfpMeterStats.Unmarshal(m, b) |
| 7578 | } |
| 7579 | func (m *OfpMeterStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7580 | return xxx_messageInfo_OfpMeterStats.Marshal(b, m, deterministic) |
| 7581 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7582 | func (m *OfpMeterStats) XXX_Merge(src proto.Message) { |
| 7583 | xxx_messageInfo_OfpMeterStats.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7584 | } |
| 7585 | func (m *OfpMeterStats) XXX_Size() int { |
| 7586 | return xxx_messageInfo_OfpMeterStats.Size(m) |
| 7587 | } |
| 7588 | func (m *OfpMeterStats) XXX_DiscardUnknown() { |
| 7589 | xxx_messageInfo_OfpMeterStats.DiscardUnknown(m) |
| 7590 | } |
| 7591 | |
| 7592 | var xxx_messageInfo_OfpMeterStats proto.InternalMessageInfo |
| 7593 | |
| 7594 | func (m *OfpMeterStats) GetMeterId() uint32 { |
| 7595 | if m != nil { |
| 7596 | return m.MeterId |
| 7597 | } |
| 7598 | return 0 |
| 7599 | } |
| 7600 | |
| 7601 | func (m *OfpMeterStats) GetFlowCount() uint32 { |
| 7602 | if m != nil { |
| 7603 | return m.FlowCount |
| 7604 | } |
| 7605 | return 0 |
| 7606 | } |
| 7607 | |
| 7608 | func (m *OfpMeterStats) GetPacketInCount() uint64 { |
| 7609 | if m != nil { |
| 7610 | return m.PacketInCount |
| 7611 | } |
| 7612 | return 0 |
| 7613 | } |
| 7614 | |
| 7615 | func (m *OfpMeterStats) GetByteInCount() uint64 { |
| 7616 | if m != nil { |
| 7617 | return m.ByteInCount |
| 7618 | } |
| 7619 | return 0 |
| 7620 | } |
| 7621 | |
| 7622 | func (m *OfpMeterStats) GetDurationSec() uint32 { |
| 7623 | if m != nil { |
| 7624 | return m.DurationSec |
| 7625 | } |
| 7626 | return 0 |
| 7627 | } |
| 7628 | |
| 7629 | func (m *OfpMeterStats) GetDurationNsec() uint32 { |
| 7630 | if m != nil { |
| 7631 | return m.DurationNsec |
| 7632 | } |
| 7633 | return 0 |
| 7634 | } |
| 7635 | |
| 7636 | func (m *OfpMeterStats) GetBandStats() []*OfpMeterBandStats { |
| 7637 | if m != nil { |
| 7638 | return m.BandStats |
| 7639 | } |
| 7640 | return nil |
| 7641 | } |
| 7642 | |
| 7643 | // Body of reply to OFPMP_METER_CONFIG request. Meter configuration. |
| 7644 | type OfpMeterConfig struct { |
| 7645 | Flags uint32 `protobuf:"varint,1,opt,name=flags,proto3" json:"flags,omitempty"` |
| 7646 | MeterId uint32 `protobuf:"varint,2,opt,name=meter_id,json=meterId,proto3" json:"meter_id,omitempty"` |
| 7647 | Bands []*OfpMeterBandHeader `protobuf:"bytes,3,rep,name=bands,proto3" json:"bands,omitempty"` |
| 7648 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7649 | XXX_unrecognized []byte `json:"-"` |
| 7650 | XXX_sizecache int32 `json:"-"` |
| 7651 | } |
| 7652 | |
| 7653 | func (m *OfpMeterConfig) Reset() { *m = OfpMeterConfig{} } |
| 7654 | func (m *OfpMeterConfig) String() string { return proto.CompactTextString(m) } |
| 7655 | func (*OfpMeterConfig) ProtoMessage() {} |
| 7656 | func (*OfpMeterConfig) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7657 | return fileDescriptor_08e3a4e375aeddc7, []int{68} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7658 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7659 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7660 | func (m *OfpMeterConfig) XXX_Unmarshal(b []byte) error { |
| 7661 | return xxx_messageInfo_OfpMeterConfig.Unmarshal(m, b) |
| 7662 | } |
| 7663 | func (m *OfpMeterConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7664 | return xxx_messageInfo_OfpMeterConfig.Marshal(b, m, deterministic) |
| 7665 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7666 | func (m *OfpMeterConfig) XXX_Merge(src proto.Message) { |
| 7667 | xxx_messageInfo_OfpMeterConfig.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7668 | } |
| 7669 | func (m *OfpMeterConfig) XXX_Size() int { |
| 7670 | return xxx_messageInfo_OfpMeterConfig.Size(m) |
| 7671 | } |
| 7672 | func (m *OfpMeterConfig) XXX_DiscardUnknown() { |
| 7673 | xxx_messageInfo_OfpMeterConfig.DiscardUnknown(m) |
| 7674 | } |
| 7675 | |
| 7676 | var xxx_messageInfo_OfpMeterConfig proto.InternalMessageInfo |
| 7677 | |
| 7678 | func (m *OfpMeterConfig) GetFlags() uint32 { |
| 7679 | if m != nil { |
| 7680 | return m.Flags |
| 7681 | } |
| 7682 | return 0 |
| 7683 | } |
| 7684 | |
| 7685 | func (m *OfpMeterConfig) GetMeterId() uint32 { |
| 7686 | if m != nil { |
| 7687 | return m.MeterId |
| 7688 | } |
| 7689 | return 0 |
| 7690 | } |
| 7691 | |
| 7692 | func (m *OfpMeterConfig) GetBands() []*OfpMeterBandHeader { |
| 7693 | if m != nil { |
| 7694 | return m.Bands |
| 7695 | } |
| 7696 | return nil |
| 7697 | } |
| 7698 | |
| 7699 | // Body of reply to OFPMP_METER_FEATURES request. Meter features. |
| 7700 | type OfpMeterFeatures struct { |
| 7701 | MaxMeter uint32 `protobuf:"varint,1,opt,name=max_meter,json=maxMeter,proto3" json:"max_meter,omitempty"` |
| 7702 | BandTypes uint32 `protobuf:"varint,2,opt,name=band_types,json=bandTypes,proto3" json:"band_types,omitempty"` |
| 7703 | Capabilities uint32 `protobuf:"varint,3,opt,name=capabilities,proto3" json:"capabilities,omitempty"` |
| 7704 | MaxBands uint32 `protobuf:"varint,4,opt,name=max_bands,json=maxBands,proto3" json:"max_bands,omitempty"` |
| 7705 | MaxColor uint32 `protobuf:"varint,5,opt,name=max_color,json=maxColor,proto3" json:"max_color,omitempty"` |
| 7706 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7707 | XXX_unrecognized []byte `json:"-"` |
| 7708 | XXX_sizecache int32 `json:"-"` |
| 7709 | } |
| 7710 | |
| 7711 | func (m *OfpMeterFeatures) Reset() { *m = OfpMeterFeatures{} } |
| 7712 | func (m *OfpMeterFeatures) String() string { return proto.CompactTextString(m) } |
| 7713 | func (*OfpMeterFeatures) ProtoMessage() {} |
| 7714 | func (*OfpMeterFeatures) Descriptor() ([]byte, []int) { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7715 | return fileDescriptor_08e3a4e375aeddc7, []int{69} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7716 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7717 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7718 | func (m *OfpMeterFeatures) XXX_Unmarshal(b []byte) error { |
| 7719 | return xxx_messageInfo_OfpMeterFeatures.Unmarshal(m, b) |
| 7720 | } |
| 7721 | func (m *OfpMeterFeatures) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7722 | return xxx_messageInfo_OfpMeterFeatures.Marshal(b, m, deterministic) |
| 7723 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7724 | func (m *OfpMeterFeatures) XXX_Merge(src proto.Message) { |
| 7725 | xxx_messageInfo_OfpMeterFeatures.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7726 | } |
| 7727 | func (m *OfpMeterFeatures) XXX_Size() int { |
| 7728 | return xxx_messageInfo_OfpMeterFeatures.Size(m) |
| 7729 | } |
| 7730 | func (m *OfpMeterFeatures) XXX_DiscardUnknown() { |
| 7731 | xxx_messageInfo_OfpMeterFeatures.DiscardUnknown(m) |
| 7732 | } |
| 7733 | |
| 7734 | var xxx_messageInfo_OfpMeterFeatures proto.InternalMessageInfo |
| 7735 | |
| 7736 | func (m *OfpMeterFeatures) GetMaxMeter() uint32 { |
| 7737 | if m != nil { |
| 7738 | return m.MaxMeter |
| 7739 | } |
| 7740 | return 0 |
| 7741 | } |
| 7742 | |
| 7743 | func (m *OfpMeterFeatures) GetBandTypes() uint32 { |
| 7744 | if m != nil { |
| 7745 | return m.BandTypes |
| 7746 | } |
| 7747 | return 0 |
| 7748 | } |
| 7749 | |
| 7750 | func (m *OfpMeterFeatures) GetCapabilities() uint32 { |
| 7751 | if m != nil { |
| 7752 | return m.Capabilities |
| 7753 | } |
| 7754 | return 0 |
| 7755 | } |
| 7756 | |
| 7757 | func (m *OfpMeterFeatures) GetMaxBands() uint32 { |
| 7758 | if m != nil { |
| 7759 | return m.MaxBands |
| 7760 | } |
| 7761 | return 0 |
| 7762 | } |
| 7763 | |
| 7764 | func (m *OfpMeterFeatures) GetMaxColor() uint32 { |
| 7765 | if m != nil { |
| 7766 | return m.MaxColor |
| 7767 | } |
| 7768 | return 0 |
| 7769 | } |
| 7770 | |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 7771 | type OfpMeterEntry struct { |
| 7772 | Config *OfpMeterConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"` |
| 7773 | Stats *OfpMeterStats `protobuf:"bytes,2,opt,name=stats,proto3" json:"stats,omitempty"` |
| 7774 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7775 | XXX_unrecognized []byte `json:"-"` |
| 7776 | XXX_sizecache int32 `json:"-"` |
| 7777 | } |
| 7778 | |
| 7779 | func (m *OfpMeterEntry) Reset() { *m = OfpMeterEntry{} } |
| 7780 | func (m *OfpMeterEntry) String() string { return proto.CompactTextString(m) } |
| 7781 | func (*OfpMeterEntry) ProtoMessage() {} |
| 7782 | func (*OfpMeterEntry) Descriptor() ([]byte, []int) { |
| 7783 | return fileDescriptor_08e3a4e375aeddc7, []int{70} |
| 7784 | } |
| 7785 | |
| 7786 | func (m *OfpMeterEntry) XXX_Unmarshal(b []byte) error { |
| 7787 | return xxx_messageInfo_OfpMeterEntry.Unmarshal(m, b) |
| 7788 | } |
| 7789 | func (m *OfpMeterEntry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7790 | return xxx_messageInfo_OfpMeterEntry.Marshal(b, m, deterministic) |
| 7791 | } |
| 7792 | func (m *OfpMeterEntry) XXX_Merge(src proto.Message) { |
| 7793 | xxx_messageInfo_OfpMeterEntry.Merge(m, src) |
| 7794 | } |
| 7795 | func (m *OfpMeterEntry) XXX_Size() int { |
| 7796 | return xxx_messageInfo_OfpMeterEntry.Size(m) |
| 7797 | } |
| 7798 | func (m *OfpMeterEntry) XXX_DiscardUnknown() { |
| 7799 | xxx_messageInfo_OfpMeterEntry.DiscardUnknown(m) |
| 7800 | } |
| 7801 | |
| 7802 | var xxx_messageInfo_OfpMeterEntry proto.InternalMessageInfo |
| 7803 | |
| 7804 | func (m *OfpMeterEntry) GetConfig() *OfpMeterConfig { |
| 7805 | if m != nil { |
| 7806 | return m.Config |
| 7807 | } |
| 7808 | return nil |
| 7809 | } |
| 7810 | |
| 7811 | func (m *OfpMeterEntry) GetStats() *OfpMeterStats { |
| 7812 | if m != nil { |
| 7813 | return m.Stats |
| 7814 | } |
| 7815 | return nil |
| 7816 | } |
| 7817 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7818 | // Body for ofp_multipart_request/reply of type OFPMP_EXPERIMENTER. |
| 7819 | type OfpExperimenterMultipartHeader struct { |
| 7820 | Experimenter uint32 `protobuf:"varint,1,opt,name=experimenter,proto3" json:"experimenter,omitempty"` |
| 7821 | ExpType uint32 `protobuf:"varint,2,opt,name=exp_type,json=expType,proto3" json:"exp_type,omitempty"` |
| 7822 | Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` |
| 7823 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7824 | XXX_unrecognized []byte `json:"-"` |
| 7825 | XXX_sizecache int32 `json:"-"` |
| 7826 | } |
| 7827 | |
| 7828 | func (m *OfpExperimenterMultipartHeader) Reset() { *m = OfpExperimenterMultipartHeader{} } |
| 7829 | func (m *OfpExperimenterMultipartHeader) String() string { return proto.CompactTextString(m) } |
| 7830 | func (*OfpExperimenterMultipartHeader) ProtoMessage() {} |
| 7831 | func (*OfpExperimenterMultipartHeader) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 7832 | return fileDescriptor_08e3a4e375aeddc7, []int{71} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7833 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7834 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7835 | func (m *OfpExperimenterMultipartHeader) XXX_Unmarshal(b []byte) error { |
| 7836 | return xxx_messageInfo_OfpExperimenterMultipartHeader.Unmarshal(m, b) |
| 7837 | } |
| 7838 | func (m *OfpExperimenterMultipartHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7839 | return xxx_messageInfo_OfpExperimenterMultipartHeader.Marshal(b, m, deterministic) |
| 7840 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7841 | func (m *OfpExperimenterMultipartHeader) XXX_Merge(src proto.Message) { |
| 7842 | xxx_messageInfo_OfpExperimenterMultipartHeader.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7843 | } |
| 7844 | func (m *OfpExperimenterMultipartHeader) XXX_Size() int { |
| 7845 | return xxx_messageInfo_OfpExperimenterMultipartHeader.Size(m) |
| 7846 | } |
| 7847 | func (m *OfpExperimenterMultipartHeader) XXX_DiscardUnknown() { |
| 7848 | xxx_messageInfo_OfpExperimenterMultipartHeader.DiscardUnknown(m) |
| 7849 | } |
| 7850 | |
| 7851 | var xxx_messageInfo_OfpExperimenterMultipartHeader proto.InternalMessageInfo |
| 7852 | |
| 7853 | func (m *OfpExperimenterMultipartHeader) GetExperimenter() uint32 { |
| 7854 | if m != nil { |
| 7855 | return m.Experimenter |
| 7856 | } |
| 7857 | return 0 |
| 7858 | } |
| 7859 | |
| 7860 | func (m *OfpExperimenterMultipartHeader) GetExpType() uint32 { |
| 7861 | if m != nil { |
| 7862 | return m.ExpType |
| 7863 | } |
| 7864 | return 0 |
| 7865 | } |
| 7866 | |
| 7867 | func (m *OfpExperimenterMultipartHeader) GetData() []byte { |
| 7868 | if m != nil { |
| 7869 | return m.Data |
| 7870 | } |
| 7871 | return nil |
| 7872 | } |
| 7873 | |
| 7874 | // Experimenter extension. |
| 7875 | type OfpExperimenterHeader struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7876 | //ofp_header header; /* Type OFPT_EXPERIMENTER. */ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7877 | Experimenter uint32 `protobuf:"varint,1,opt,name=experimenter,proto3" json:"experimenter,omitempty"` |
| 7878 | ExpType uint32 `protobuf:"varint,2,opt,name=exp_type,json=expType,proto3" json:"exp_type,omitempty"` |
| 7879 | Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` |
| 7880 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7881 | XXX_unrecognized []byte `json:"-"` |
| 7882 | XXX_sizecache int32 `json:"-"` |
| 7883 | } |
| 7884 | |
| 7885 | func (m *OfpExperimenterHeader) Reset() { *m = OfpExperimenterHeader{} } |
| 7886 | func (m *OfpExperimenterHeader) String() string { return proto.CompactTextString(m) } |
| 7887 | func (*OfpExperimenterHeader) ProtoMessage() {} |
| 7888 | func (*OfpExperimenterHeader) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 7889 | return fileDescriptor_08e3a4e375aeddc7, []int{72} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7890 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7891 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7892 | func (m *OfpExperimenterHeader) XXX_Unmarshal(b []byte) error { |
| 7893 | return xxx_messageInfo_OfpExperimenterHeader.Unmarshal(m, b) |
| 7894 | } |
| 7895 | func (m *OfpExperimenterHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7896 | return xxx_messageInfo_OfpExperimenterHeader.Marshal(b, m, deterministic) |
| 7897 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7898 | func (m *OfpExperimenterHeader) XXX_Merge(src proto.Message) { |
| 7899 | xxx_messageInfo_OfpExperimenterHeader.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7900 | } |
| 7901 | func (m *OfpExperimenterHeader) XXX_Size() int { |
| 7902 | return xxx_messageInfo_OfpExperimenterHeader.Size(m) |
| 7903 | } |
| 7904 | func (m *OfpExperimenterHeader) XXX_DiscardUnknown() { |
| 7905 | xxx_messageInfo_OfpExperimenterHeader.DiscardUnknown(m) |
| 7906 | } |
| 7907 | |
| 7908 | var xxx_messageInfo_OfpExperimenterHeader proto.InternalMessageInfo |
| 7909 | |
| 7910 | func (m *OfpExperimenterHeader) GetExperimenter() uint32 { |
| 7911 | if m != nil { |
| 7912 | return m.Experimenter |
| 7913 | } |
| 7914 | return 0 |
| 7915 | } |
| 7916 | |
| 7917 | func (m *OfpExperimenterHeader) GetExpType() uint32 { |
| 7918 | if m != nil { |
| 7919 | return m.ExpType |
| 7920 | } |
| 7921 | return 0 |
| 7922 | } |
| 7923 | |
| 7924 | func (m *OfpExperimenterHeader) GetData() []byte { |
| 7925 | if m != nil { |
| 7926 | return m.Data |
| 7927 | } |
| 7928 | return nil |
| 7929 | } |
| 7930 | |
| 7931 | // Common description for a queue. |
| 7932 | type OfpQueuePropHeader struct { |
| 7933 | Property uint32 `protobuf:"varint,1,opt,name=property,proto3" json:"property,omitempty"` |
| 7934 | Len uint32 `protobuf:"varint,2,opt,name=len,proto3" json:"len,omitempty"` |
| 7935 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7936 | XXX_unrecognized []byte `json:"-"` |
| 7937 | XXX_sizecache int32 `json:"-"` |
| 7938 | } |
| 7939 | |
| 7940 | func (m *OfpQueuePropHeader) Reset() { *m = OfpQueuePropHeader{} } |
| 7941 | func (m *OfpQueuePropHeader) String() string { return proto.CompactTextString(m) } |
| 7942 | func (*OfpQueuePropHeader) ProtoMessage() {} |
| 7943 | func (*OfpQueuePropHeader) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 7944 | return fileDescriptor_08e3a4e375aeddc7, []int{73} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7945 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7946 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7947 | func (m *OfpQueuePropHeader) XXX_Unmarshal(b []byte) error { |
| 7948 | return xxx_messageInfo_OfpQueuePropHeader.Unmarshal(m, b) |
| 7949 | } |
| 7950 | func (m *OfpQueuePropHeader) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7951 | return xxx_messageInfo_OfpQueuePropHeader.Marshal(b, m, deterministic) |
| 7952 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7953 | func (m *OfpQueuePropHeader) XXX_Merge(src proto.Message) { |
| 7954 | xxx_messageInfo_OfpQueuePropHeader.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7955 | } |
| 7956 | func (m *OfpQueuePropHeader) XXX_Size() int { |
| 7957 | return xxx_messageInfo_OfpQueuePropHeader.Size(m) |
| 7958 | } |
| 7959 | func (m *OfpQueuePropHeader) XXX_DiscardUnknown() { |
| 7960 | xxx_messageInfo_OfpQueuePropHeader.DiscardUnknown(m) |
| 7961 | } |
| 7962 | |
| 7963 | var xxx_messageInfo_OfpQueuePropHeader proto.InternalMessageInfo |
| 7964 | |
| 7965 | func (m *OfpQueuePropHeader) GetProperty() uint32 { |
| 7966 | if m != nil { |
| 7967 | return m.Property |
| 7968 | } |
| 7969 | return 0 |
| 7970 | } |
| 7971 | |
| 7972 | func (m *OfpQueuePropHeader) GetLen() uint32 { |
| 7973 | if m != nil { |
| 7974 | return m.Len |
| 7975 | } |
| 7976 | return 0 |
| 7977 | } |
| 7978 | |
| 7979 | // Min-Rate queue property description. |
| 7980 | type OfpQueuePropMinRate struct { |
| 7981 | PropHeader *OfpQueuePropHeader `protobuf:"bytes,1,opt,name=prop_header,json=propHeader,proto3" json:"prop_header,omitempty"` |
| 7982 | Rate uint32 `protobuf:"varint,2,opt,name=rate,proto3" json:"rate,omitempty"` |
| 7983 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 7984 | XXX_unrecognized []byte `json:"-"` |
| 7985 | XXX_sizecache int32 `json:"-"` |
| 7986 | } |
| 7987 | |
| 7988 | func (m *OfpQueuePropMinRate) Reset() { *m = OfpQueuePropMinRate{} } |
| 7989 | func (m *OfpQueuePropMinRate) String() string { return proto.CompactTextString(m) } |
| 7990 | func (*OfpQueuePropMinRate) ProtoMessage() {} |
| 7991 | func (*OfpQueuePropMinRate) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 7992 | return fileDescriptor_08e3a4e375aeddc7, []int{74} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7993 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 7994 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 7995 | func (m *OfpQueuePropMinRate) XXX_Unmarshal(b []byte) error { |
| 7996 | return xxx_messageInfo_OfpQueuePropMinRate.Unmarshal(m, b) |
| 7997 | } |
| 7998 | func (m *OfpQueuePropMinRate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 7999 | return xxx_messageInfo_OfpQueuePropMinRate.Marshal(b, m, deterministic) |
| 8000 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8001 | func (m *OfpQueuePropMinRate) XXX_Merge(src proto.Message) { |
| 8002 | xxx_messageInfo_OfpQueuePropMinRate.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8003 | } |
| 8004 | func (m *OfpQueuePropMinRate) XXX_Size() int { |
| 8005 | return xxx_messageInfo_OfpQueuePropMinRate.Size(m) |
| 8006 | } |
| 8007 | func (m *OfpQueuePropMinRate) XXX_DiscardUnknown() { |
| 8008 | xxx_messageInfo_OfpQueuePropMinRate.DiscardUnknown(m) |
| 8009 | } |
| 8010 | |
| 8011 | var xxx_messageInfo_OfpQueuePropMinRate proto.InternalMessageInfo |
| 8012 | |
| 8013 | func (m *OfpQueuePropMinRate) GetPropHeader() *OfpQueuePropHeader { |
| 8014 | if m != nil { |
| 8015 | return m.PropHeader |
| 8016 | } |
| 8017 | return nil |
| 8018 | } |
| 8019 | |
| 8020 | func (m *OfpQueuePropMinRate) GetRate() uint32 { |
| 8021 | if m != nil { |
| 8022 | return m.Rate |
| 8023 | } |
| 8024 | return 0 |
| 8025 | } |
| 8026 | |
| 8027 | // Max-Rate queue property description. |
| 8028 | type OfpQueuePropMaxRate struct { |
| 8029 | PropHeader *OfpQueuePropHeader `protobuf:"bytes,1,opt,name=prop_header,json=propHeader,proto3" json:"prop_header,omitempty"` |
| 8030 | Rate uint32 `protobuf:"varint,2,opt,name=rate,proto3" json:"rate,omitempty"` |
| 8031 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8032 | XXX_unrecognized []byte `json:"-"` |
| 8033 | XXX_sizecache int32 `json:"-"` |
| 8034 | } |
| 8035 | |
| 8036 | func (m *OfpQueuePropMaxRate) Reset() { *m = OfpQueuePropMaxRate{} } |
| 8037 | func (m *OfpQueuePropMaxRate) String() string { return proto.CompactTextString(m) } |
| 8038 | func (*OfpQueuePropMaxRate) ProtoMessage() {} |
| 8039 | func (*OfpQueuePropMaxRate) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8040 | return fileDescriptor_08e3a4e375aeddc7, []int{75} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8041 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8042 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8043 | func (m *OfpQueuePropMaxRate) XXX_Unmarshal(b []byte) error { |
| 8044 | return xxx_messageInfo_OfpQueuePropMaxRate.Unmarshal(m, b) |
| 8045 | } |
| 8046 | func (m *OfpQueuePropMaxRate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8047 | return xxx_messageInfo_OfpQueuePropMaxRate.Marshal(b, m, deterministic) |
| 8048 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8049 | func (m *OfpQueuePropMaxRate) XXX_Merge(src proto.Message) { |
| 8050 | xxx_messageInfo_OfpQueuePropMaxRate.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8051 | } |
| 8052 | func (m *OfpQueuePropMaxRate) XXX_Size() int { |
| 8053 | return xxx_messageInfo_OfpQueuePropMaxRate.Size(m) |
| 8054 | } |
| 8055 | func (m *OfpQueuePropMaxRate) XXX_DiscardUnknown() { |
| 8056 | xxx_messageInfo_OfpQueuePropMaxRate.DiscardUnknown(m) |
| 8057 | } |
| 8058 | |
| 8059 | var xxx_messageInfo_OfpQueuePropMaxRate proto.InternalMessageInfo |
| 8060 | |
| 8061 | func (m *OfpQueuePropMaxRate) GetPropHeader() *OfpQueuePropHeader { |
| 8062 | if m != nil { |
| 8063 | return m.PropHeader |
| 8064 | } |
| 8065 | return nil |
| 8066 | } |
| 8067 | |
| 8068 | func (m *OfpQueuePropMaxRate) GetRate() uint32 { |
| 8069 | if m != nil { |
| 8070 | return m.Rate |
| 8071 | } |
| 8072 | return 0 |
| 8073 | } |
| 8074 | |
| 8075 | // Experimenter queue property description. |
| 8076 | type OfpQueuePropExperimenter struct { |
| 8077 | PropHeader *OfpQueuePropHeader `protobuf:"bytes,1,opt,name=prop_header,json=propHeader,proto3" json:"prop_header,omitempty"` |
| 8078 | Experimenter uint32 `protobuf:"varint,2,opt,name=experimenter,proto3" json:"experimenter,omitempty"` |
| 8079 | Data []byte `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"` |
| 8080 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8081 | XXX_unrecognized []byte `json:"-"` |
| 8082 | XXX_sizecache int32 `json:"-"` |
| 8083 | } |
| 8084 | |
| 8085 | func (m *OfpQueuePropExperimenter) Reset() { *m = OfpQueuePropExperimenter{} } |
| 8086 | func (m *OfpQueuePropExperimenter) String() string { return proto.CompactTextString(m) } |
| 8087 | func (*OfpQueuePropExperimenter) ProtoMessage() {} |
| 8088 | func (*OfpQueuePropExperimenter) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8089 | return fileDescriptor_08e3a4e375aeddc7, []int{76} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8090 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8091 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8092 | func (m *OfpQueuePropExperimenter) XXX_Unmarshal(b []byte) error { |
| 8093 | return xxx_messageInfo_OfpQueuePropExperimenter.Unmarshal(m, b) |
| 8094 | } |
| 8095 | func (m *OfpQueuePropExperimenter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8096 | return xxx_messageInfo_OfpQueuePropExperimenter.Marshal(b, m, deterministic) |
| 8097 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8098 | func (m *OfpQueuePropExperimenter) XXX_Merge(src proto.Message) { |
| 8099 | xxx_messageInfo_OfpQueuePropExperimenter.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8100 | } |
| 8101 | func (m *OfpQueuePropExperimenter) XXX_Size() int { |
| 8102 | return xxx_messageInfo_OfpQueuePropExperimenter.Size(m) |
| 8103 | } |
| 8104 | func (m *OfpQueuePropExperimenter) XXX_DiscardUnknown() { |
| 8105 | xxx_messageInfo_OfpQueuePropExperimenter.DiscardUnknown(m) |
| 8106 | } |
| 8107 | |
| 8108 | var xxx_messageInfo_OfpQueuePropExperimenter proto.InternalMessageInfo |
| 8109 | |
| 8110 | func (m *OfpQueuePropExperimenter) GetPropHeader() *OfpQueuePropHeader { |
| 8111 | if m != nil { |
| 8112 | return m.PropHeader |
| 8113 | } |
| 8114 | return nil |
| 8115 | } |
| 8116 | |
| 8117 | func (m *OfpQueuePropExperimenter) GetExperimenter() uint32 { |
| 8118 | if m != nil { |
| 8119 | return m.Experimenter |
| 8120 | } |
| 8121 | return 0 |
| 8122 | } |
| 8123 | |
| 8124 | func (m *OfpQueuePropExperimenter) GetData() []byte { |
| 8125 | if m != nil { |
| 8126 | return m.Data |
| 8127 | } |
| 8128 | return nil |
| 8129 | } |
| 8130 | |
| 8131 | // Full description for a queue. |
| 8132 | type OfpPacketQueue struct { |
| 8133 | QueueId uint32 `protobuf:"varint,1,opt,name=queue_id,json=queueId,proto3" json:"queue_id,omitempty"` |
| 8134 | Port uint32 `protobuf:"varint,2,opt,name=port,proto3" json:"port,omitempty"` |
| 8135 | Properties []*OfpQueuePropHeader `protobuf:"bytes,4,rep,name=properties,proto3" json:"properties,omitempty"` |
| 8136 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8137 | XXX_unrecognized []byte `json:"-"` |
| 8138 | XXX_sizecache int32 `json:"-"` |
| 8139 | } |
| 8140 | |
| 8141 | func (m *OfpPacketQueue) Reset() { *m = OfpPacketQueue{} } |
| 8142 | func (m *OfpPacketQueue) String() string { return proto.CompactTextString(m) } |
| 8143 | func (*OfpPacketQueue) ProtoMessage() {} |
| 8144 | func (*OfpPacketQueue) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8145 | return fileDescriptor_08e3a4e375aeddc7, []int{77} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8146 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8147 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8148 | func (m *OfpPacketQueue) XXX_Unmarshal(b []byte) error { |
| 8149 | return xxx_messageInfo_OfpPacketQueue.Unmarshal(m, b) |
| 8150 | } |
| 8151 | func (m *OfpPacketQueue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8152 | return xxx_messageInfo_OfpPacketQueue.Marshal(b, m, deterministic) |
| 8153 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8154 | func (m *OfpPacketQueue) XXX_Merge(src proto.Message) { |
| 8155 | xxx_messageInfo_OfpPacketQueue.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8156 | } |
| 8157 | func (m *OfpPacketQueue) XXX_Size() int { |
| 8158 | return xxx_messageInfo_OfpPacketQueue.Size(m) |
| 8159 | } |
| 8160 | func (m *OfpPacketQueue) XXX_DiscardUnknown() { |
| 8161 | xxx_messageInfo_OfpPacketQueue.DiscardUnknown(m) |
| 8162 | } |
| 8163 | |
| 8164 | var xxx_messageInfo_OfpPacketQueue proto.InternalMessageInfo |
| 8165 | |
| 8166 | func (m *OfpPacketQueue) GetQueueId() uint32 { |
| 8167 | if m != nil { |
| 8168 | return m.QueueId |
| 8169 | } |
| 8170 | return 0 |
| 8171 | } |
| 8172 | |
| 8173 | func (m *OfpPacketQueue) GetPort() uint32 { |
| 8174 | if m != nil { |
| 8175 | return m.Port |
| 8176 | } |
| 8177 | return 0 |
| 8178 | } |
| 8179 | |
| 8180 | func (m *OfpPacketQueue) GetProperties() []*OfpQueuePropHeader { |
| 8181 | if m != nil { |
| 8182 | return m.Properties |
| 8183 | } |
| 8184 | return nil |
| 8185 | } |
| 8186 | |
| 8187 | // Query for port queue configuration. |
| 8188 | type OfpQueueGetConfigRequest struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8189 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8190 | Port uint32 `protobuf:"varint,1,opt,name=port,proto3" json:"port,omitempty"` |
| 8191 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8192 | XXX_unrecognized []byte `json:"-"` |
| 8193 | XXX_sizecache int32 `json:"-"` |
| 8194 | } |
| 8195 | |
| 8196 | func (m *OfpQueueGetConfigRequest) Reset() { *m = OfpQueueGetConfigRequest{} } |
| 8197 | func (m *OfpQueueGetConfigRequest) String() string { return proto.CompactTextString(m) } |
| 8198 | func (*OfpQueueGetConfigRequest) ProtoMessage() {} |
| 8199 | func (*OfpQueueGetConfigRequest) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8200 | return fileDescriptor_08e3a4e375aeddc7, []int{78} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8201 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8202 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8203 | func (m *OfpQueueGetConfigRequest) XXX_Unmarshal(b []byte) error { |
| 8204 | return xxx_messageInfo_OfpQueueGetConfigRequest.Unmarshal(m, b) |
| 8205 | } |
| 8206 | func (m *OfpQueueGetConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8207 | return xxx_messageInfo_OfpQueueGetConfigRequest.Marshal(b, m, deterministic) |
| 8208 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8209 | func (m *OfpQueueGetConfigRequest) XXX_Merge(src proto.Message) { |
| 8210 | xxx_messageInfo_OfpQueueGetConfigRequest.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8211 | } |
| 8212 | func (m *OfpQueueGetConfigRequest) XXX_Size() int { |
| 8213 | return xxx_messageInfo_OfpQueueGetConfigRequest.Size(m) |
| 8214 | } |
| 8215 | func (m *OfpQueueGetConfigRequest) XXX_DiscardUnknown() { |
| 8216 | xxx_messageInfo_OfpQueueGetConfigRequest.DiscardUnknown(m) |
| 8217 | } |
| 8218 | |
| 8219 | var xxx_messageInfo_OfpQueueGetConfigRequest proto.InternalMessageInfo |
| 8220 | |
| 8221 | func (m *OfpQueueGetConfigRequest) GetPort() uint32 { |
| 8222 | if m != nil { |
| 8223 | return m.Port |
| 8224 | } |
| 8225 | return 0 |
| 8226 | } |
| 8227 | |
| 8228 | // Queue configuration for a given port. |
| 8229 | type OfpQueueGetConfigReply struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8230 | //ofp_header header; |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8231 | Port uint32 `protobuf:"varint,1,opt,name=port,proto3" json:"port,omitempty"` |
| 8232 | Queues []*OfpPacketQueue `protobuf:"bytes,2,rep,name=queues,proto3" json:"queues,omitempty"` |
| 8233 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8234 | XXX_unrecognized []byte `json:"-"` |
| 8235 | XXX_sizecache int32 `json:"-"` |
| 8236 | } |
| 8237 | |
| 8238 | func (m *OfpQueueGetConfigReply) Reset() { *m = OfpQueueGetConfigReply{} } |
| 8239 | func (m *OfpQueueGetConfigReply) String() string { return proto.CompactTextString(m) } |
| 8240 | func (*OfpQueueGetConfigReply) ProtoMessage() {} |
| 8241 | func (*OfpQueueGetConfigReply) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8242 | return fileDescriptor_08e3a4e375aeddc7, []int{79} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8243 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8244 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8245 | func (m *OfpQueueGetConfigReply) XXX_Unmarshal(b []byte) error { |
| 8246 | return xxx_messageInfo_OfpQueueGetConfigReply.Unmarshal(m, b) |
| 8247 | } |
| 8248 | func (m *OfpQueueGetConfigReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8249 | return xxx_messageInfo_OfpQueueGetConfigReply.Marshal(b, m, deterministic) |
| 8250 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8251 | func (m *OfpQueueGetConfigReply) XXX_Merge(src proto.Message) { |
| 8252 | xxx_messageInfo_OfpQueueGetConfigReply.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8253 | } |
| 8254 | func (m *OfpQueueGetConfigReply) XXX_Size() int { |
| 8255 | return xxx_messageInfo_OfpQueueGetConfigReply.Size(m) |
| 8256 | } |
| 8257 | func (m *OfpQueueGetConfigReply) XXX_DiscardUnknown() { |
| 8258 | xxx_messageInfo_OfpQueueGetConfigReply.DiscardUnknown(m) |
| 8259 | } |
| 8260 | |
| 8261 | var xxx_messageInfo_OfpQueueGetConfigReply proto.InternalMessageInfo |
| 8262 | |
| 8263 | func (m *OfpQueueGetConfigReply) GetPort() uint32 { |
| 8264 | if m != nil { |
| 8265 | return m.Port |
| 8266 | } |
| 8267 | return 0 |
| 8268 | } |
| 8269 | |
| 8270 | func (m *OfpQueueGetConfigReply) GetQueues() []*OfpPacketQueue { |
| 8271 | if m != nil { |
| 8272 | return m.Queues |
| 8273 | } |
| 8274 | return nil |
| 8275 | } |
| 8276 | |
| 8277 | // OFPAT_SET_QUEUE action struct: send packets to given queue on port. |
| 8278 | type OfpActionSetQueue struct { |
| 8279 | Type uint32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"` |
| 8280 | QueueId uint32 `protobuf:"varint,3,opt,name=queue_id,json=queueId,proto3" json:"queue_id,omitempty"` |
| 8281 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8282 | XXX_unrecognized []byte `json:"-"` |
| 8283 | XXX_sizecache int32 `json:"-"` |
| 8284 | } |
| 8285 | |
| 8286 | func (m *OfpActionSetQueue) Reset() { *m = OfpActionSetQueue{} } |
| 8287 | func (m *OfpActionSetQueue) String() string { return proto.CompactTextString(m) } |
| 8288 | func (*OfpActionSetQueue) ProtoMessage() {} |
| 8289 | func (*OfpActionSetQueue) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8290 | return fileDescriptor_08e3a4e375aeddc7, []int{80} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8291 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8292 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8293 | func (m *OfpActionSetQueue) XXX_Unmarshal(b []byte) error { |
| 8294 | return xxx_messageInfo_OfpActionSetQueue.Unmarshal(m, b) |
| 8295 | } |
| 8296 | func (m *OfpActionSetQueue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8297 | return xxx_messageInfo_OfpActionSetQueue.Marshal(b, m, deterministic) |
| 8298 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8299 | func (m *OfpActionSetQueue) XXX_Merge(src proto.Message) { |
| 8300 | xxx_messageInfo_OfpActionSetQueue.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8301 | } |
| 8302 | func (m *OfpActionSetQueue) XXX_Size() int { |
| 8303 | return xxx_messageInfo_OfpActionSetQueue.Size(m) |
| 8304 | } |
| 8305 | func (m *OfpActionSetQueue) XXX_DiscardUnknown() { |
| 8306 | xxx_messageInfo_OfpActionSetQueue.DiscardUnknown(m) |
| 8307 | } |
| 8308 | |
| 8309 | var xxx_messageInfo_OfpActionSetQueue proto.InternalMessageInfo |
| 8310 | |
| 8311 | func (m *OfpActionSetQueue) GetType() uint32 { |
| 8312 | if m != nil { |
| 8313 | return m.Type |
| 8314 | } |
| 8315 | return 0 |
| 8316 | } |
| 8317 | |
| 8318 | func (m *OfpActionSetQueue) GetQueueId() uint32 { |
| 8319 | if m != nil { |
| 8320 | return m.QueueId |
| 8321 | } |
| 8322 | return 0 |
| 8323 | } |
| 8324 | |
| 8325 | type OfpQueueStatsRequest struct { |
| 8326 | PortNo uint32 `protobuf:"varint,1,opt,name=port_no,json=portNo,proto3" json:"port_no,omitempty"` |
| 8327 | QueueId uint32 `protobuf:"varint,2,opt,name=queue_id,json=queueId,proto3" json:"queue_id,omitempty"` |
| 8328 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8329 | XXX_unrecognized []byte `json:"-"` |
| 8330 | XXX_sizecache int32 `json:"-"` |
| 8331 | } |
| 8332 | |
| 8333 | func (m *OfpQueueStatsRequest) Reset() { *m = OfpQueueStatsRequest{} } |
| 8334 | func (m *OfpQueueStatsRequest) String() string { return proto.CompactTextString(m) } |
| 8335 | func (*OfpQueueStatsRequest) ProtoMessage() {} |
| 8336 | func (*OfpQueueStatsRequest) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8337 | return fileDescriptor_08e3a4e375aeddc7, []int{81} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8338 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8339 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8340 | func (m *OfpQueueStatsRequest) XXX_Unmarshal(b []byte) error { |
| 8341 | return xxx_messageInfo_OfpQueueStatsRequest.Unmarshal(m, b) |
| 8342 | } |
| 8343 | func (m *OfpQueueStatsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8344 | return xxx_messageInfo_OfpQueueStatsRequest.Marshal(b, m, deterministic) |
| 8345 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8346 | func (m *OfpQueueStatsRequest) XXX_Merge(src proto.Message) { |
| 8347 | xxx_messageInfo_OfpQueueStatsRequest.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8348 | } |
| 8349 | func (m *OfpQueueStatsRequest) XXX_Size() int { |
| 8350 | return xxx_messageInfo_OfpQueueStatsRequest.Size(m) |
| 8351 | } |
| 8352 | func (m *OfpQueueStatsRequest) XXX_DiscardUnknown() { |
| 8353 | xxx_messageInfo_OfpQueueStatsRequest.DiscardUnknown(m) |
| 8354 | } |
| 8355 | |
| 8356 | var xxx_messageInfo_OfpQueueStatsRequest proto.InternalMessageInfo |
| 8357 | |
| 8358 | func (m *OfpQueueStatsRequest) GetPortNo() uint32 { |
| 8359 | if m != nil { |
| 8360 | return m.PortNo |
| 8361 | } |
| 8362 | return 0 |
| 8363 | } |
| 8364 | |
| 8365 | func (m *OfpQueueStatsRequest) GetQueueId() uint32 { |
| 8366 | if m != nil { |
| 8367 | return m.QueueId |
| 8368 | } |
| 8369 | return 0 |
| 8370 | } |
| 8371 | |
| 8372 | type OfpQueueStats struct { |
| 8373 | PortNo uint32 `protobuf:"varint,1,opt,name=port_no,json=portNo,proto3" json:"port_no,omitempty"` |
| 8374 | QueueId uint32 `protobuf:"varint,2,opt,name=queue_id,json=queueId,proto3" json:"queue_id,omitempty"` |
| 8375 | TxBytes uint64 `protobuf:"varint,3,opt,name=tx_bytes,json=txBytes,proto3" json:"tx_bytes,omitempty"` |
| 8376 | TxPackets uint64 `protobuf:"varint,4,opt,name=tx_packets,json=txPackets,proto3" json:"tx_packets,omitempty"` |
| 8377 | TxErrors uint64 `protobuf:"varint,5,opt,name=tx_errors,json=txErrors,proto3" json:"tx_errors,omitempty"` |
| 8378 | DurationSec uint32 `protobuf:"varint,6,opt,name=duration_sec,json=durationSec,proto3" json:"duration_sec,omitempty"` |
| 8379 | DurationNsec uint32 `protobuf:"varint,7,opt,name=duration_nsec,json=durationNsec,proto3" json:"duration_nsec,omitempty"` |
| 8380 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8381 | XXX_unrecognized []byte `json:"-"` |
| 8382 | XXX_sizecache int32 `json:"-"` |
| 8383 | } |
| 8384 | |
| 8385 | func (m *OfpQueueStats) Reset() { *m = OfpQueueStats{} } |
| 8386 | func (m *OfpQueueStats) String() string { return proto.CompactTextString(m) } |
| 8387 | func (*OfpQueueStats) ProtoMessage() {} |
| 8388 | func (*OfpQueueStats) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8389 | return fileDescriptor_08e3a4e375aeddc7, []int{82} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8390 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8391 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8392 | func (m *OfpQueueStats) XXX_Unmarshal(b []byte) error { |
| 8393 | return xxx_messageInfo_OfpQueueStats.Unmarshal(m, b) |
| 8394 | } |
| 8395 | func (m *OfpQueueStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8396 | return xxx_messageInfo_OfpQueueStats.Marshal(b, m, deterministic) |
| 8397 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8398 | func (m *OfpQueueStats) XXX_Merge(src proto.Message) { |
| 8399 | xxx_messageInfo_OfpQueueStats.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8400 | } |
| 8401 | func (m *OfpQueueStats) XXX_Size() int { |
| 8402 | return xxx_messageInfo_OfpQueueStats.Size(m) |
| 8403 | } |
| 8404 | func (m *OfpQueueStats) XXX_DiscardUnknown() { |
| 8405 | xxx_messageInfo_OfpQueueStats.DiscardUnknown(m) |
| 8406 | } |
| 8407 | |
| 8408 | var xxx_messageInfo_OfpQueueStats proto.InternalMessageInfo |
| 8409 | |
| 8410 | func (m *OfpQueueStats) GetPortNo() uint32 { |
| 8411 | if m != nil { |
| 8412 | return m.PortNo |
| 8413 | } |
| 8414 | return 0 |
| 8415 | } |
| 8416 | |
| 8417 | func (m *OfpQueueStats) GetQueueId() uint32 { |
| 8418 | if m != nil { |
| 8419 | return m.QueueId |
| 8420 | } |
| 8421 | return 0 |
| 8422 | } |
| 8423 | |
| 8424 | func (m *OfpQueueStats) GetTxBytes() uint64 { |
| 8425 | if m != nil { |
| 8426 | return m.TxBytes |
| 8427 | } |
| 8428 | return 0 |
| 8429 | } |
| 8430 | |
| 8431 | func (m *OfpQueueStats) GetTxPackets() uint64 { |
| 8432 | if m != nil { |
| 8433 | return m.TxPackets |
| 8434 | } |
| 8435 | return 0 |
| 8436 | } |
| 8437 | |
| 8438 | func (m *OfpQueueStats) GetTxErrors() uint64 { |
| 8439 | if m != nil { |
| 8440 | return m.TxErrors |
| 8441 | } |
| 8442 | return 0 |
| 8443 | } |
| 8444 | |
| 8445 | func (m *OfpQueueStats) GetDurationSec() uint32 { |
| 8446 | if m != nil { |
| 8447 | return m.DurationSec |
| 8448 | } |
| 8449 | return 0 |
| 8450 | } |
| 8451 | |
| 8452 | func (m *OfpQueueStats) GetDurationNsec() uint32 { |
| 8453 | if m != nil { |
| 8454 | return m.DurationNsec |
| 8455 | } |
| 8456 | return 0 |
| 8457 | } |
| 8458 | |
| 8459 | // Role request and reply message. |
| 8460 | type OfpRoleRequest struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8461 | //ofp_header header; /* Type OFPT_ROLE_REQUEST/OFPT_ROLE_REPLY. */ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8462 | Role OfpControllerRole `protobuf:"varint,1,opt,name=role,proto3,enum=openflow_13.OfpControllerRole" json:"role,omitempty"` |
| 8463 | GenerationId uint64 `protobuf:"varint,2,opt,name=generation_id,json=generationId,proto3" json:"generation_id,omitempty"` |
| 8464 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8465 | XXX_unrecognized []byte `json:"-"` |
| 8466 | XXX_sizecache int32 `json:"-"` |
| 8467 | } |
| 8468 | |
| 8469 | func (m *OfpRoleRequest) Reset() { *m = OfpRoleRequest{} } |
| 8470 | func (m *OfpRoleRequest) String() string { return proto.CompactTextString(m) } |
| 8471 | func (*OfpRoleRequest) ProtoMessage() {} |
| 8472 | func (*OfpRoleRequest) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8473 | return fileDescriptor_08e3a4e375aeddc7, []int{83} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8474 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8475 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8476 | func (m *OfpRoleRequest) XXX_Unmarshal(b []byte) error { |
| 8477 | return xxx_messageInfo_OfpRoleRequest.Unmarshal(m, b) |
| 8478 | } |
| 8479 | func (m *OfpRoleRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8480 | return xxx_messageInfo_OfpRoleRequest.Marshal(b, m, deterministic) |
| 8481 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8482 | func (m *OfpRoleRequest) XXX_Merge(src proto.Message) { |
| 8483 | xxx_messageInfo_OfpRoleRequest.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8484 | } |
| 8485 | func (m *OfpRoleRequest) XXX_Size() int { |
| 8486 | return xxx_messageInfo_OfpRoleRequest.Size(m) |
| 8487 | } |
| 8488 | func (m *OfpRoleRequest) XXX_DiscardUnknown() { |
| 8489 | xxx_messageInfo_OfpRoleRequest.DiscardUnknown(m) |
| 8490 | } |
| 8491 | |
| 8492 | var xxx_messageInfo_OfpRoleRequest proto.InternalMessageInfo |
| 8493 | |
| 8494 | func (m *OfpRoleRequest) GetRole() OfpControllerRole { |
| 8495 | if m != nil { |
| 8496 | return m.Role |
| 8497 | } |
| 8498 | return OfpControllerRole_OFPCR_ROLE_NOCHANGE |
| 8499 | } |
| 8500 | |
| 8501 | func (m *OfpRoleRequest) GetGenerationId() uint64 { |
| 8502 | if m != nil { |
| 8503 | return m.GenerationId |
| 8504 | } |
| 8505 | return 0 |
| 8506 | } |
| 8507 | |
| 8508 | // Asynchronous message configuration. |
| 8509 | type OfpAsyncConfig struct { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8510 | //ofp_header header; /* OFPT_GET_ASYNC_REPLY or OFPT_SET_ASYNC. */ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8511 | PacketInMask []uint32 `protobuf:"varint,1,rep,packed,name=packet_in_mask,json=packetInMask,proto3" json:"packet_in_mask,omitempty"` |
| 8512 | PortStatusMask []uint32 `protobuf:"varint,2,rep,packed,name=port_status_mask,json=portStatusMask,proto3" json:"port_status_mask,omitempty"` |
| 8513 | FlowRemovedMask []uint32 `protobuf:"varint,3,rep,packed,name=flow_removed_mask,json=flowRemovedMask,proto3" json:"flow_removed_mask,omitempty"` |
| 8514 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8515 | XXX_unrecognized []byte `json:"-"` |
| 8516 | XXX_sizecache int32 `json:"-"` |
| 8517 | } |
| 8518 | |
| 8519 | func (m *OfpAsyncConfig) Reset() { *m = OfpAsyncConfig{} } |
| 8520 | func (m *OfpAsyncConfig) String() string { return proto.CompactTextString(m) } |
| 8521 | func (*OfpAsyncConfig) ProtoMessage() {} |
| 8522 | func (*OfpAsyncConfig) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8523 | return fileDescriptor_08e3a4e375aeddc7, []int{84} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8524 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8525 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8526 | func (m *OfpAsyncConfig) XXX_Unmarshal(b []byte) error { |
| 8527 | return xxx_messageInfo_OfpAsyncConfig.Unmarshal(m, b) |
| 8528 | } |
| 8529 | func (m *OfpAsyncConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8530 | return xxx_messageInfo_OfpAsyncConfig.Marshal(b, m, deterministic) |
| 8531 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8532 | func (m *OfpAsyncConfig) XXX_Merge(src proto.Message) { |
| 8533 | xxx_messageInfo_OfpAsyncConfig.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8534 | } |
| 8535 | func (m *OfpAsyncConfig) XXX_Size() int { |
| 8536 | return xxx_messageInfo_OfpAsyncConfig.Size(m) |
| 8537 | } |
| 8538 | func (m *OfpAsyncConfig) XXX_DiscardUnknown() { |
| 8539 | xxx_messageInfo_OfpAsyncConfig.DiscardUnknown(m) |
| 8540 | } |
| 8541 | |
| 8542 | var xxx_messageInfo_OfpAsyncConfig proto.InternalMessageInfo |
| 8543 | |
| 8544 | func (m *OfpAsyncConfig) GetPacketInMask() []uint32 { |
| 8545 | if m != nil { |
| 8546 | return m.PacketInMask |
| 8547 | } |
| 8548 | return nil |
| 8549 | } |
| 8550 | |
| 8551 | func (m *OfpAsyncConfig) GetPortStatusMask() []uint32 { |
| 8552 | if m != nil { |
| 8553 | return m.PortStatusMask |
| 8554 | } |
| 8555 | return nil |
| 8556 | } |
| 8557 | |
| 8558 | func (m *OfpAsyncConfig) GetFlowRemovedMask() []uint32 { |
| 8559 | if m != nil { |
| 8560 | return m.FlowRemovedMask |
| 8561 | } |
| 8562 | return nil |
| 8563 | } |
| 8564 | |
| 8565 | type MeterModUpdate struct { |
| 8566 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 8567 | MeterMod *OfpMeterMod `protobuf:"bytes,2,opt,name=meter_mod,json=meterMod,proto3" json:"meter_mod,omitempty"` |
| 8568 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8569 | XXX_unrecognized []byte `json:"-"` |
| 8570 | XXX_sizecache int32 `json:"-"` |
| 8571 | } |
| 8572 | |
| 8573 | func (m *MeterModUpdate) Reset() { *m = MeterModUpdate{} } |
| 8574 | func (m *MeterModUpdate) String() string { return proto.CompactTextString(m) } |
| 8575 | func (*MeterModUpdate) ProtoMessage() {} |
| 8576 | func (*MeterModUpdate) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8577 | return fileDescriptor_08e3a4e375aeddc7, []int{85} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8578 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8579 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8580 | func (m *MeterModUpdate) XXX_Unmarshal(b []byte) error { |
| 8581 | return xxx_messageInfo_MeterModUpdate.Unmarshal(m, b) |
| 8582 | } |
| 8583 | func (m *MeterModUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8584 | return xxx_messageInfo_MeterModUpdate.Marshal(b, m, deterministic) |
| 8585 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8586 | func (m *MeterModUpdate) XXX_Merge(src proto.Message) { |
| 8587 | xxx_messageInfo_MeterModUpdate.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8588 | } |
| 8589 | func (m *MeterModUpdate) XXX_Size() int { |
| 8590 | return xxx_messageInfo_MeterModUpdate.Size(m) |
| 8591 | } |
| 8592 | func (m *MeterModUpdate) XXX_DiscardUnknown() { |
| 8593 | xxx_messageInfo_MeterModUpdate.DiscardUnknown(m) |
| 8594 | } |
| 8595 | |
| 8596 | var xxx_messageInfo_MeterModUpdate proto.InternalMessageInfo |
| 8597 | |
| 8598 | func (m *MeterModUpdate) GetId() string { |
| 8599 | if m != nil { |
| 8600 | return m.Id |
| 8601 | } |
| 8602 | return "" |
| 8603 | } |
| 8604 | |
| 8605 | func (m *MeterModUpdate) GetMeterMod() *OfpMeterMod { |
| 8606 | if m != nil { |
| 8607 | return m.MeterMod |
| 8608 | } |
| 8609 | return nil |
| 8610 | } |
| 8611 | |
| 8612 | type MeterStatsReply struct { |
| 8613 | MeterStats []*OfpMeterStats `protobuf:"bytes,1,rep,name=meter_stats,json=meterStats,proto3" json:"meter_stats,omitempty"` |
| 8614 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8615 | XXX_unrecognized []byte `json:"-"` |
| 8616 | XXX_sizecache int32 `json:"-"` |
| 8617 | } |
| 8618 | |
| 8619 | func (m *MeterStatsReply) Reset() { *m = MeterStatsReply{} } |
| 8620 | func (m *MeterStatsReply) String() string { return proto.CompactTextString(m) } |
| 8621 | func (*MeterStatsReply) ProtoMessage() {} |
| 8622 | func (*MeterStatsReply) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8623 | return fileDescriptor_08e3a4e375aeddc7, []int{86} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8624 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8625 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8626 | func (m *MeterStatsReply) XXX_Unmarshal(b []byte) error { |
| 8627 | return xxx_messageInfo_MeterStatsReply.Unmarshal(m, b) |
| 8628 | } |
| 8629 | func (m *MeterStatsReply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8630 | return xxx_messageInfo_MeterStatsReply.Marshal(b, m, deterministic) |
| 8631 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8632 | func (m *MeterStatsReply) XXX_Merge(src proto.Message) { |
| 8633 | xxx_messageInfo_MeterStatsReply.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8634 | } |
| 8635 | func (m *MeterStatsReply) XXX_Size() int { |
| 8636 | return xxx_messageInfo_MeterStatsReply.Size(m) |
| 8637 | } |
| 8638 | func (m *MeterStatsReply) XXX_DiscardUnknown() { |
| 8639 | xxx_messageInfo_MeterStatsReply.DiscardUnknown(m) |
| 8640 | } |
| 8641 | |
| 8642 | var xxx_messageInfo_MeterStatsReply proto.InternalMessageInfo |
| 8643 | |
| 8644 | func (m *MeterStatsReply) GetMeterStats() []*OfpMeterStats { |
| 8645 | if m != nil { |
| 8646 | return m.MeterStats |
| 8647 | } |
| 8648 | return nil |
| 8649 | } |
| 8650 | |
| 8651 | type FlowTableUpdate struct { |
| 8652 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 8653 | FlowMod *OfpFlowMod `protobuf:"bytes,2,opt,name=flow_mod,json=flowMod,proto3" json:"flow_mod,omitempty"` |
| 8654 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8655 | XXX_unrecognized []byte `json:"-"` |
| 8656 | XXX_sizecache int32 `json:"-"` |
| 8657 | } |
| 8658 | |
| 8659 | func (m *FlowTableUpdate) Reset() { *m = FlowTableUpdate{} } |
| 8660 | func (m *FlowTableUpdate) String() string { return proto.CompactTextString(m) } |
| 8661 | func (*FlowTableUpdate) ProtoMessage() {} |
| 8662 | func (*FlowTableUpdate) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8663 | return fileDescriptor_08e3a4e375aeddc7, []int{87} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8664 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8665 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8666 | func (m *FlowTableUpdate) XXX_Unmarshal(b []byte) error { |
| 8667 | return xxx_messageInfo_FlowTableUpdate.Unmarshal(m, b) |
| 8668 | } |
| 8669 | func (m *FlowTableUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8670 | return xxx_messageInfo_FlowTableUpdate.Marshal(b, m, deterministic) |
| 8671 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8672 | func (m *FlowTableUpdate) XXX_Merge(src proto.Message) { |
| 8673 | xxx_messageInfo_FlowTableUpdate.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8674 | } |
| 8675 | func (m *FlowTableUpdate) XXX_Size() int { |
| 8676 | return xxx_messageInfo_FlowTableUpdate.Size(m) |
| 8677 | } |
| 8678 | func (m *FlowTableUpdate) XXX_DiscardUnknown() { |
| 8679 | xxx_messageInfo_FlowTableUpdate.DiscardUnknown(m) |
| 8680 | } |
| 8681 | |
| 8682 | var xxx_messageInfo_FlowTableUpdate proto.InternalMessageInfo |
| 8683 | |
| 8684 | func (m *FlowTableUpdate) GetId() string { |
| 8685 | if m != nil { |
| 8686 | return m.Id |
| 8687 | } |
| 8688 | return "" |
| 8689 | } |
| 8690 | |
| 8691 | func (m *FlowTableUpdate) GetFlowMod() *OfpFlowMod { |
| 8692 | if m != nil { |
| 8693 | return m.FlowMod |
| 8694 | } |
| 8695 | return nil |
| 8696 | } |
| 8697 | |
| 8698 | type FlowGroupTableUpdate struct { |
| 8699 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 8700 | GroupMod *OfpGroupMod `protobuf:"bytes,2,opt,name=group_mod,json=groupMod,proto3" json:"group_mod,omitempty"` |
| 8701 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8702 | XXX_unrecognized []byte `json:"-"` |
| 8703 | XXX_sizecache int32 `json:"-"` |
| 8704 | } |
| 8705 | |
| 8706 | func (m *FlowGroupTableUpdate) Reset() { *m = FlowGroupTableUpdate{} } |
| 8707 | func (m *FlowGroupTableUpdate) String() string { return proto.CompactTextString(m) } |
| 8708 | func (*FlowGroupTableUpdate) ProtoMessage() {} |
| 8709 | func (*FlowGroupTableUpdate) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8710 | return fileDescriptor_08e3a4e375aeddc7, []int{88} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8711 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8712 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8713 | func (m *FlowGroupTableUpdate) XXX_Unmarshal(b []byte) error { |
| 8714 | return xxx_messageInfo_FlowGroupTableUpdate.Unmarshal(m, b) |
| 8715 | } |
| 8716 | func (m *FlowGroupTableUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8717 | return xxx_messageInfo_FlowGroupTableUpdate.Marshal(b, m, deterministic) |
| 8718 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8719 | func (m *FlowGroupTableUpdate) XXX_Merge(src proto.Message) { |
| 8720 | xxx_messageInfo_FlowGroupTableUpdate.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8721 | } |
| 8722 | func (m *FlowGroupTableUpdate) XXX_Size() int { |
| 8723 | return xxx_messageInfo_FlowGroupTableUpdate.Size(m) |
| 8724 | } |
| 8725 | func (m *FlowGroupTableUpdate) XXX_DiscardUnknown() { |
| 8726 | xxx_messageInfo_FlowGroupTableUpdate.DiscardUnknown(m) |
| 8727 | } |
| 8728 | |
| 8729 | var xxx_messageInfo_FlowGroupTableUpdate proto.InternalMessageInfo |
| 8730 | |
| 8731 | func (m *FlowGroupTableUpdate) GetId() string { |
| 8732 | if m != nil { |
| 8733 | return m.Id |
| 8734 | } |
| 8735 | return "" |
| 8736 | } |
| 8737 | |
| 8738 | func (m *FlowGroupTableUpdate) GetGroupMod() *OfpGroupMod { |
| 8739 | if m != nil { |
| 8740 | return m.GroupMod |
| 8741 | } |
| 8742 | return nil |
| 8743 | } |
| 8744 | |
| 8745 | type Flows struct { |
| 8746 | Items []*OfpFlowStats `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"` |
| 8747 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8748 | XXX_unrecognized []byte `json:"-"` |
| 8749 | XXX_sizecache int32 `json:"-"` |
| 8750 | } |
| 8751 | |
| 8752 | func (m *Flows) Reset() { *m = Flows{} } |
| 8753 | func (m *Flows) String() string { return proto.CompactTextString(m) } |
| 8754 | func (*Flows) ProtoMessage() {} |
| 8755 | func (*Flows) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8756 | return fileDescriptor_08e3a4e375aeddc7, []int{89} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8757 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8758 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8759 | func (m *Flows) XXX_Unmarshal(b []byte) error { |
| 8760 | return xxx_messageInfo_Flows.Unmarshal(m, b) |
| 8761 | } |
| 8762 | func (m *Flows) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8763 | return xxx_messageInfo_Flows.Marshal(b, m, deterministic) |
| 8764 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8765 | func (m *Flows) XXX_Merge(src proto.Message) { |
| 8766 | xxx_messageInfo_Flows.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8767 | } |
| 8768 | func (m *Flows) XXX_Size() int { |
| 8769 | return xxx_messageInfo_Flows.Size(m) |
| 8770 | } |
| 8771 | func (m *Flows) XXX_DiscardUnknown() { |
| 8772 | xxx_messageInfo_Flows.DiscardUnknown(m) |
| 8773 | } |
| 8774 | |
| 8775 | var xxx_messageInfo_Flows proto.InternalMessageInfo |
| 8776 | |
| 8777 | func (m *Flows) GetItems() []*OfpFlowStats { |
| 8778 | if m != nil { |
| 8779 | return m.Items |
| 8780 | } |
| 8781 | return nil |
| 8782 | } |
| 8783 | |
| 8784 | type Meters struct { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8785 | Items []*OfpMeterEntry `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"` |
| 8786 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8787 | XXX_unrecognized []byte `json:"-"` |
| 8788 | XXX_sizecache int32 `json:"-"` |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8789 | } |
| 8790 | |
| 8791 | func (m *Meters) Reset() { *m = Meters{} } |
| 8792 | func (m *Meters) String() string { return proto.CompactTextString(m) } |
| 8793 | func (*Meters) ProtoMessage() {} |
| 8794 | func (*Meters) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8795 | return fileDescriptor_08e3a4e375aeddc7, []int{90} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8796 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8797 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8798 | func (m *Meters) XXX_Unmarshal(b []byte) error { |
| 8799 | return xxx_messageInfo_Meters.Unmarshal(m, b) |
| 8800 | } |
| 8801 | func (m *Meters) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8802 | return xxx_messageInfo_Meters.Marshal(b, m, deterministic) |
| 8803 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8804 | func (m *Meters) XXX_Merge(src proto.Message) { |
| 8805 | xxx_messageInfo_Meters.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8806 | } |
| 8807 | func (m *Meters) XXX_Size() int { |
| 8808 | return xxx_messageInfo_Meters.Size(m) |
| 8809 | } |
| 8810 | func (m *Meters) XXX_DiscardUnknown() { |
| 8811 | xxx_messageInfo_Meters.DiscardUnknown(m) |
| 8812 | } |
| 8813 | |
| 8814 | var xxx_messageInfo_Meters proto.InternalMessageInfo |
| 8815 | |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8816 | func (m *Meters) GetItems() []*OfpMeterEntry { |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8817 | if m != nil { |
| 8818 | return m.Items |
| 8819 | } |
| 8820 | return nil |
| 8821 | } |
| 8822 | |
| 8823 | type FlowGroups struct { |
| 8824 | Items []*OfpGroupEntry `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"` |
| 8825 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8826 | XXX_unrecognized []byte `json:"-"` |
| 8827 | XXX_sizecache int32 `json:"-"` |
| 8828 | } |
| 8829 | |
| 8830 | func (m *FlowGroups) Reset() { *m = FlowGroups{} } |
| 8831 | func (m *FlowGroups) String() string { return proto.CompactTextString(m) } |
| 8832 | func (*FlowGroups) ProtoMessage() {} |
| 8833 | func (*FlowGroups) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8834 | return fileDescriptor_08e3a4e375aeddc7, []int{91} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8835 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8836 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8837 | func (m *FlowGroups) XXX_Unmarshal(b []byte) error { |
| 8838 | return xxx_messageInfo_FlowGroups.Unmarshal(m, b) |
| 8839 | } |
| 8840 | func (m *FlowGroups) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8841 | return xxx_messageInfo_FlowGroups.Marshal(b, m, deterministic) |
| 8842 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8843 | func (m *FlowGroups) XXX_Merge(src proto.Message) { |
| 8844 | xxx_messageInfo_FlowGroups.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8845 | } |
| 8846 | func (m *FlowGroups) XXX_Size() int { |
| 8847 | return xxx_messageInfo_FlowGroups.Size(m) |
| 8848 | } |
| 8849 | func (m *FlowGroups) XXX_DiscardUnknown() { |
| 8850 | xxx_messageInfo_FlowGroups.DiscardUnknown(m) |
| 8851 | } |
| 8852 | |
| 8853 | var xxx_messageInfo_FlowGroups proto.InternalMessageInfo |
| 8854 | |
| 8855 | func (m *FlowGroups) GetItems() []*OfpGroupEntry { |
| 8856 | if m != nil { |
| 8857 | return m.Items |
| 8858 | } |
| 8859 | return nil |
| 8860 | } |
| 8861 | |
| 8862 | type FlowChanges struct { |
| 8863 | ToAdd *Flows `protobuf:"bytes,1,opt,name=to_add,json=toAdd,proto3" json:"to_add,omitempty"` |
| 8864 | ToRemove *Flows `protobuf:"bytes,2,opt,name=to_remove,json=toRemove,proto3" json:"to_remove,omitempty"` |
| 8865 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8866 | XXX_unrecognized []byte `json:"-"` |
| 8867 | XXX_sizecache int32 `json:"-"` |
| 8868 | } |
| 8869 | |
| 8870 | func (m *FlowChanges) Reset() { *m = FlowChanges{} } |
| 8871 | func (m *FlowChanges) String() string { return proto.CompactTextString(m) } |
| 8872 | func (*FlowChanges) ProtoMessage() {} |
| 8873 | func (*FlowChanges) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8874 | return fileDescriptor_08e3a4e375aeddc7, []int{92} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8875 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8876 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8877 | func (m *FlowChanges) XXX_Unmarshal(b []byte) error { |
| 8878 | return xxx_messageInfo_FlowChanges.Unmarshal(m, b) |
| 8879 | } |
| 8880 | func (m *FlowChanges) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8881 | return xxx_messageInfo_FlowChanges.Marshal(b, m, deterministic) |
| 8882 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8883 | func (m *FlowChanges) XXX_Merge(src proto.Message) { |
| 8884 | xxx_messageInfo_FlowChanges.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8885 | } |
| 8886 | func (m *FlowChanges) XXX_Size() int { |
| 8887 | return xxx_messageInfo_FlowChanges.Size(m) |
| 8888 | } |
| 8889 | func (m *FlowChanges) XXX_DiscardUnknown() { |
| 8890 | xxx_messageInfo_FlowChanges.DiscardUnknown(m) |
| 8891 | } |
| 8892 | |
| 8893 | var xxx_messageInfo_FlowChanges proto.InternalMessageInfo |
| 8894 | |
| 8895 | func (m *FlowChanges) GetToAdd() *Flows { |
| 8896 | if m != nil { |
| 8897 | return m.ToAdd |
| 8898 | } |
| 8899 | return nil |
| 8900 | } |
| 8901 | |
| 8902 | func (m *FlowChanges) GetToRemove() *Flows { |
| 8903 | if m != nil { |
| 8904 | return m.ToRemove |
| 8905 | } |
| 8906 | return nil |
| 8907 | } |
| 8908 | |
| 8909 | type FlowGroupChanges struct { |
| 8910 | ToAdd *FlowGroups `protobuf:"bytes,1,opt,name=to_add,json=toAdd,proto3" json:"to_add,omitempty"` |
| 8911 | ToRemove *FlowGroups `protobuf:"bytes,2,opt,name=to_remove,json=toRemove,proto3" json:"to_remove,omitempty"` |
| 8912 | ToUpdate *FlowGroups `protobuf:"bytes,3,opt,name=to_update,json=toUpdate,proto3" json:"to_update,omitempty"` |
| 8913 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8914 | XXX_unrecognized []byte `json:"-"` |
| 8915 | XXX_sizecache int32 `json:"-"` |
| 8916 | } |
| 8917 | |
| 8918 | func (m *FlowGroupChanges) Reset() { *m = FlowGroupChanges{} } |
| 8919 | func (m *FlowGroupChanges) String() string { return proto.CompactTextString(m) } |
| 8920 | func (*FlowGroupChanges) ProtoMessage() {} |
| 8921 | func (*FlowGroupChanges) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8922 | return fileDescriptor_08e3a4e375aeddc7, []int{93} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8923 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8924 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8925 | func (m *FlowGroupChanges) XXX_Unmarshal(b []byte) error { |
| 8926 | return xxx_messageInfo_FlowGroupChanges.Unmarshal(m, b) |
| 8927 | } |
| 8928 | func (m *FlowGroupChanges) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8929 | return xxx_messageInfo_FlowGroupChanges.Marshal(b, m, deterministic) |
| 8930 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8931 | func (m *FlowGroupChanges) XXX_Merge(src proto.Message) { |
| 8932 | xxx_messageInfo_FlowGroupChanges.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8933 | } |
| 8934 | func (m *FlowGroupChanges) XXX_Size() int { |
| 8935 | return xxx_messageInfo_FlowGroupChanges.Size(m) |
| 8936 | } |
| 8937 | func (m *FlowGroupChanges) XXX_DiscardUnknown() { |
| 8938 | xxx_messageInfo_FlowGroupChanges.DiscardUnknown(m) |
| 8939 | } |
| 8940 | |
| 8941 | var xxx_messageInfo_FlowGroupChanges proto.InternalMessageInfo |
| 8942 | |
| 8943 | func (m *FlowGroupChanges) GetToAdd() *FlowGroups { |
| 8944 | if m != nil { |
| 8945 | return m.ToAdd |
| 8946 | } |
| 8947 | return nil |
| 8948 | } |
| 8949 | |
| 8950 | func (m *FlowGroupChanges) GetToRemove() *FlowGroups { |
| 8951 | if m != nil { |
| 8952 | return m.ToRemove |
| 8953 | } |
| 8954 | return nil |
| 8955 | } |
| 8956 | |
| 8957 | func (m *FlowGroupChanges) GetToUpdate() *FlowGroups { |
| 8958 | if m != nil { |
| 8959 | return m.ToUpdate |
| 8960 | } |
| 8961 | return nil |
| 8962 | } |
| 8963 | |
| 8964 | type PacketIn struct { |
| 8965 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 8966 | PacketIn *OfpPacketIn `protobuf:"bytes,2,opt,name=packet_in,json=packetIn,proto3" json:"packet_in,omitempty"` |
| 8967 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 8968 | XXX_unrecognized []byte `json:"-"` |
| 8969 | XXX_sizecache int32 `json:"-"` |
| 8970 | } |
| 8971 | |
| 8972 | func (m *PacketIn) Reset() { *m = PacketIn{} } |
| 8973 | func (m *PacketIn) String() string { return proto.CompactTextString(m) } |
| 8974 | func (*PacketIn) ProtoMessage() {} |
| 8975 | func (*PacketIn) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 8976 | return fileDescriptor_08e3a4e375aeddc7, []int{94} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8977 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8978 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8979 | func (m *PacketIn) XXX_Unmarshal(b []byte) error { |
| 8980 | return xxx_messageInfo_PacketIn.Unmarshal(m, b) |
| 8981 | } |
| 8982 | func (m *PacketIn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 8983 | return xxx_messageInfo_PacketIn.Marshal(b, m, deterministic) |
| 8984 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 8985 | func (m *PacketIn) XXX_Merge(src proto.Message) { |
| 8986 | xxx_messageInfo_PacketIn.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 8987 | } |
| 8988 | func (m *PacketIn) XXX_Size() int { |
| 8989 | return xxx_messageInfo_PacketIn.Size(m) |
| 8990 | } |
| 8991 | func (m *PacketIn) XXX_DiscardUnknown() { |
| 8992 | xxx_messageInfo_PacketIn.DiscardUnknown(m) |
| 8993 | } |
| 8994 | |
| 8995 | var xxx_messageInfo_PacketIn proto.InternalMessageInfo |
| 8996 | |
| 8997 | func (m *PacketIn) GetId() string { |
| 8998 | if m != nil { |
| 8999 | return m.Id |
| 9000 | } |
| 9001 | return "" |
| 9002 | } |
| 9003 | |
| 9004 | func (m *PacketIn) GetPacketIn() *OfpPacketIn { |
| 9005 | if m != nil { |
| 9006 | return m.PacketIn |
| 9007 | } |
| 9008 | return nil |
| 9009 | } |
| 9010 | |
| 9011 | type PacketOut struct { |
| 9012 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 9013 | PacketOut *OfpPacketOut `protobuf:"bytes,2,opt,name=packet_out,json=packetOut,proto3" json:"packet_out,omitempty"` |
| 9014 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 9015 | XXX_unrecognized []byte `json:"-"` |
| 9016 | XXX_sizecache int32 `json:"-"` |
| 9017 | } |
| 9018 | |
| 9019 | func (m *PacketOut) Reset() { *m = PacketOut{} } |
| 9020 | func (m *PacketOut) String() string { return proto.CompactTextString(m) } |
| 9021 | func (*PacketOut) ProtoMessage() {} |
| 9022 | func (*PacketOut) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 9023 | return fileDescriptor_08e3a4e375aeddc7, []int{95} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9024 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 9025 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9026 | func (m *PacketOut) XXX_Unmarshal(b []byte) error { |
| 9027 | return xxx_messageInfo_PacketOut.Unmarshal(m, b) |
| 9028 | } |
| 9029 | func (m *PacketOut) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 9030 | return xxx_messageInfo_PacketOut.Marshal(b, m, deterministic) |
| 9031 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 9032 | func (m *PacketOut) XXX_Merge(src proto.Message) { |
| 9033 | xxx_messageInfo_PacketOut.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9034 | } |
| 9035 | func (m *PacketOut) XXX_Size() int { |
| 9036 | return xxx_messageInfo_PacketOut.Size(m) |
| 9037 | } |
| 9038 | func (m *PacketOut) XXX_DiscardUnknown() { |
| 9039 | xxx_messageInfo_PacketOut.DiscardUnknown(m) |
| 9040 | } |
| 9041 | |
| 9042 | var xxx_messageInfo_PacketOut proto.InternalMessageInfo |
| 9043 | |
| 9044 | func (m *PacketOut) GetId() string { |
| 9045 | if m != nil { |
| 9046 | return m.Id |
| 9047 | } |
| 9048 | return "" |
| 9049 | } |
| 9050 | |
| 9051 | func (m *PacketOut) GetPacketOut() *OfpPacketOut { |
| 9052 | if m != nil { |
| 9053 | return m.PacketOut |
| 9054 | } |
| 9055 | return nil |
| 9056 | } |
| 9057 | |
| 9058 | type ChangeEvent struct { |
| 9059 | Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` |
| 9060 | // Types that are valid to be assigned to Event: |
| 9061 | // *ChangeEvent_PortStatus |
| 9062 | Event isChangeEvent_Event `protobuf_oneof:"event"` |
| 9063 | XXX_NoUnkeyedLiteral struct{} `json:"-"` |
| 9064 | XXX_unrecognized []byte `json:"-"` |
| 9065 | XXX_sizecache int32 `json:"-"` |
| 9066 | } |
| 9067 | |
| 9068 | func (m *ChangeEvent) Reset() { *m = ChangeEvent{} } |
| 9069 | func (m *ChangeEvent) String() string { return proto.CompactTextString(m) } |
| 9070 | func (*ChangeEvent) ProtoMessage() {} |
| 9071 | func (*ChangeEvent) Descriptor() ([]byte, []int) { |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 9072 | return fileDescriptor_08e3a4e375aeddc7, []int{96} |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9073 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 9074 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9075 | func (m *ChangeEvent) XXX_Unmarshal(b []byte) error { |
| 9076 | return xxx_messageInfo_ChangeEvent.Unmarshal(m, b) |
| 9077 | } |
| 9078 | func (m *ChangeEvent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) { |
| 9079 | return xxx_messageInfo_ChangeEvent.Marshal(b, m, deterministic) |
| 9080 | } |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 9081 | func (m *ChangeEvent) XXX_Merge(src proto.Message) { |
| 9082 | xxx_messageInfo_ChangeEvent.Merge(m, src) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9083 | } |
| 9084 | func (m *ChangeEvent) XXX_Size() int { |
| 9085 | return xxx_messageInfo_ChangeEvent.Size(m) |
| 9086 | } |
| 9087 | func (m *ChangeEvent) XXX_DiscardUnknown() { |
| 9088 | xxx_messageInfo_ChangeEvent.DiscardUnknown(m) |
| 9089 | } |
| 9090 | |
| 9091 | var xxx_messageInfo_ChangeEvent proto.InternalMessageInfo |
| 9092 | |
| 9093 | func (m *ChangeEvent) GetId() string { |
| 9094 | if m != nil { |
| 9095 | return m.Id |
| 9096 | } |
| 9097 | return "" |
| 9098 | } |
| 9099 | |
| 9100 | type isChangeEvent_Event interface { |
| 9101 | isChangeEvent_Event() |
| 9102 | } |
| 9103 | |
| 9104 | type ChangeEvent_PortStatus struct { |
| 9105 | PortStatus *OfpPortStatus `protobuf:"bytes,2,opt,name=port_status,json=portStatus,proto3,oneof"` |
| 9106 | } |
| 9107 | |
| 9108 | func (*ChangeEvent_PortStatus) isChangeEvent_Event() {} |
| 9109 | |
| 9110 | func (m *ChangeEvent) GetEvent() isChangeEvent_Event { |
| 9111 | if m != nil { |
| 9112 | return m.Event |
| 9113 | } |
| 9114 | return nil |
| 9115 | } |
| 9116 | |
| 9117 | func (m *ChangeEvent) GetPortStatus() *OfpPortStatus { |
| 9118 | if x, ok := m.GetEvent().(*ChangeEvent_PortStatus); ok { |
| 9119 | return x.PortStatus |
| 9120 | } |
| 9121 | return nil |
| 9122 | } |
| 9123 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 9124 | // XXX_OneofWrappers is for the internal use of the proto package. |
| 9125 | func (*ChangeEvent) XXX_OneofWrappers() []interface{} { |
| 9126 | return []interface{}{ |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9127 | (*ChangeEvent_PortStatus)(nil), |
| 9128 | } |
| 9129 | } |
| 9130 | |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9131 | func init() { |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 9132 | proto.RegisterEnum("openflow_13.OfpPortNo", OfpPortNo_name, OfpPortNo_value) |
| 9133 | proto.RegisterEnum("openflow_13.OfpType", OfpType_name, OfpType_value) |
| 9134 | proto.RegisterEnum("openflow_13.OfpHelloElemType", OfpHelloElemType_name, OfpHelloElemType_value) |
| 9135 | proto.RegisterEnum("openflow_13.OfpConfigFlags", OfpConfigFlags_name, OfpConfigFlags_value) |
| 9136 | proto.RegisterEnum("openflow_13.OfpTableConfig", OfpTableConfig_name, OfpTableConfig_value) |
| 9137 | proto.RegisterEnum("openflow_13.OfpTable", OfpTable_name, OfpTable_value) |
| 9138 | proto.RegisterEnum("openflow_13.OfpCapabilities", OfpCapabilities_name, OfpCapabilities_value) |
| 9139 | proto.RegisterEnum("openflow_13.OfpPortConfig", OfpPortConfig_name, OfpPortConfig_value) |
| 9140 | proto.RegisterEnum("openflow_13.OfpPortState", OfpPortState_name, OfpPortState_value) |
| 9141 | proto.RegisterEnum("openflow_13.OfpPortFeatures", OfpPortFeatures_name, OfpPortFeatures_value) |
| 9142 | proto.RegisterEnum("openflow_13.OfpPortReason", OfpPortReason_name, OfpPortReason_value) |
| 9143 | proto.RegisterEnum("openflow_13.OfpMatchType", OfpMatchType_name, OfpMatchType_value) |
| 9144 | proto.RegisterEnum("openflow_13.OfpOxmClass", OfpOxmClass_name, OfpOxmClass_value) |
| 9145 | proto.RegisterEnum("openflow_13.OxmOfbFieldTypes", OxmOfbFieldTypes_name, OxmOfbFieldTypes_value) |
| 9146 | proto.RegisterEnum("openflow_13.OfpVlanId", OfpVlanId_name, OfpVlanId_value) |
| 9147 | proto.RegisterEnum("openflow_13.OfpIpv6ExthdrFlags", OfpIpv6ExthdrFlags_name, OfpIpv6ExthdrFlags_value) |
| 9148 | proto.RegisterEnum("openflow_13.OfpActionType", OfpActionType_name, OfpActionType_value) |
| 9149 | proto.RegisterEnum("openflow_13.OfpControllerMaxLen", OfpControllerMaxLen_name, OfpControllerMaxLen_value) |
| 9150 | proto.RegisterEnum("openflow_13.OfpInstructionType", OfpInstructionType_name, OfpInstructionType_value) |
| 9151 | proto.RegisterEnum("openflow_13.OfpFlowModCommand", OfpFlowModCommand_name, OfpFlowModCommand_value) |
| 9152 | proto.RegisterEnum("openflow_13.OfpFlowModFlags", OfpFlowModFlags_name, OfpFlowModFlags_value) |
| 9153 | proto.RegisterEnum("openflow_13.OfpGroup", OfpGroup_name, OfpGroup_value) |
| 9154 | proto.RegisterEnum("openflow_13.OfpGroupModCommand", OfpGroupModCommand_name, OfpGroupModCommand_value) |
| 9155 | proto.RegisterEnum("openflow_13.OfpGroupType", OfpGroupType_name, OfpGroupType_value) |
| 9156 | proto.RegisterEnum("openflow_13.OfpPacketInReason", OfpPacketInReason_name, OfpPacketInReason_value) |
| 9157 | proto.RegisterEnum("openflow_13.OfpFlowRemovedReason", OfpFlowRemovedReason_name, OfpFlowRemovedReason_value) |
| 9158 | proto.RegisterEnum("openflow_13.OfpMeter", OfpMeter_name, OfpMeter_value) |
| 9159 | proto.RegisterEnum("openflow_13.OfpMeterBandType", OfpMeterBandType_name, OfpMeterBandType_value) |
| 9160 | proto.RegisterEnum("openflow_13.OfpMeterModCommand", OfpMeterModCommand_name, OfpMeterModCommand_value) |
| 9161 | proto.RegisterEnum("openflow_13.OfpMeterFlags", OfpMeterFlags_name, OfpMeterFlags_value) |
| 9162 | proto.RegisterEnum("openflow_13.OfpErrorType", OfpErrorType_name, OfpErrorType_value) |
| 9163 | proto.RegisterEnum("openflow_13.OfpHelloFailedCode", OfpHelloFailedCode_name, OfpHelloFailedCode_value) |
| 9164 | proto.RegisterEnum("openflow_13.OfpBadRequestCode", OfpBadRequestCode_name, OfpBadRequestCode_value) |
| 9165 | proto.RegisterEnum("openflow_13.OfpBadActionCode", OfpBadActionCode_name, OfpBadActionCode_value) |
| 9166 | proto.RegisterEnum("openflow_13.OfpBadInstructionCode", OfpBadInstructionCode_name, OfpBadInstructionCode_value) |
| 9167 | proto.RegisterEnum("openflow_13.OfpBadMatchCode", OfpBadMatchCode_name, OfpBadMatchCode_value) |
| 9168 | proto.RegisterEnum("openflow_13.OfpFlowModFailedCode", OfpFlowModFailedCode_name, OfpFlowModFailedCode_value) |
| 9169 | proto.RegisterEnum("openflow_13.OfpGroupModFailedCode", OfpGroupModFailedCode_name, OfpGroupModFailedCode_value) |
| 9170 | proto.RegisterEnum("openflow_13.OfpPortModFailedCode", OfpPortModFailedCode_name, OfpPortModFailedCode_value) |
| 9171 | proto.RegisterEnum("openflow_13.OfpTableModFailedCode", OfpTableModFailedCode_name, OfpTableModFailedCode_value) |
| 9172 | proto.RegisterEnum("openflow_13.OfpQueueOpFailedCode", OfpQueueOpFailedCode_name, OfpQueueOpFailedCode_value) |
| 9173 | proto.RegisterEnum("openflow_13.OfpSwitchConfigFailedCode", OfpSwitchConfigFailedCode_name, OfpSwitchConfigFailedCode_value) |
| 9174 | proto.RegisterEnum("openflow_13.OfpRoleRequestFailedCode", OfpRoleRequestFailedCode_name, OfpRoleRequestFailedCode_value) |
| 9175 | proto.RegisterEnum("openflow_13.OfpMeterModFailedCode", OfpMeterModFailedCode_name, OfpMeterModFailedCode_value) |
| 9176 | proto.RegisterEnum("openflow_13.OfpTableFeaturesFailedCode", OfpTableFeaturesFailedCode_name, OfpTableFeaturesFailedCode_value) |
| 9177 | proto.RegisterEnum("openflow_13.OfpMultipartType", OfpMultipartType_name, OfpMultipartType_value) |
| 9178 | proto.RegisterEnum("openflow_13.OfpMultipartRequestFlags", OfpMultipartRequestFlags_name, OfpMultipartRequestFlags_value) |
| 9179 | proto.RegisterEnum("openflow_13.OfpMultipartReplyFlags", OfpMultipartReplyFlags_name, OfpMultipartReplyFlags_value) |
| 9180 | proto.RegisterEnum("openflow_13.OfpTableFeaturePropType", OfpTableFeaturePropType_name, OfpTableFeaturePropType_value) |
| 9181 | proto.RegisterEnum("openflow_13.OfpGroupCapabilities", OfpGroupCapabilities_name, OfpGroupCapabilities_value) |
| 9182 | proto.RegisterEnum("openflow_13.OfpQueueProperties", OfpQueueProperties_name, OfpQueueProperties_value) |
| 9183 | proto.RegisterEnum("openflow_13.OfpControllerRole", OfpControllerRole_name, OfpControllerRole_value) |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9184 | proto.RegisterType((*OfpHeader)(nil), "openflow_13.ofp_header") |
| 9185 | proto.RegisterType((*OfpHelloElemHeader)(nil), "openflow_13.ofp_hello_elem_header") |
| 9186 | proto.RegisterType((*OfpHelloElemVersionbitmap)(nil), "openflow_13.ofp_hello_elem_versionbitmap") |
| 9187 | proto.RegisterType((*OfpHello)(nil), "openflow_13.ofp_hello") |
| 9188 | proto.RegisterType((*OfpSwitchConfig)(nil), "openflow_13.ofp_switch_config") |
| 9189 | proto.RegisterType((*OfpTableMod)(nil), "openflow_13.ofp_table_mod") |
| 9190 | proto.RegisterType((*OfpPort)(nil), "openflow_13.ofp_port") |
| 9191 | proto.RegisterType((*OfpSwitchFeatures)(nil), "openflow_13.ofp_switch_features") |
| 9192 | proto.RegisterType((*OfpPortStatus)(nil), "openflow_13.ofp_port_status") |
| 9193 | proto.RegisterType((*OfpPortMod)(nil), "openflow_13.ofp_port_mod") |
| 9194 | proto.RegisterType((*OfpMatch)(nil), "openflow_13.ofp_match") |
| 9195 | proto.RegisterType((*OfpOxmField)(nil), "openflow_13.ofp_oxm_field") |
| 9196 | proto.RegisterType((*OfpOxmOfbField)(nil), "openflow_13.ofp_oxm_ofb_field") |
| 9197 | proto.RegisterType((*OfpOxmExperimenterField)(nil), "openflow_13.ofp_oxm_experimenter_field") |
| 9198 | proto.RegisterType((*OfpAction)(nil), "openflow_13.ofp_action") |
| 9199 | proto.RegisterType((*OfpActionOutput)(nil), "openflow_13.ofp_action_output") |
| 9200 | proto.RegisterType((*OfpActionMplsTtl)(nil), "openflow_13.ofp_action_mpls_ttl") |
| 9201 | proto.RegisterType((*OfpActionPush)(nil), "openflow_13.ofp_action_push") |
| 9202 | proto.RegisterType((*OfpActionPopMpls)(nil), "openflow_13.ofp_action_pop_mpls") |
| 9203 | proto.RegisterType((*OfpActionGroup)(nil), "openflow_13.ofp_action_group") |
| 9204 | proto.RegisterType((*OfpActionNwTtl)(nil), "openflow_13.ofp_action_nw_ttl") |
| 9205 | proto.RegisterType((*OfpActionSetField)(nil), "openflow_13.ofp_action_set_field") |
| 9206 | proto.RegisterType((*OfpActionExperimenter)(nil), "openflow_13.ofp_action_experimenter") |
| 9207 | proto.RegisterType((*OfpInstruction)(nil), "openflow_13.ofp_instruction") |
| 9208 | proto.RegisterType((*OfpInstructionGotoTable)(nil), "openflow_13.ofp_instruction_goto_table") |
| 9209 | proto.RegisterType((*OfpInstructionWriteMetadata)(nil), "openflow_13.ofp_instruction_write_metadata") |
| 9210 | proto.RegisterType((*OfpInstructionActions)(nil), "openflow_13.ofp_instruction_actions") |
| 9211 | proto.RegisterType((*OfpInstructionMeter)(nil), "openflow_13.ofp_instruction_meter") |
| 9212 | proto.RegisterType((*OfpInstructionExperimenter)(nil), "openflow_13.ofp_instruction_experimenter") |
| 9213 | proto.RegisterType((*OfpFlowMod)(nil), "openflow_13.ofp_flow_mod") |
| 9214 | proto.RegisterType((*OfpBucket)(nil), "openflow_13.ofp_bucket") |
| 9215 | proto.RegisterType((*OfpGroupMod)(nil), "openflow_13.ofp_group_mod") |
| 9216 | proto.RegisterType((*OfpPacketOut)(nil), "openflow_13.ofp_packet_out") |
| 9217 | proto.RegisterType((*OfpPacketIn)(nil), "openflow_13.ofp_packet_in") |
| 9218 | proto.RegisterType((*OfpFlowRemoved)(nil), "openflow_13.ofp_flow_removed") |
| 9219 | proto.RegisterType((*OfpMeterBandHeader)(nil), "openflow_13.ofp_meter_band_header") |
| 9220 | proto.RegisterType((*OfpMeterBandDrop)(nil), "openflow_13.ofp_meter_band_drop") |
| 9221 | proto.RegisterType((*OfpMeterBandDscpRemark)(nil), "openflow_13.ofp_meter_band_dscp_remark") |
| 9222 | proto.RegisterType((*OfpMeterBandExperimenter)(nil), "openflow_13.ofp_meter_band_experimenter") |
| 9223 | proto.RegisterType((*OfpMeterMod)(nil), "openflow_13.ofp_meter_mod") |
| 9224 | proto.RegisterType((*OfpErrorMsg)(nil), "openflow_13.ofp_error_msg") |
| 9225 | proto.RegisterType((*OfpErrorExperimenterMsg)(nil), "openflow_13.ofp_error_experimenter_msg") |
| 9226 | proto.RegisterType((*OfpMultipartRequest)(nil), "openflow_13.ofp_multipart_request") |
| 9227 | proto.RegisterType((*OfpMultipartReply)(nil), "openflow_13.ofp_multipart_reply") |
| 9228 | proto.RegisterType((*OfpDesc)(nil), "openflow_13.ofp_desc") |
| 9229 | proto.RegisterType((*OfpFlowStatsRequest)(nil), "openflow_13.ofp_flow_stats_request") |
| 9230 | proto.RegisterType((*OfpFlowStats)(nil), "openflow_13.ofp_flow_stats") |
| 9231 | proto.RegisterType((*OfpAggregateStatsRequest)(nil), "openflow_13.ofp_aggregate_stats_request") |
| 9232 | proto.RegisterType((*OfpAggregateStatsReply)(nil), "openflow_13.ofp_aggregate_stats_reply") |
| 9233 | proto.RegisterType((*OfpTableFeatureProperty)(nil), "openflow_13.ofp_table_feature_property") |
| 9234 | proto.RegisterType((*OfpTableFeaturePropInstructions)(nil), "openflow_13.ofp_table_feature_prop_instructions") |
| 9235 | proto.RegisterType((*OfpTableFeaturePropNextTables)(nil), "openflow_13.ofp_table_feature_prop_next_tables") |
| 9236 | proto.RegisterType((*OfpTableFeaturePropActions)(nil), "openflow_13.ofp_table_feature_prop_actions") |
| 9237 | proto.RegisterType((*OfpTableFeaturePropOxm)(nil), "openflow_13.ofp_table_feature_prop_oxm") |
| 9238 | proto.RegisterType((*OfpTableFeaturePropExperimenter)(nil), "openflow_13.ofp_table_feature_prop_experimenter") |
| 9239 | proto.RegisterType((*OfpTableFeatures)(nil), "openflow_13.ofp_table_features") |
| 9240 | proto.RegisterType((*OfpTableStats)(nil), "openflow_13.ofp_table_stats") |
| 9241 | proto.RegisterType((*OfpPortStatsRequest)(nil), "openflow_13.ofp_port_stats_request") |
| 9242 | proto.RegisterType((*OfpPortStats)(nil), "openflow_13.ofp_port_stats") |
| 9243 | proto.RegisterType((*OfpGroupStatsRequest)(nil), "openflow_13.ofp_group_stats_request") |
| 9244 | proto.RegisterType((*OfpBucketCounter)(nil), "openflow_13.ofp_bucket_counter") |
| 9245 | proto.RegisterType((*OfpGroupStats)(nil), "openflow_13.ofp_group_stats") |
| 9246 | proto.RegisterType((*OfpGroupDesc)(nil), "openflow_13.ofp_group_desc") |
| 9247 | proto.RegisterType((*OfpGroupEntry)(nil), "openflow_13.ofp_group_entry") |
| 9248 | proto.RegisterType((*OfpGroupFeatures)(nil), "openflow_13.ofp_group_features") |
| 9249 | proto.RegisterType((*OfpMeterMultipartRequest)(nil), "openflow_13.ofp_meter_multipart_request") |
| 9250 | proto.RegisterType((*OfpMeterBandStats)(nil), "openflow_13.ofp_meter_band_stats") |
| 9251 | proto.RegisterType((*OfpMeterStats)(nil), "openflow_13.ofp_meter_stats") |
| 9252 | proto.RegisterType((*OfpMeterConfig)(nil), "openflow_13.ofp_meter_config") |
| 9253 | proto.RegisterType((*OfpMeterFeatures)(nil), "openflow_13.ofp_meter_features") |
Abhilash Laxmeshwar | dfbb74d | 2019-07-23 08:03:08 -0400 | [diff] [blame] | 9254 | proto.RegisterType((*OfpMeterEntry)(nil), "openflow_13.ofp_meter_entry") |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9255 | proto.RegisterType((*OfpExperimenterMultipartHeader)(nil), "openflow_13.ofp_experimenter_multipart_header") |
| 9256 | proto.RegisterType((*OfpExperimenterHeader)(nil), "openflow_13.ofp_experimenter_header") |
| 9257 | proto.RegisterType((*OfpQueuePropHeader)(nil), "openflow_13.ofp_queue_prop_header") |
| 9258 | proto.RegisterType((*OfpQueuePropMinRate)(nil), "openflow_13.ofp_queue_prop_min_rate") |
| 9259 | proto.RegisterType((*OfpQueuePropMaxRate)(nil), "openflow_13.ofp_queue_prop_max_rate") |
| 9260 | proto.RegisterType((*OfpQueuePropExperimenter)(nil), "openflow_13.ofp_queue_prop_experimenter") |
| 9261 | proto.RegisterType((*OfpPacketQueue)(nil), "openflow_13.ofp_packet_queue") |
| 9262 | proto.RegisterType((*OfpQueueGetConfigRequest)(nil), "openflow_13.ofp_queue_get_config_request") |
| 9263 | proto.RegisterType((*OfpQueueGetConfigReply)(nil), "openflow_13.ofp_queue_get_config_reply") |
| 9264 | proto.RegisterType((*OfpActionSetQueue)(nil), "openflow_13.ofp_action_set_queue") |
| 9265 | proto.RegisterType((*OfpQueueStatsRequest)(nil), "openflow_13.ofp_queue_stats_request") |
| 9266 | proto.RegisterType((*OfpQueueStats)(nil), "openflow_13.ofp_queue_stats") |
| 9267 | proto.RegisterType((*OfpRoleRequest)(nil), "openflow_13.ofp_role_request") |
| 9268 | proto.RegisterType((*OfpAsyncConfig)(nil), "openflow_13.ofp_async_config") |
| 9269 | proto.RegisterType((*MeterModUpdate)(nil), "openflow_13.MeterModUpdate") |
| 9270 | proto.RegisterType((*MeterStatsReply)(nil), "openflow_13.MeterStatsReply") |
| 9271 | proto.RegisterType((*FlowTableUpdate)(nil), "openflow_13.FlowTableUpdate") |
| 9272 | proto.RegisterType((*FlowGroupTableUpdate)(nil), "openflow_13.FlowGroupTableUpdate") |
| 9273 | proto.RegisterType((*Flows)(nil), "openflow_13.Flows") |
| 9274 | proto.RegisterType((*Meters)(nil), "openflow_13.Meters") |
| 9275 | proto.RegisterType((*FlowGroups)(nil), "openflow_13.FlowGroups") |
| 9276 | proto.RegisterType((*FlowChanges)(nil), "openflow_13.FlowChanges") |
| 9277 | proto.RegisterType((*FlowGroupChanges)(nil), "openflow_13.FlowGroupChanges") |
| 9278 | proto.RegisterType((*PacketIn)(nil), "openflow_13.PacketIn") |
| 9279 | proto.RegisterType((*PacketOut)(nil), "openflow_13.PacketOut") |
| 9280 | proto.RegisterType((*ChangeEvent)(nil), "openflow_13.ChangeEvent") |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9281 | } |
| 9282 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 9283 | func init() { proto.RegisterFile("voltha_protos/openflow_13.proto", fileDescriptor_08e3a4e375aeddc7) } |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9284 | |
William Kurkian | ad74565 | 2019-03-20 08:45:51 -0400 | [diff] [blame] | 9285 | var fileDescriptor_08e3a4e375aeddc7 = []byte{ |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 9286 | // 8423 bytes of a gzipped FileDescriptorProto |
Scott Baker | 383964b | 2019-11-01 14:26:07 -0700 | [diff] [blame] | 9287 | 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x7d, 0x5b, 0x8c, 0x1b, 0x59, |
| 9288 | 0x76, 0x98, 0xf8, 0xe8, 0x6e, 0xf2, 0xb2, 0xbb, 0x55, 0x2a, 0xbd, 0x28, 0xb5, 0x34, 0x92, 0x38, |
Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 9289 | 0x33, 0xbb, 0xb3, 0xdc, 0x78, 0x34, 0x7a, 0xac, 0x76, 0xbd, 0x0f, 0x47, 0x45, 0xb2, 0xd8, 0xe4, |
| 9290 | 0x88, 0x2f, 0x55, 0x55, 0xb7, 0xa4, 0x0d, 0x92, 0x02, 0x9b, 0x2c, 0x75, 0xd3, 0x43, 0xb2, 0xb8, |
| 9291 | 0x55, 0xd5, 0xad, 0x96, 0x63, 0x07, 0x4a, 0x8c, 0x20, 0x40, 0x12, 0xdb, 0x09, 0xfc, 0xb1, 0x40, |
| 9292 | 0xe0, 0x00, 0x31, 0x92, 0x7c, 0x04, 0x01, 0xf2, 0x11, 0x20, 0x40, 0x80, 0x7c, 0x1b, 0x48, 0x80, |
| 9293 | 0x20, 0x01, 0x0c, 0x04, 0xfe, 0xb1, 0xff, 0x9c, 0x9f, 0x00, 0xfe, 0x4f, 0x36, 0x9b, 0x55, 0x70, |
| 9294 | 0xee, 0x39, 0xf7, 0xd6, 0x2d, 0x3e, 0x7a, 0x7a, 0x37, 0xb3, 0xf9, 0xf0, 0x97, 0x58, 0xe7, 0x75, |
| 9295 | 0xcf, 0x3d, 0xf7, 0x9c, 0x73, 0xcf, 0x3d, 0x75, 0xab, 0xc5, 0xee, 0x9c, 0xf8, 0xe3, 0xe8, 0xa8, |
| 9296 | 0xef, 0xce, 0x02, 0x3f, 0xf2, 0xc3, 0xfb, 0xfe, 0xcc, 0x9b, 0xbe, 0x1e, 0xfb, 0x6f, 0xdc, 0x07, |
| 9297 | 0x8f, 0x3e, 0xe5, 0x20, 0xbd, 0xa0, 0x80, 0x6e, 0xde, 0x3a, 0xf4, 0xfd, 0xc3, 0xb1, 0x77, 0xbf, |
| 9298 | 0x3f, 0x1b, 0xdd, 0xef, 0x4f, 0xa7, 0x7e, 0xd4, 0x8f, 0x46, 0xfe, 0x34, 0x44, 0xd2, 0xd2, 0x80, |
| 9299 | 0x31, 0xff, 0xf5, 0xcc, 0x3d, 0xf2, 0xfa, 0x43, 0x2f, 0xd0, 0x8b, 0x6c, 0xe3, 0xc4, 0x0b, 0xc2, |
| 9300 | 0x91, 0x3f, 0x2d, 0xa6, 0xee, 0xa6, 0x3e, 0xd9, 0xb2, 0xc4, 0xa3, 0xfe, 0x0d, 0x96, 0x8d, 0xde, |
| 9301 | 0xce, 0xbc, 0x62, 0xfa, 0x6e, 0xea, 0x93, 0xed, 0x87, 0x57, 0x3f, 0x55, 0x07, 0x05, 0x01, 0x80, |
| 9302 | 0xb4, 0x38, 0x89, 0xae, 0xb1, 0xcc, 0xe9, 0x68, 0x58, 0xcc, 0x70, 0x01, 0xf0, 0xb3, 0xf4, 0xaf, |
| 9303 | 0x53, 0xec, 0x2a, 0x8e, 0x32, 0x1e, 0xfb, 0xae, 0x37, 0xf6, 0x26, 0x62, 0xc0, 0xc7, 0x24, 0x36, |
| 9304 | 0xc5, 0xc5, 0xde, 0x5d, 0x10, 0xab, 0x70, 0x28, 0x23, 0x3c, 0x67, 0x5b, 0xa4, 0xd7, 0xc1, 0x28, |
| 9305 | 0x9a, 0xf4, 0x67, 0x5c, 0xab, 0xc2, 0xc3, 0x6f, 0x9c, 0xc5, 0x9e, 0x60, 0x68, 0x5c, 0xb0, 0x92, |
| 9306 | 0x12, 0x2a, 0x79, 0xb6, 0x01, 0x64, 0xde, 0x34, 0x2a, 0x7d, 0x87, 0xdd, 0x3a, 0x8b, 0x17, 0x8c, |
| 9307 | 0x84, 0xbf, 0xc2, 0x62, 0xfa, 0x6e, 0x06, 0x8c, 0x44, 0x8f, 0xa5, 0x67, 0x2c, 0x2f, 0x39, 0xf5, |
| 9308 | 0x5f, 0x63, 0x39, 0x92, 0x18, 0x16, 0x53, 0x77, 0x33, 0x9f, 0x14, 0x1e, 0x96, 0xce, 0xd2, 0x0f, |
| 9309 | 0x0d, 0x62, 0x49, 0x9e, 0x52, 0x9b, 0x5d, 0x02, 0x92, 0xf0, 0xcd, 0x28, 0x1a, 0x1c, 0xb9, 0x03, |
| 9310 | 0x7f, 0xfa, 0x7a, 0x74, 0xa8, 0x5f, 0x61, 0x6b, 0xaf, 0xc7, 0xfd, 0xc3, 0x90, 0x96, 0x07, 0x1f, |
| 9311 | 0xf4, 0x12, 0xdb, 0x9a, 0x8c, 0xc2, 0xd0, 0x0d, 0xbd, 0xe9, 0xd0, 0x1d, 0x7b, 0x53, 0x6e, 0x8f, |
| 9312 | 0x2d, 0xab, 0x00, 0x40, 0xdb, 0x9b, 0x0e, 0x5b, 0xde, 0xb4, 0x54, 0x61, 0x5b, 0x7c, 0x9d, 0xfa, |
| 9313 | 0x07, 0x63, 0xcf, 0x9d, 0xf8, 0x43, 0xfd, 0x06, 0xcb, 0xe1, 0xc3, 0x68, 0x28, 0x16, 0x9b, 0x3f, |
| 9314 | 0x37, 0x87, 0xfa, 0x35, 0xb6, 0x8e, 0xe3, 0x91, 0x20, 0x7a, 0x2a, 0xfd, 0xb3, 0x34, 0xcb, 0x81, |
| 9315 | 0x90, 0x99, 0x1f, 0x44, 0xfa, 0x75, 0xb6, 0x01, 0xff, 0xba, 0x53, 0x9f, 0xd8, 0xd7, 0xe1, 0xb1, |
| 9316 | 0xe3, 0x03, 0xe2, 0xe8, 0x8d, 0xdb, 0x1f, 0x0e, 0x03, 0xb2, 0xcf, 0xfa, 0xd1, 0x1b, 0x63, 0x38, |
| 9317 | 0x0c, 0x74, 0x9d, 0x65, 0xa7, 0xfd, 0x89, 0xc7, 0x3d, 0x23, 0x6f, 0xf1, 0xdf, 0xca, 0x50, 0x59, |
| 9318 | 0x75, 0x28, 0x98, 0x68, 0x18, 0xf5, 0x23, 0xaf, 0xb8, 0x86, 0x13, 0xe5, 0x0f, 0x20, 0x61, 0x70, |
| 9319 | 0x1c, 0x04, 0xc5, 0x75, 0x0e, 0xe4, 0xbf, 0xf5, 0x0f, 0x18, 0xeb, 0x0f, 0x4f, 0xbc, 0x20, 0x1a, |
| 9320 | 0x85, 0xde, 0xb0, 0xb8, 0xc1, 0x31, 0x0a, 0x44, 0xbf, 0xc5, 0xf2, 0xe1, 0xf1, 0x0c, 0x74, 0xf3, |
| 9321 | 0x86, 0xc5, 0x1c, 0x47, 0xc7, 0x00, 0x90, 0x38, 0xf3, 0xbc, 0xa0, 0x98, 0x47, 0x89, 0xf0, 0x5b, |
| 9322 | 0xbf, 0xcd, 0x18, 0x48, 0x76, 0xc3, 0x99, 0xe7, 0x0d, 0x8b, 0x0c, 0x59, 0x00, 0x62, 0x03, 0x40, |
| 9323 | 0xdf, 0x61, 0xf9, 0x49, 0xff, 0x94, 0xb0, 0x05, 0x8e, 0xcd, 0x4d, 0xfa, 0xa7, 0x1c, 0x59, 0xfa, |
| 9324 | 0x77, 0x29, 0x76, 0x59, 0x59, 0xb6, 0xd7, 0x5e, 0x3f, 0x3a, 0x0e, 0xbc, 0x50, 0xbf, 0xc3, 0x0a, |
| 9325 | 0xc3, 0x7e, 0xd4, 0x9f, 0xf5, 0xa3, 0x23, 0x61, 0xf0, 0xac, 0xc5, 0x04, 0xa8, 0xc9, 0xa5, 0x4e, |
| 9326 | 0xdd, 0x83, 0xe3, 0xd7, 0xaf, 0xbd, 0x20, 0x24, 0xb3, 0xe7, 0xa6, 0x15, 0x7c, 0x86, 0xb5, 0x9a, |
| 9327 | 0xe2, 0xd2, 0x85, 0x14, 0x57, 0x1b, 0x53, 0x87, 0x3f, 0xea, 0xf7, 0xd8, 0x66, 0xff, 0xf8, 0x74, |
| 9328 | 0x34, 0x1e, 0xf5, 0x83, 0xb7, 0x20, 0x19, 0xcd, 0x58, 0x90, 0xb0, 0xe6, 0x50, 0x2f, 0xb1, 0xcd, |
| 9329 | 0x41, 0x7f, 0xd6, 0x3f, 0x18, 0x8d, 0x47, 0xd1, 0xc8, 0x0b, 0xc9, 0xa4, 0x09, 0x58, 0x29, 0x60, |
| 9330 | 0x17, 0xc5, 0xca, 0xba, 0x60, 0xeb, 0xe3, 0x50, 0x7f, 0xcc, 0xd6, 0x03, 0xaf, 0x1f, 0x52, 0x2e, |
| 9331 | 0xd8, 0x7e, 0x78, 0x6b, 0xc1, 0x7d, 0x39, 0x35, 0xd2, 0x58, 0x44, 0x0b, 0x89, 0x62, 0xe8, 0x85, |
| 9332 | 0x03, 0x0a, 0xc9, 0xab, 0x4b, 0x79, 0x2c, 0x4e, 0x52, 0xfa, 0xfb, 0x29, 0xb6, 0x29, 0xc5, 0x80, |
| 9333 | 0x4b, 0xfe, 0xfc, 0x2e, 0x15, 0xbb, 0x4f, 0x26, 0xe1, 0x3e, 0x3a, 0xcb, 0x4e, 0xfa, 0xe1, 0x17, |
| 9334 | 0x64, 0x0d, 0xfe, 0x1b, 0x1c, 0x41, 0xba, 0x05, 0xd9, 0x20, 0x06, 0x94, 0xde, 0x60, 0xec, 0x4e, |
| 9335 | 0xfa, 0xd1, 0xe0, 0x48, 0xbf, 0x9f, 0x48, 0x4b, 0x3b, 0x0b, 0x93, 0xe0, 0x54, 0x6a, 0x46, 0xfa, |
| 9336 | 0x55, 0xc6, 0xfc, 0xd3, 0x89, 0xfb, 0x7a, 0xe4, 0x8d, 0x87, 0x98, 0x16, 0x0a, 0x0f, 0x6f, 0x2e, |
| 9337 | 0xb0, 0x49, 0x12, 0x2b, 0xef, 0x9f, 0x4e, 0xea, 0x9c, 0xb8, 0xf4, 0x3f, 0x52, 0x18, 0x99, 0x12, |
| 9338 | 0xa9, 0x7f, 0x9b, 0x01, 0xda, 0x1d, 0x8c, 0xfb, 0x61, 0x48, 0x2a, 0x2c, 0x97, 0xc5, 0x29, 0xac, |
| 9339 | 0x9c, 0x7f, 0x3a, 0xa9, 0xc2, 0x2f, 0xfd, 0x07, 0x30, 0x87, 0x03, 0x94, 0xc2, 0xa7, 0x5e, 0x78, |
| 9340 | 0xf8, 0xc1, 0x52, 0x46, 0x49, 0xd5, 0xb8, 0x60, 0xe5, 0xfc, 0xd7, 0x07, 0x5c, 0x15, 0xfd, 0x25, |
| 9341 | 0xd3, 0xbd, 0xd3, 0x99, 0x17, 0x8c, 0x20, 0x01, 0x79, 0x01, 0xc9, 0x59, 0xe3, 0x72, 0xbe, 0xbe, |
| 9342 | 0x54, 0xce, 0x22, 0x79, 0xe3, 0x82, 0x75, 0x49, 0x85, 0x72, 0xc9, 0x95, 0x0d, 0xb6, 0xc6, 0xb1, |
| 9343 | 0xa5, 0x3f, 0xd9, 0xc6, 0xac, 0x96, 0x50, 0xe2, 0xec, 0x5d, 0x40, 0xa5, 0xe4, 0x26, 0x0f, 0xc9, |
| 9344 | 0xe6, 0x37, 0x58, 0xee, 0xa8, 0x1f, 0xba, 0x7c, 0x9d, 0xc1, 0xdb, 0x72, 0xd6, 0xc6, 0x51, 0x3f, |
| 9345 | 0x6c, 0xc3, 0x52, 0x5f, 0x61, 0x59, 0xf0, 0x1c, 0x74, 0x8a, 0xc6, 0x05, 0x8b, 0x3f, 0xe9, 0x1f, |
| 9346 | 0xb3, 0xad, 0xd9, 0xd1, 0xdb, 0x70, 0x34, 0xe8, 0x8f, 0xb9, 0xcf, 0xa1, 0x77, 0x34, 0x2e, 0x58, |
| 9347 | 0x9b, 0x02, 0xdc, 0x03, 0xb2, 0xaf, 0xb3, 0x6d, 0xca, 0x92, 0x5e, 0xd4, 0x87, 0x08, 0xe5, 0x26, |
| 9348 | 0xc8, 0xc2, 0x9e, 0xc1, 0xe1, 0x6d, 0x02, 0xeb, 0x37, 0xd8, 0x86, 0x17, 0x1d, 0xb9, 0xc3, 0x30, |
| 9349 | 0xe2, 0x09, 0x69, 0xb3, 0x71, 0xc1, 0x5a, 0xf7, 0xa2, 0xa3, 0x5a, 0x18, 0x09, 0x54, 0x18, 0x0c, |
| 9350 | 0x78, 0x46, 0x12, 0x28, 0x3b, 0x18, 0xe8, 0x3b, 0x2c, 0x07, 0x28, 0x3e, 0xe1, 0x1c, 0x29, 0x00, |
| 9351 | 0xc4, 0x0e, 0xcc, 0x69, 0x87, 0xe5, 0x4e, 0xc6, 0xfd, 0xa9, 0x7b, 0x32, 0x1a, 0x62, 0x4a, 0x02, |
| 9352 | 0x24, 0x40, 0xf6, 0x47, 0x43, 0x89, 0x9c, 0x0d, 0x66, 0x98, 0x95, 0x04, 0xb2, 0x37, 0x98, 0xc1, |
| 9353 | 0x88, 0xa3, 0x99, 0x3b, 0x0c, 0x07, 0x33, 0xcc, 0x49, 0x30, 0xe2, 0x68, 0x56, 0x0b, 0x07, 0x33, |
| 9354 | 0xfd, 0x3a, 0x5b, 0x1f, 0xcd, 0x5c, 0x6f, 0x30, 0x2d, 0x6e, 0x12, 0x66, 0x6d, 0x34, 0x33, 0x07, |
| 9355 | 0x53, 0x10, 0x38, 0x9a, 0x61, 0x19, 0x51, 0xdc, 0x12, 0x02, 0x47, 0xb3, 0x1e, 0x2f, 0x22, 0x38, |
| 9356 | 0xf2, 0xe4, 0x31, 0x9f, 0xc3, 0x76, 0x8c, 0x3c, 0x79, 0x4c, 0x93, 0xe0, 0x48, 0x98, 0xfb, 0x45, |
| 9357 | 0x15, 0x49, 0x93, 0x8f, 0x06, 0x33, 0xce, 0xa8, 0x09, 0x55, 0xa2, 0xc1, 0x0c, 0xf8, 0x08, 0x05, |
| 9358 | 0x6c, 0x97, 0x14, 0x14, 0x71, 0x1d, 0x0f, 0x91, 0x4b, 0x17, 0xa8, 0xe3, 0xa1, 0xe0, 0x02, 0x14, |
| 9359 | 0x70, 0x5d, 0x56, 0x50, 0xc0, 0xb5, 0xc3, 0x72, 0xe1, 0x20, 0x42, 0xb6, 0x2b, 0x42, 0x11, 0x80, |
| 9360 | 0x90, 0x96, 0x1c, 0x09, 0x8c, 0x57, 0x55, 0x24, 0x70, 0xde, 0x63, 0x85, 0xd1, 0x60, 0x02, 0x93, |
| 9361 | 0xe0, 0x4b, 0x71, 0x8d, 0xf0, 0x0c, 0x81, 0x7c, 0x35, 0x62, 0x92, 0x81, 0x3f, 0xf4, 0x8a, 0xd7, |
| 9362 | 0x93, 0x24, 0x55, 0x7f, 0xe8, 0x81, 0x6d, 0xfb, 0xc1, 0xcc, 0xf5, 0x67, 0xc5, 0xa2, 0xb0, 0x6d, |
| 9363 | 0x3f, 0x98, 0x75, 0xf9, 0x7a, 0x00, 0x22, 0x9c, 0xf5, 0x8b, 0x37, 0x84, 0xce, 0xfd, 0x60, 0x66, |
| 9364 | 0xcf, 0xfa, 0x02, 0x15, 0xcd, 0xfa, 0xc5, 0x9b, 0x0a, 0xca, 0x89, 0x51, 0xe1, 0x51, 0xbf, 0xb8, |
| 9365 | 0x23, 0xfc, 0x06, 0xb8, 0x8e, 0x62, 0xae, 0xa3, 0x7e, 0xf1, 0x96, 0x82, 0x72, 0x8e, 0xfa, 0xb4, |
| 9366 | 0x1a, 0x4f, 0xb8, 0x11, 0x6e, 0x13, 0x0e, 0x56, 0xe3, 0x49, 0xbc, 0x54, 0x4f, 0xb8, 0x11, 0x3e, |
| 9367 | 0x50, 0x91, 0xc2, 0x08, 0x80, 0x7c, 0x3d, 0xee, 0x1f, 0x78, 0xe3, 0xe2, 0x1d, 0x39, 0xc3, 0xd9, |
| 9368 | 0xc9, 0x93, 0x3a, 0x87, 0x49, 0x23, 0x3c, 0x41, 0x3b, 0xdd, 0x4d, 0x18, 0xe1, 0x49, 0xc2, 0x4e, |
| 9369 | 0x4f, 0xd0, 0x4e, 0xf7, 0x92, 0x24, 0xdc, 0x4e, 0x5f, 0x63, 0xdb, 0x7c, 0xa0, 0xe9, 0xd0, 0x8d, |
| 9370 | 0xfa, 0xc1, 0xa1, 0x17, 0x15, 0x4b, 0xa4, 0xcb, 0x26, 0xc0, 0x3b, 0x43, 0x87, 0x43, 0xf5, 0xbb, |
| 9371 | 0xa4, 0xd0, 0x74, 0xe8, 0x86, 0xe1, 0xb8, 0xf8, 0x21, 0x11, 0xe5, 0x91, 0xc8, 0x0e, 0xc7, 0x2a, |
| 9372 | 0x45, 0x34, 0x1e, 0x17, 0x3f, 0x4a, 0x52, 0x38, 0xe3, 0xb1, 0x7e, 0x87, 0xb1, 0xc9, 0x6c, 0x1c, |
| 9373 | 0xba, 0x38, 0xa7, 0x8f, 0x49, 0x9b, 0x3c, 0xc0, 0x5a, 0x7c, 0x4a, 0x37, 0xd8, 0x06, 0x27, 0x88, |
| 9374 | 0x06, 0xc5, 0xaf, 0x89, 0x05, 0x00, 0x80, 0xc3, 0xad, 0xc5, 0x51, 0x07, 0x7e, 0x58, 0xfc, 0xba, |
| 9375 | 0x70, 0x19, 0x80, 0x54, 0xfc, 0x10, 0x90, 0xb3, 0x83, 0x03, 0x77, 0x14, 0x8e, 0x86, 0xc5, 0x4f, |
| 9376 | 0x04, 0x72, 0x76, 0x70, 0xd0, 0x0c, 0x47, 0x43, 0xfd, 0x36, 0xcb, 0x47, 0xc7, 0xd3, 0xa9, 0x37, |
| 9377 | 0x86, 0x5d, 0xf8, 0x1b, 0x94, 0x31, 0x72, 0x08, 0x6a, 0x0e, 0xa5, 0xa5, 0xbd, 0xd3, 0xe8, 0x68, |
| 9378 | 0x18, 0x14, 0xcb, 0xaa, 0xa5, 0x4d, 0x0e, 0xd3, 0x3f, 0x63, 0x97, 0x93, 0x89, 0x07, 0x73, 0xdb, |
| 9379 | 0x88, 0xcb, 0x4a, 0x59, 0x97, 0x12, 0xd9, 0x87, 0xe7, 0xb9, 0x12, 0xdb, 0xa4, 0x0c, 0x84, 0xa4, |
| 9380 | 0xbf, 0xce, 0x8d, 0x91, 0xb2, 0x18, 0xa6, 0x21, 0x95, 0x26, 0x0c, 0x06, 0x48, 0xf3, 0x85, 0x42, |
| 9381 | 0x63, 0x07, 0x03, 0x4e, 0xf3, 0x11, 0xdb, 0x12, 0x69, 0x07, 0x89, 0x26, 0x5c, 0xbd, 0x94, 0x55, |
| 9382 | 0xa0, 0xdc, 0x23, 0xa8, 0x44, 0x46, 0x40, 0xaa, 0x40, 0x50, 0x51, 0x5a, 0x48, 0x50, 0x49, 0xa5, |
| 9383 | 0x42, 0x95, 0x4a, 0xd1, 0x8a, 0xc2, 0x03, 0x89, 0x7e, 0x8b, 0x88, 0x18, 0xc6, 0x88, 0x4a, 0x13, |
| 9384 | 0x09, 0x9a, 0xbf, 0xa5, 0xd0, 0x38, 0x44, 0xf3, 0x31, 0x1f, 0xed, 0x49, 0xac, 0xd3, 0xdf, 0x4e, |
| 9385 | 0xd1, 0xfc, 0x0a, 0x14, 0x00, 0x09, 0x32, 0xa9, 0xd4, 0xdf, 0x49, 0x90, 0x09, 0xad, 0xbe, 0xc9, |
| 9386 | 0x34, 0x25, 0x1c, 0x90, 0xf2, 0xb7, 0x53, 0x34, 0xec, 0x76, 0x1c, 0x14, 0x42, 0xa6, 0xf0, 0x06, |
| 9387 | 0xa4, 0xfc, 0x87, 0x82, 0xb2, 0x40, 0x3e, 0xc1, 0xc9, 0x60, 0x3b, 0x11, 0x7e, 0x81, 0x74, 0xbf, |
| 9388 | 0x93, 0xa2, 0x15, 0xdd, 0x14, 0xde, 0x91, 0x18, 0x1c, 0x3d, 0x04, 0x49, 0x7f, 0x37, 0x31, 0x38, |
| 9389 | 0xfa, 0x09, 0x10, 0xc3, 0x8e, 0x7a, 0xd2, 0x1f, 0x1f, 0x7b, 0x95, 0x75, 0xac, 0x74, 0x4a, 0x2e, |
| 9390 | 0xbb, 0xb9, 0x7a, 0x57, 0x86, 0x92, 0x16, 0x30, 0x78, 0xc8, 0xa0, 0xe2, 0x0a, 0x8a, 0x8c, 0x06, |
| 9391 | 0x1e, 0xc3, 0xc0, 0x47, 0x14, 0x26, 0xaa, 0x3f, 0x13, 0xb0, 0xd2, 0xbf, 0xcd, 0xe2, 0x51, 0xb1, |
| 9392 | 0x3f, 0x80, 0xf3, 0xa3, 0xfe, 0x59, 0x62, 0xcf, 0x5e, 0xac, 0x0d, 0x91, 0x4c, 0xad, 0x91, 0xbe, |
| 9393 | 0xc3, 0xd6, 0xfd, 0xe3, 0x68, 0x76, 0x1c, 0x51, 0x6d, 0xf8, 0xc1, 0x2a, 0x1e, 0xa4, 0x82, 0xa0, |
| 9394 | 0xc4, 0x5f, 0xfa, 0x0f, 0x28, 0x28, 0xa3, 0x68, 0xcc, 0xb7, 0xf4, 0xc2, 0x92, 0x93, 0x22, 0xf1, |
| 9395 | 0x0a, 0x3a, 0x11, 0xb6, 0x4e, 0x34, 0xd6, 0x1f, 0xb2, 0xec, 0xec, 0x38, 0x3c, 0xa2, 0x8a, 0x68, |
| 9396 | 0xa5, 0xaa, 0x40, 0xc3, 0x6b, 0x85, 0xe3, 0xf0, 0x08, 0x86, 0x9c, 0xf9, 0x33, 0x2e, 0x8e, 0x2a, |
| 9397 | 0xa0, 0x95, 0x43, 0x0a, 0x3a, 0x9e, 0x0c, 0xfc, 0x59, 0x7b, 0x36, 0x0e, 0xf5, 0x6f, 0xb1, 0xb5, |
| 9398 | 0xc3, 0xc0, 0x3f, 0x9e, 0xf1, 0xc2, 0xa0, 0xf0, 0xf0, 0xf6, 0x2a, 0x5e, 0x4e, 0x04, 0x9b, 0x06, |
| 9399 | 0xff, 0xa1, 0x7f, 0x9b, 0xad, 0x4f, 0xdf, 0xf0, 0x69, 0x6e, 0x9c, 0x6d, 0x22, 0xa4, 0x02, 0xc6, |
| 9400 | 0xe9, 0x1b, 0x98, 0xe2, 0x53, 0x96, 0x0f, 0xbd, 0x88, 0x2a, 0xb6, 0x1c, 0xe7, 0xbd, 0xb7, 0x8a, |
| 9401 | 0x57, 0x12, 0x42, 0x7e, 0x0a, 0xbd, 0x08, 0x8b, 0xbf, 0xcf, 0xe7, 0x5c, 0x20, 0xcf, 0x85, 0x7c, |
| 9402 | 0xb4, 0x4a, 0x88, 0x4a, 0x0b, 0x49, 0x5c, 0x7d, 0xae, 0xe4, 0xd8, 0x3a, 0x92, 0x95, 0x9e, 0x62, |
| 9403 | 0xb9, 0x97, 0x58, 0x58, 0x7e, 0xe6, 0x82, 0xf2, 0x2b, 0x45, 0x67, 0x2e, 0x3a, 0x4d, 0xc2, 0xa1, |
| 9404 | 0x2a, 0x3e, 0xbc, 0xae, 0x4f, 0xfa, 0xa7, 0x70, 0x6e, 0xfd, 0x0c, 0xcf, 0x53, 0x73, 0xcb, 0x0b, |
| 9405 | 0xc5, 0x9f, 0x74, 0x09, 0x3a, 0xbd, 0xd2, 0x72, 0x97, 0xee, 0xe3, 0x51, 0x46, 0x59, 0x55, 0x28, |
| 9406 | 0xfd, 0xbd, 0xe8, 0xc8, 0x0b, 0xa4, 0xc7, 0x6e, 0x59, 0x31, 0xa0, 0xf4, 0x28, 0x31, 0x84, 0x58, |
| 9407 | 0xce, 0x2f, 0x61, 0xfa, 0x15, 0xa6, 0xcd, 0xaf, 0x23, 0x28, 0xc5, 0x7f, 0x28, 0x47, 0x6a, 0xfe, |
| 9408 | 0xdc, 0x1c, 0x96, 0xca, 0x09, 0x43, 0xe0, 0xf2, 0xe9, 0x57, 0xe5, 0x72, 0xd3, 0x71, 0x9e, 0x2f, |
| 9409 | 0x66, 0xa9, 0xc1, 0xae, 0x2c, 0x5b, 0x2e, 0xfd, 0x33, 0xaa, 0xa2, 0x39, 0xf5, 0xd9, 0xe7, 0x0b, |
| 9410 | 0x2a, 0xb7, 0x9f, 0xb3, 0xeb, 0x2b, 0xd6, 0x6c, 0x21, 0xe4, 0x53, 0x8b, 0x21, 0x0f, 0x0b, 0xc5, |
| 9411 | 0xeb, 0x5f, 0x58, 0x91, 0x4d, 0x8b, 0xff, 0x2e, 0xfd, 0x41, 0x06, 0xcd, 0x3b, 0x9a, 0x86, 0x51, |
| 9412 | 0x70, 0x8c, 0xb9, 0x40, 0x57, 0x72, 0xc1, 0x16, 0x45, 0x7b, 0x83, 0xb1, 0x43, 0x3f, 0xf2, 0xf1, |
| 9413 | 0xd4, 0x4a, 0x11, 0xbf, 0x78, 0x88, 0x50, 0xa4, 0xb8, 0x31, 0x39, 0xec, 0xd6, 0xf0, 0xc4, 0x8f, |
| 9414 | 0xb8, 0xba, 0xc3, 0xb6, 0xdf, 0x04, 0xa3, 0x48, 0xa9, 0xc7, 0x31, 0x07, 0x7c, 0xf3, 0x4c, 0x69, |
| 9415 | 0x49, 0x16, 0x28, 0xde, 0x39, 0x44, 0x16, 0xef, 0x4f, 0xd9, 0x06, 0x9a, 0x25, 0xa4, 0xbc, 0xf0, |
| 9416 | 0xd1, 0x99, 0xe2, 0x88, 0x16, 0x62, 0x9c, 0x7e, 0xea, 0xdf, 0x65, 0x6b, 0x13, 0x0f, 0x4c, 0x87, |
| 9417 | 0xf9, 0xa1, 0x74, 0x26, 0x3f, 0xa7, 0x84, 0x78, 0xe5, 0x3f, 0xf4, 0xee, 0x9c, 0xf5, 0xd7, 0x57, |
| 9418 | 0x34, 0xb0, 0x54, 0x11, 0x67, 0x86, 0xdc, 0x3a, 0x2e, 0x55, 0xe9, 0xdb, 0xb8, 0x0d, 0x2c, 0xb7, |
| 9419 | 0xeb, 0x19, 0x3d, 0x9f, 0x52, 0x9f, 0x7d, 0x70, 0xb6, 0x09, 0xf5, 0x9b, 0x2c, 0x27, 0x57, 0x00, |
| 9420 | 0xfb, 0x17, 0xf2, 0x59, 0xff, 0x90, 0x6d, 0x25, 0x8b, 0x96, 0x34, 0x27, 0xd8, 0x9c, 0x28, 0xd5, |
| 9421 | 0x4a, 0xa9, 0x85, 0xde, 0xb8, 0xc4, 0xac, 0xfa, 0x83, 0x78, 0x35, 0xb0, 0x57, 0x76, 0x7d, 0x45, |
| 9422 | 0xe2, 0x91, 0xe6, 0x2f, 0x3d, 0xc4, 0x9e, 0xe2, 0x82, 0x91, 0x79, 0x6a, 0x80, 0x1f, 0xca, 0x24, |
| 9423 | 0xf9, 0x73, 0x73, 0x58, 0xda, 0xc7, 0xd6, 0xde, 0x2a, 0xab, 0xfe, 0xc2, 0x41, 0xf1, 0xa7, 0x19, |
| 9424 | 0xec, 0x64, 0x70, 0x7d, 0x27, 0x3e, 0x75, 0xd0, 0xfc, 0x2f, 0x46, 0x1e, 0x59, 0x8a, 0x9e, 0xf4, |
| 9425 | 0x3b, 0xac, 0x80, 0xbf, 0x54, 0x2b, 0x31, 0x04, 0xf1, 0x22, 0x40, 0x5d, 0xa1, 0x4c, 0xb2, 0x2b, |
| 9426 | 0xf7, 0x3d, 0xb6, 0x31, 0xf0, 0x27, 0x93, 0xfe, 0x14, 0xcf, 0xf6, 0xdb, 0x4b, 0x32, 0xbc, 0x18, |
| 9427 | 0xdf, 0x25, 0x42, 0x4b, 0x70, 0xe8, 0xf7, 0xd8, 0xe6, 0x68, 0x38, 0xf6, 0xdc, 0x68, 0x34, 0xf1, |
| 9428 | 0xfc, 0xe3, 0x88, 0xfa, 0x1f, 0x05, 0x80, 0x39, 0x08, 0x02, 0x92, 0xa3, 0x7e, 0x30, 0x94, 0x24, |
| 9429 | 0xd8, 0x64, 0x2b, 0x00, 0x4c, 0x90, 0xdc, 0x64, 0xb9, 0x59, 0x30, 0xf2, 0x83, 0x51, 0xf4, 0x96, |
| 9430 | 0x3a, 0x6d, 0xf2, 0x59, 0xdf, 0x61, 0x79, 0x6c, 0x5f, 0x81, 0xea, 0xd8, 0x67, 0xcb, 0x21, 0xa0, |
| 9431 | 0xc9, 0x9b, 0x8d, 0xfe, 0x71, 0x84, 0xa7, 0x6e, 0x6c, 0xb5, 0x6d, 0xf8, 0xc7, 0x11, 0x3f, 0x6e, |
| 9432 | 0xef, 0xb0, 0x3c, 0xa0, 0x70, 0xbb, 0xc4, 0x66, 0x1b, 0xd0, 0xee, 0xf2, 0x8c, 0x2a, 0xfb, 0x9d, |
| 9433 | 0x05, 0xb5, 0xdf, 0xf9, 0x57, 0xd8, 0x1a, 0xef, 0xc0, 0xf0, 0xf3, 0x6c, 0xe1, 0xe1, 0xb5, 0xe5, |
| 9434 | 0xfd, 0x19, 0x0b, 0x89, 0xf4, 0xa7, 0x6c, 0x53, 0x59, 0xf0, 0xb0, 0xb8, 0xc5, 0x1d, 0xec, 0xd6, |
| 9435 | 0x59, 0xb1, 0x66, 0x25, 0x38, 0x4a, 0x3f, 0x4e, 0x61, 0xe9, 0x73, 0x70, 0x3c, 0xf8, 0xc2, 0x8b, |
| 9436 | 0x60, 0x71, 0xdf, 0x78, 0xa3, 0xc3, 0x23, 0xb1, 0x83, 0xd1, 0x13, 0x14, 0x59, 0x6f, 0x78, 0x63, |
| 9437 | 0x88, 0x4f, 0x13, 0xb7, 0xb1, 0x3c, 0x87, 0xf0, 0x89, 0xde, 0x61, 0x05, 0x44, 0xe3, 0x54, 0x71, |
| 9438 | 0x75, 0x91, 0x03, 0x27, 0xfb, 0x40, 0x4d, 0x49, 0xe7, 0x0b, 0x82, 0xff, 0x4c, 0xcd, 0x23, 0xdc, |
| 9439 | 0x76, 0xc0, 0xf3, 0xbe, 0x1f, 0x7b, 0x09, 0x96, 0x66, 0x8b, 0x79, 0x49, 0x12, 0x2f, 0xba, 0xc9, |
| 9440 | 0xfd, 0x44, 0x9b, 0x7f, 0x67, 0x05, 0xab, 0x52, 0xd4, 0xa9, 0x5b, 0x5e, 0x26, 0xb1, 0xe5, 0xc1, |
| 9441 | 0x74, 0xd0, 0x60, 0xab, 0xa7, 0x83, 0x78, 0x4b, 0xd0, 0x95, 0x7e, 0x27, 0xc5, 0xb6, 0x79, 0x47, |
| 9442 | 0xb0, 0x0f, 0xcf, 0x50, 0x2f, 0x24, 0xdd, 0x2a, 0x35, 0xe7, 0x56, 0xd7, 0xd9, 0xc6, 0x68, 0xaa, |
| 9443 | 0x9a, 0x7b, 0x7d, 0x34, 0xe5, 0xb6, 0x56, 0x4c, 0x99, 0x39, 0x9f, 0x29, 0x65, 0x5c, 0x67, 0xd5, |
| 9444 | 0xb8, 0x26, 0xf3, 0x92, 0x3e, 0xa3, 0xe9, 0xd9, 0xea, 0xfc, 0xaa, 0xec, 0x98, 0xa6, 0x57, 0x04, |
| 9445 | 0xa8, 0x14, 0x34, 0xdf, 0x36, 0x3d, 0x23, 0xee, 0xe3, 0x5c, 0x92, 0x4d, 0xe4, 0x12, 0x19, 0x05, |
| 9446 | 0x6b, 0xe7, 0x89, 0x02, 0x31, 0xbd, 0x75, 0x65, 0x7a, 0xff, 0x34, 0x83, 0x45, 0x0c, 0x67, 0x0a, |
| 9447 | 0xbc, 0x89, 0x7f, 0xe2, 0xad, 0x4e, 0x5d, 0x6a, 0xec, 0xa7, 0xe7, 0x62, 0xff, 0xfb, 0x72, 0xe2, |
| 9448 | 0x19, 0x3e, 0xf1, 0x8f, 0x96, 0x67, 0x26, 0x1a, 0xe2, 0xac, 0xb9, 0x67, 0x93, 0x73, 0xbf, 0xc7, |
| 9449 | 0x36, 0x87, 0xc7, 0x41, 0x9f, 0x0a, 0xa1, 0x81, 0x48, 0x5b, 0x02, 0x66, 0x7b, 0x03, 0xd8, 0x7a, |
| 9450 | 0x24, 0xc9, 0x14, 0x68, 0x30, 0x6f, 0x49, 0xbe, 0x4e, 0xe8, 0x0d, 0x16, 0xd2, 0xdf, 0xc6, 0x97, |
| 9451 | 0xa7, 0xbf, 0xdc, 0x62, 0xfa, 0xbb, 0xc7, 0x36, 0x69, 0x01, 0x07, 0xfe, 0xf1, 0x14, 0x33, 0x59, |
| 9452 | 0xd6, 0x2a, 0x20, 0xac, 0x0a, 0x20, 0xc8, 0x01, 0x07, 0x6f, 0x23, 0x8f, 0x08, 0x18, 0x27, 0xc8, |
| 9453 | 0x03, 0x04, 0xd1, 0x72, 0xcd, 0xde, 0x9e, 0x63, 0xcd, 0x4a, 0x7f, 0x9a, 0xc6, 0x3d, 0x0e, 0xb7, |
| 9454 | 0xb3, 0x83, 0xfe, 0x74, 0x78, 0xde, 0xf7, 0x66, 0x0a, 0x87, 0x12, 0xac, 0x3a, 0xcb, 0x06, 0xfd, |
| 9455 | 0xc8, 0xa3, 0xe5, 0xe3, 0xbf, 0xb9, 0xc2, 0xc7, 0x41, 0x18, 0xb9, 0xe1, 0xe8, 0x37, 0x3c, 0x72, |
| 9456 | 0xbd, 0x3c, 0x87, 0xd8, 0xa3, 0xdf, 0xf0, 0xf4, 0x27, 0x2c, 0x3b, 0x0c, 0xfc, 0x19, 0xd5, 0x48, |
| 9457 | 0x67, 0x0e, 0x04, 0x74, 0x70, 0x7e, 0x82, 0x7f, 0xf5, 0xcf, 0x59, 0x61, 0x18, 0x0e, 0x66, 0xb0, |
| 9458 | 0xe4, 0xfd, 0xe0, 0x8b, 0x95, 0x4d, 0x64, 0x95, 0x3d, 0x26, 0x6f, 0x5c, 0xb0, 0x18, 0x3c, 0x5a, |
| 9459 | 0xfc, 0x49, 0xef, 0x2c, 0x2d, 0x96, 0x3e, 0x39, 0x4b, 0xd8, 0xb9, 0x6a, 0xa5, 0xab, 0x58, 0xf7, |
| 9460 | 0xcf, 0x4d, 0xa1, 0xf4, 0x3d, 0x2c, 0xa1, 0x96, 0xab, 0x06, 0xf6, 0x9a, 0x05, 0xde, 0xc0, 0x1d, |
| 9461 | 0x7b, 0x27, 0x9e, 0xa8, 0xdb, 0xf3, 0x00, 0x69, 0x01, 0xa0, 0x64, 0xb0, 0x9d, 0x33, 0x54, 0x39, |
| 9462 | 0x4f, 0x81, 0x51, 0xfa, 0xf7, 0x94, 0x74, 0x50, 0xc6, 0x39, 0x73, 0xba, 0x24, 0x5e, 0xcc, 0xe9, |
| 9463 | 0x72, 0x0f, 0x4d, 0xab, 0x7b, 0xa8, 0x5a, 0x25, 0x65, 0x12, 0x55, 0x92, 0xfe, 0x1d, 0xb6, 0x06, |
| 9464 | 0x9a, 0x8b, 0xb4, 0x5d, 0x3a, 0xcb, 0xd0, 0xf4, 0xda, 0x12, 0x19, 0x4a, 0xcf, 0x50, 0x73, 0x2f, |
| 9465 | 0x08, 0xfc, 0xc0, 0x9d, 0x84, 0x87, 0x4b, 0x4f, 0x06, 0x3a, 0xcb, 0xf2, 0x36, 0x21, 0x79, 0x21, |
| 9466 | 0xfc, 0x96, 0xd9, 0x29, 0xa3, 0x64, 0xa7, 0xdf, 0x4e, 0xe1, 0x42, 0xa0, 0xb4, 0x44, 0x53, 0x63, |
| 9467 | 0x95, 0xe8, 0x1b, 0x2c, 0xe7, 0x9d, 0xe2, 0xfe, 0x44, 0xe2, 0x37, 0xbc, 0xd3, 0x19, 0xef, 0x51, |
| 9468 | 0xce, 0x5b, 0x3e, 0x73, 0x46, 0x69, 0xa7, 0x6e, 0x01, 0x27, 0x14, 0x82, 0xc7, 0xe3, 0x68, 0x34, |
| 9469 | 0xeb, 0xf3, 0xf7, 0x5d, 0x3f, 0x3a, 0xf6, 0xc2, 0x48, 0x7f, 0x94, 0x08, 0xc1, 0x3b, 0x8b, 0x46, |
| 9470 | 0x92, 0x1c, 0x4a, 0x04, 0x2e, 0x5f, 0x0b, 0x9d, 0x65, 0x0f, 0xfc, 0xe1, 0x5b, 0x31, 0x7b, 0xf8, |
| 9471 | 0x5d, 0x8a, 0xc8, 0x39, 0x95, 0x71, 0x67, 0xe3, 0xb7, 0xbf, 0xec, 0x51, 0x7f, 0x2f, 0x85, 0x6f, |
| 9472 | 0x78, 0x87, 0x5e, 0x38, 0xe0, 0x2e, 0xf2, 0x3a, 0xe0, 0xbf, 0xf9, 0x78, 0x79, 0x6b, 0x63, 0xf2, |
| 9473 | 0x3a, 0xa8, 0x01, 0x0a, 0x5f, 0xc8, 0xc9, 0x17, 0x7d, 0x79, 0x6b, 0xfd, 0xe8, 0x8d, 0x40, 0x84, |
| 9474 | 0x84, 0xc0, 0xd7, 0xbc, 0xeb, 0x21, 0x22, 0x6e, 0x33, 0x16, 0x7a, 0xc1, 0xa8, 0x3f, 0x76, 0xa7, |
| 9475 | 0xc7, 0x13, 0x6e, 0xe1, 0xbc, 0x95, 0x47, 0x48, 0xe7, 0x78, 0x02, 0x7c, 0x43, 0x1c, 0x96, 0xe7, |
| 9476 | 0x8a, 0xbc, 0xb5, 0x3e, 0x9c, 0x01, 0x5f, 0xe9, 0x8f, 0x53, 0xec, 0x9a, 0xdc, 0x40, 0xc2, 0xa8, |
| 9477 | 0x1f, 0x85, 0x72, 0x05, 0xce, 0x78, 0x83, 0xad, 0xd6, 0x9b, 0xe9, 0x33, 0xea, 0xcd, 0xcc, 0x5c, |
| 9478 | 0xbd, 0xb9, 0x6a, 0xaf, 0x9d, 0xab, 0xdb, 0xd7, 0x16, 0xea, 0x76, 0x99, 0xd8, 0xd7, 0xcf, 0x93, |
| 9479 | 0xd8, 0xff, 0x28, 0x83, 0x75, 0x4e, 0x3c, 0x29, 0x7d, 0x9b, 0xa5, 0x47, 0x43, 0xfe, 0xa2, 0x25, |
| 9480 | 0x6b, 0xa5, 0x47, 0x67, 0xbe, 0x9e, 0x9f, 0xdf, 0x14, 0xd3, 0xe7, 0xd8, 0x14, 0x33, 0x4b, 0x36, |
| 9481 | 0x45, 0x75, 0x47, 0xcf, 0xce, 0xed, 0xe8, 0x5f, 0xcd, 0x79, 0x41, 0x3a, 0xde, 0x86, 0xea, 0x78, |
| 9482 | 0xb1, 0x91, 0x73, 0x09, 0x23, 0x7f, 0x85, 0xdb, 0xeb, 0xff, 0xa7, 0x83, 0xc1, 0x9f, 0xa4, 0x30, |
| 9483 | 0xdd, 0xf7, 0x0f, 0x0f, 0x03, 0xef, 0xb0, 0x1f, 0x79, 0x7f, 0x69, 0x3c, 0xf4, 0x37, 0xd9, 0x8d, |
| 9484 | 0xe5, 0x13, 0x83, 0x24, 0x34, 0xbf, 0x50, 0xa9, 0x2f, 0x5b, 0xa8, 0xf4, 0xfc, 0x42, 0xdd, 0x66, |
| 9485 | 0x8c, 0x0f, 0x8d, 0x68, 0xaa, 0x3a, 0x00, 0xc2, 0xd1, 0xa5, 0xbf, 0xc8, 0x60, 0xea, 0x47, 0xe3, |
| 9486 | 0xd1, 0x25, 0x0a, 0x77, 0x16, 0xf8, 0x33, 0x2f, 0xe0, 0xe5, 0xa6, 0x9a, 0x04, 0x17, 0x0b, 0x81, |
| 9487 | 0x45, 0x36, 0x35, 0x1b, 0xee, 0xcf, 0x2d, 0x3b, 0xf6, 0xa6, 0x3e, 0x3b, 0x8f, 0x14, 0x95, 0x8f, |
| 9488 | 0xbf, 0xba, 0x52, 0x9e, 0x75, 0x8b, 0x15, 0xa6, 0xde, 0x69, 0xa4, 0xde, 0xd3, 0x28, 0x3c, 0xbc, |
| 9489 | 0x7f, 0x1e, 0xb1, 0x0a, 0x1b, 0x94, 0x3e, 0xf0, 0x48, 0xb7, 0x3b, 0x76, 0xe7, 0xbb, 0x54, 0xdf, |
| 9490 | 0x3c, 0x8f, 0xbc, 0x25, 0xcd, 0xaa, 0xef, 0xb1, 0x8c, 0x7f, 0x3a, 0x59, 0x59, 0x87, 0x2d, 0x11, |
| 9491 | 0xe2, 0x9f, 0x4e, 0x1a, 0x17, 0x2c, 0xe0, 0x02, 0x8b, 0x2d, 0x29, 0xc0, 0xce, 0x65, 0xb1, 0x33, |
| 9492 | 0x0b, 0x31, 0xf1, 0x12, 0xa3, 0x74, 0xc8, 0x3e, 0x3c, 0x87, 0xc5, 0x17, 0x02, 0x36, 0xf5, 0x73, |
| 9493 | 0x07, 0xec, 0xe7, 0xac, 0xf4, 0xe5, 0x6b, 0xa0, 0x7f, 0xc4, 0xb6, 0xe3, 0x47, 0x77, 0x34, 0xc4, |
| 9494 | 0x91, 0xb6, 0xac, 0x4d, 0xb9, 0x32, 0xcd, 0x61, 0x58, 0xb2, 0xb1, 0x63, 0xb6, 0xda, 0xfe, 0xbf, |
| 9495 | 0x48, 0x57, 0xeb, 0x5b, 0xab, 0x1c, 0x1f, 0xd6, 0x03, 0x76, 0x49, 0xff, 0x74, 0xc2, 0x35, 0xca, |
| 9496 | 0xe0, 0x3d, 0x18, 0xff, 0x74, 0x02, 0xba, 0xfc, 0xe3, 0xd4, 0x4a, 0x0b, 0x9e, 0x59, 0x7f, 0x2e, |
| 9497 | 0x79, 0xd1, 0x93, 0x28, 0xa2, 0x32, 0xc9, 0x22, 0xea, 0x9b, 0x2c, 0x71, 0xb9, 0xc3, 0xa5, 0x6a, |
| 9498 | 0x09, 0x34, 0xd1, 0x54, 0x44, 0x0d, 0x2a, 0xa7, 0xdf, 0x4f, 0x33, 0x7d, 0x41, 0xa7, 0xf0, 0xac, |
| 9499 | 0x9c, 0x28, 0x2e, 0x88, 0xa5, 0x95, 0x0b, 0x62, 0x1f, 0xb3, 0x6d, 0xa5, 0xb3, 0x08, 0xf9, 0x2b, |
| 9500 | 0xc3, 0x93, 0xc9, 0x56, 0xdc, 0x5a, 0x84, 0x5c, 0xae, 0x92, 0xf1, 0xbe, 0x25, 0xa5, 0x47, 0x49, |
| 9501 | 0xf6, 0x02, 0x80, 0xca, 0x7d, 0xa1, 0xb5, 0xc4, 0x7d, 0xa1, 0x3b, 0xac, 0x30, 0xe9, 0x9f, 0xba, |
| 9502 | 0xde, 0x34, 0x0a, 0x46, 0x5e, 0x48, 0x5b, 0x19, 0x9b, 0xf4, 0x4f, 0x4d, 0x84, 0xe8, 0xbb, 0x50, |
| 9503 | 0xf6, 0xf3, 0xf4, 0x03, 0xf8, 0x0d, 0xbe, 0x9a, 0xe7, 0x09, 0x23, 0xc8, 0x57, 0x96, 0xc2, 0x5a, |
| 9504 | 0xfa, 0x71, 0x0a, 0xfb, 0xe7, 0x48, 0x8a, 0x7b, 0xff, 0xd9, 0x7b, 0x3d, 0xb8, 0xc6, 0x89, 0x9a, |
| 9505 | 0x49, 0xb7, 0xac, 0x02, 0xc2, 0x30, 0x97, 0xde, 0x63, 0x9b, 0x63, 0xdf, 0xff, 0xe2, 0x78, 0xa6, |
| 9506 | 0x64, 0xd3, 0xac, 0x55, 0x40, 0x18, 0x92, 0x7c, 0xc8, 0xb6, 0xb8, 0xed, 0xbc, 0x21, 0xd1, 0x64, |
| 9507 | 0xa9, 0x3d, 0x8b, 0x40, 0x4c, 0xba, 0x0f, 0xb0, 0xd0, 0x92, 0x57, 0xc0, 0xe2, 0x6d, 0x6c, 0xd5, |
| 9508 | 0xbd, 0xac, 0xd2, 0x9f, 0x51, 0x1d, 0x13, 0xf3, 0xac, 0xbe, 0xc3, 0x75, 0x9b, 0xb1, 0xe0, 0x94, |
| 9509 | 0x1a, 0x20, 0xa1, 0xd8, 0x11, 0x82, 0xd3, 0x1e, 0x02, 0x00, 0x1d, 0xc5, 0x68, 0x9c, 0x43, 0x3e, |
| 9510 | 0x92, 0xe8, 0x1b, 0x2c, 0x17, 0x9c, 0xba, 0xb0, 0x81, 0x84, 0xa4, 0xfc, 0x46, 0x70, 0x5a, 0x81, |
| 9511 | 0x47, 0x6e, 0x3d, 0x81, 0xc2, 0x6d, 0x6f, 0x23, 0x22, 0x14, 0x8e, 0x09, 0xa7, 0xba, 0x99, 0x37, |
| 9512 | 0xe4, 0xab, 0xca, 0xc7, 0xac, 0x21, 0x80, 0xc6, 0x14, 0xe8, 0x0d, 0x31, 0xa6, 0x40, 0xef, 0xb0, |
| 9513 | 0x7c, 0x70, 0x8a, 0xc7, 0x8f, 0x90, 0x4a, 0x95, 0x5c, 0x70, 0x6a, 0xf2, 0x67, 0x40, 0x46, 0x12, |
| 9514 | 0x89, 0x95, 0x4a, 0x2e, 0x12, 0xc8, 0xbb, 0x6c, 0x33, 0x38, 0x75, 0x5f, 0x07, 0xfd, 0x89, 0x07, |
| 9515 | 0x24, 0x54, 0xa8, 0xb0, 0xe0, 0xb4, 0x0e, 0x20, 0x93, 0xdf, 0x5a, 0x2c, 0x04, 0xa7, 0xae, 0x7f, |
| 9516 | 0xe2, 0x05, 0x9c, 0xa0, 0x20, 0x54, 0xeb, 0x9e, 0x78, 0x01, 0xe0, 0x6f, 0x71, 0xcd, 0x07, 0xc1, |
| 9517 | 0x80, 0xa3, 0x37, 0xc5, 0xe0, 0xd5, 0x60, 0x80, 0xdc, 0x6c, 0xe0, 0x8f, 0xc7, 0xa3, 0x90, 0xea, |
| 9518 | 0x16, 0xda, 0xeb, 0x05, 0x64, 0xa1, 0x42, 0xdc, 0x3e, 0x47, 0x85, 0x78, 0x71, 0xb1, 0x42, 0x2c, |
| 9519 | 0x3d, 0xc6, 0x8e, 0x3d, 0x76, 0xf8, 0x16, 0x4a, 0x9b, 0x55, 0xef, 0xba, 0xf6, 0x31, 0xee, 0xb1, |
| 9520 | 0xa9, 0x87, 0x0e, 0xe7, 0x05, 0xff, 0xef, 0x45, 0x43, 0xe9, 0xc7, 0x69, 0x0c, 0x1d, 0x45, 0x9d, |
| 9521 | 0x33, 0xd4, 0xe0, 0xcb, 0xe7, 0xbd, 0x4e, 0xc4, 0x4d, 0x2e, 0xf0, 0x5e, 0xcb, 0xa0, 0x49, 0x68, |
| 9522 | 0x93, 0xf9, 0x32, 0x6d, 0xb2, 0xf3, 0x25, 0xcc, 0x57, 0xd5, 0x9a, 0xaa, 0xb0, 0x4d, 0xb2, 0x14, |
| 9523 | 0x9f, 0x11, 0xe5, 0x96, 0x3b, 0x2b, 0x7a, 0xa5, 0xc2, 0x9c, 0x56, 0x01, 0x9f, 0x6d, 0xe0, 0x81, |
| 9524 | 0x63, 0xdb, 0x76, 0x6c, 0x19, 0x7e, 0x78, 0xfb, 0xb2, 0x2b, 0x8c, 0x67, 0x76, 0x72, 0xd3, 0x2b, |
| 9525 | 0x3b, 0xb9, 0x99, 0x73, 0x76, 0x72, 0x4f, 0xd4, 0xa5, 0x82, 0xb4, 0xfa, 0x16, 0x34, 0x92, 0x47, |
| 9526 | 0xc9, 0xc2, 0x4a, 0x8d, 0x80, 0x04, 0xef, 0x87, 0xea, 0x0f, 0xf1, 0x0e, 0xb0, 0xa8, 0xd0, 0x6e, |
| 9527 | 0xad, 0xe0, 0xe0, 0x34, 0x78, 0x43, 0x38, 0x2c, 0xfd, 0xbd, 0x14, 0x3a, 0x1f, 0xa2, 0xe4, 0xa6, |
| 9528 | 0x73, 0x85, 0xad, 0xf1, 0xab, 0x83, 0xe2, 0x45, 0x2b, 0x7f, 0x58, 0xb8, 0x18, 0x9b, 0x5e, 0xbc, |
| 9529 | 0x18, 0x0b, 0x5e, 0x00, 0x3b, 0x03, 0x97, 0x27, 0x76, 0xdd, 0xfc, 0xa4, 0x7f, 0xca, 0xab, 0xf1, |
| 9530 | 0x50, 0x2f, 0x26, 0x7b, 0xf6, 0x5b, 0xf1, 0x4e, 0xfe, 0x1d, 0xb5, 0x13, 0xb4, 0xd8, 0x3e, 0x38, |
| 9531 | 0xe3, 0x2d, 0xd5, 0xaf, 0xe3, 0xfb, 0x5f, 0xa5, 0xcb, 0x82, 0xbe, 0x5e, 0x66, 0x97, 0xc8, 0x67, |
| 9532 | 0x39, 0x50, 0x0d, 0xa3, 0x8b, 0x88, 0xa8, 0xf4, 0xa7, 0x98, 0xcc, 0xf5, 0xaf, 0xb1, 0x8b, 0xdc, |
| 9533 | 0x79, 0x15, 0x4a, 0x8c, 0xa7, 0x2d, 0x00, 0x4b, 0xba, 0xd2, 0x1f, 0x52, 0x4c, 0xe1, 0x60, 0x32, |
| 9534 | 0xa6, 0x56, 0xa8, 0x36, 0x57, 0xb7, 0xa7, 0xe7, 0xea, 0x76, 0x18, 0x35, 0xee, 0x70, 0xab, 0x81, |
| 9535 | 0xb5, 0x85, 0xe0, 0xe6, 0x14, 0xe9, 0x4a, 0x8c, 0xab, 0x11, 0x53, 0x61, 0x74, 0x15, 0x00, 0x28, |
| 9536 | 0x68, 0xbe, 0xaa, 0xf8, 0x7a, 0xca, 0x58, 0x6c, 0x43, 0x8a, 0xae, 0x7b, 0x67, 0xb5, 0xb4, 0xd0, |
| 9537 | 0x9f, 0xf2, 0xf0, 0x1b, 0xa3, 0xeb, 0xb7, 0xb0, 0x4b, 0x8e, 0x24, 0x67, 0x5e, 0xc4, 0x57, 0x2d, |
| 9538 | 0x97, 0x5e, 0xd1, 0x54, 0xcb, 0xfc, 0xbc, 0x4d, 0xb5, 0x7f, 0x43, 0x2e, 0x8d, 0x04, 0xd2, 0xa5, |
| 9539 | 0xe9, 0x1a, 0x3a, 0xbe, 0x82, 0x4e, 0xc9, 0x6b, 0xe8, 0x6d, 0xfe, 0x0e, 0xf4, 0x36, 0x4d, 0x1a, |
| 9540 | 0x9d, 0x9e, 0xd6, 0x09, 0x20, 0xce, 0x52, 0xc7, 0xcf, 0x2c, 0x71, 0x7c, 0x92, 0x2f, 0x3a, 0x81, |
| 9541 | 0x42, 0x3e, 0xb8, 0x8e, 0x44, 0x0e, 0xfc, 0xb1, 0x1f, 0xd0, 0xca, 0x00, 0xb2, 0x0a, 0xcf, 0xa5, |
| 9542 | 0xdf, 0x54, 0x5d, 0x0a, 0x63, 0xff, 0x5b, 0xb2, 0xee, 0x4a, 0xad, 0xb8, 0x10, 0xa3, 0x5a, 0x57, |
| 9543 | 0x96, 0x65, 0x5f, 0x9a, 0x01, 0x14, 0xb7, 0x15, 0x19, 0xe0, 0x84, 0xdd, 0xe3, 0x5d, 0xc3, 0x44, |
| 9544 | 0xbf, 0x50, 0x86, 0xdf, 0xd1, 0xf2, 0x0b, 0x4f, 0xa9, 0x2f, 0xa9, 0x83, 0xe7, 0x9a, 0x89, 0xcb, |
| 9545 | 0xda, 0x95, 0x63, 0xdc, 0x2b, 0x13, 0xe3, 0xfe, 0xf2, 0x46, 0x33, 0xb1, 0x2d, 0xf9, 0xa3, 0x63, |
| 9546 | 0xef, 0x98, 0xea, 0x7c, 0x1a, 0x8b, 0x37, 0x75, 0xb0, 0xee, 0x14, 0x5e, 0x21, 0xcf, 0xcd, 0x1a, |
| 9547 | 0xcb, 0xc4, 0x17, 0x6c, 0xe0, 0x67, 0x29, 0x40, 0xa5, 0x15, 0x31, 0x93, 0xd1, 0xd4, 0xe5, 0x2f, |
| 9548 | 0x06, 0xaa, 0xac, 0xa0, 0xc8, 0xa5, 0x75, 0x5b, 0x74, 0xdb, 0x05, 0x0d, 0xb0, 0xda, 0xa5, 0x8b, |
| 9549 | 0x65, 0x4b, 0xde, 0x38, 0x2c, 0x1b, 0xb3, 0x7f, 0xfa, 0x4b, 0x1e, 0xf3, 0x9f, 0x50, 0xa3, 0x46, |
| 9550 | 0xe1, 0x4c, 0x58, 0xff, 0x2b, 0x19, 0xf8, 0x3c, 0x87, 0xab, 0x65, 0x6b, 0xf9, 0x77, 0x53, 0x98, |
| 9551 | 0x60, 0x28, 0x75, 0xf2, 0x41, 0xc0, 0x1f, 0x70, 0xb4, 0x38, 0x09, 0xf3, 0x67, 0x3c, 0x26, 0x29, |
| 9552 | 0x6d, 0x23, 0xbc, 0x3f, 0x55, 0x49, 0x9c, 0x4f, 0x56, 0x35, 0xee, 0x57, 0xe8, 0x4f, 0x47, 0x93, |
| 9553 | 0x87, 0x78, 0x3b, 0x02, 0x89, 0x0e, 0x79, 0xad, 0x01, 0x51, 0x28, 0xb7, 0xac, 0x25, 0xf7, 0xb6, |
| 9554 | 0x4a, 0x87, 0x78, 0x5e, 0x5d, 0xc2, 0x33, 0x1b, 0xbf, 0x5d, 0x7a, 0xd3, 0xeb, 0x5b, 0x6c, 0x9d, |
| 9555 | 0x53, 0x8b, 0xcf, 0x24, 0x6e, 0xaf, 0x7a, 0x49, 0xca, 0xa9, 0x2c, 0x22, 0x2e, 0x99, 0x0b, 0x97, |
| 9556 | 0xa2, 0xd0, 0x4e, 0x2b, 0x5e, 0x03, 0x48, 0xdb, 0x65, 0x12, 0xb6, 0x2b, 0xb5, 0x55, 0xe7, 0x3b, |
| 9557 | 0xdf, 0x29, 0x27, 0x21, 0x2e, 0x9d, 0x14, 0xf7, 0xe7, 0x74, 0x9a, 0x53, 0xe4, 0xfd, 0x22, 0x72, |
| 9558 | 0x12, 0x67, 0x98, 0xcc, 0xc2, 0x19, 0x46, 0x39, 0x18, 0x65, 0xe7, 0x0f, 0x46, 0x89, 0x73, 0xc8, |
| 9559 | 0xda, 0xdc, 0x39, 0x64, 0x7e, 0x0f, 0x5d, 0x3f, 0xc7, 0x1e, 0xba, 0xb1, 0xe4, 0x1c, 0x30, 0x41, |
| 9560 | 0x07, 0x0d, 0xfc, 0xb1, 0x27, 0xcd, 0xf5, 0x98, 0x65, 0xe1, 0x79, 0xe5, 0x2b, 0xc8, 0x81, 0x3f, |
| 9561 | 0x8d, 0x02, 0x7f, 0x3c, 0xf6, 0x02, 0xce, 0x67, 0x71, 0x6a, 0x18, 0xee, 0xd0, 0x9b, 0x7a, 0x34, |
| 9562 | 0x20, 0x19, 0x22, 0x6b, 0x6d, 0xc6, 0xc0, 0xe6, 0xb0, 0xf4, 0xbb, 0x14, 0x10, 0xfd, 0xf0, 0xed, |
| 9563 | 0x74, 0x20, 0x76, 0xdc, 0x8f, 0xd8, 0x76, 0x5c, 0x5b, 0xf0, 0x1e, 0x27, 0x35, 0x65, 0x44, 0x69, |
| 9564 | 0xc1, 0xbb, 0x9c, 0x9f, 0x30, 0x4d, 0xf9, 0x86, 0x49, 0xdc, 0xb2, 0x01, 0xba, 0x6d, 0x80, 0xdb, |
| 9565 | 0x1c, 0xcc, 0x29, 0xcb, 0xec, 0x52, 0xe2, 0xa5, 0x34, 0x27, 0xc5, 0xfa, 0xee, 0x22, 0x20, 0x2c, |
| 9566 | 0x84, 0xf3, 0x9b, 0x4b, 0xaf, 0xd8, 0x36, 0xdf, 0x57, 0xdb, 0xfe, 0x70, 0x6f, 0x36, 0x84, 0x4c, |
| 9567 | 0x85, 0xed, 0x7a, 0x7c, 0x2b, 0x92, 0x1e, 0xf1, 0x6f, 0x76, 0xe4, 0x2b, 0x38, 0xda, 0xad, 0x6e, |
| 9568 | 0xae, 0x7e, 0x49, 0x67, 0x61, 0x99, 0xd0, 0xf6, 0x87, 0xa5, 0x1e, 0xbb, 0xc8, 0x45, 0xf3, 0x52, |
| 9569 | 0xc3, 0xe2, 0x51, 0xf3, 0x03, 0x56, 0x50, 0xf6, 0xb5, 0x95, 0x5d, 0x2e, 0x75, 0xef, 0x63, 0x13, |
| 9570 | 0x29, 0xa3, 0xf4, 0x82, 0x5d, 0xac, 0x8f, 0xfd, 0x37, 0xbc, 0x4f, 0xb5, 0x42, 0xdb, 0xc7, 0x2c, |
| 9571 | 0x27, 0xae, 0x0a, 0x91, 0xb2, 0x37, 0x56, 0xde, 0x25, 0xb2, 0x36, 0xe0, 0x17, 0xa8, 0xea, 0xb2, |
| 9572 | 0x2b, 0x20, 0x98, 0x57, 0xbe, 0x67, 0x49, 0xff, 0x36, 0xcb, 0xcb, 0x2b, 0x26, 0x2b, 0x6d, 0x21, |
| 9573 | 0x29, 0x2c, 0x3c, 0x76, 0xc0, 0x00, 0xdf, 0x65, 0x6b, 0x30, 0x40, 0xa8, 0x3f, 0x60, 0x6b, 0xa3, |
| 9574 | 0xc8, 0x9b, 0x88, 0xb9, 0xef, 0x2c, 0x57, 0x8e, 0xb6, 0x7d, 0x4e, 0x59, 0xfa, 0x3e, 0x5b, 0xe7, |
| 9575 | 0x76, 0x0c, 0xa1, 0x68, 0x50, 0x99, 0x57, 0x19, 0x8e, 0x17, 0x26, 0x82, 0xfb, 0x29, 0x63, 0x72, |
| 9576 | 0x6a, 0xe7, 0x90, 0xa0, 0x1c, 0x6b, 0x84, 0x84, 0x11, 0x2b, 0x80, 0x84, 0xea, 0x51, 0x7f, 0x7a, |
| 9577 | 0xe8, 0x85, 0xfa, 0x37, 0xd8, 0x7a, 0xe4, 0xbb, 0xfd, 0xa1, 0xb8, 0xac, 0xa9, 0x27, 0x64, 0xf0, |
| 9578 | 0x59, 0x5a, 0x6b, 0x91, 0x6f, 0x0c, 0x87, 0xfa, 0x7d, 0x96, 0x8f, 0x7c, 0x72, 0x43, 0x32, 0xd7, |
| 9579 | 0x32, 0xea, 0x5c, 0xe4, 0xa3, 0x4b, 0x42, 0x41, 0xa8, 0x49, 0x6d, 0xc5, 0x80, 0x9f, 0xce, 0x0d, |
| 9580 | 0x78, 0x7d, 0x41, 0x04, 0x4e, 0x4e, 0x8c, 0xfa, 0x78, 0x71, 0xd4, 0x95, 0x2c, 0x72, 0x68, 0xe2, |
| 9581 | 0x3a, 0xe6, 0xeb, 0x4e, 0x1d, 0xee, 0xb3, 0xb8, 0xd0, 0x41, 0x4a, 0x36, 0xcb, 0xf5, 0x28, 0x48, |
| 9582 | 0x97, 0x39, 0x8b, 0x0c, 0xeb, 0x95, 0xce, 0x22, 0x29, 0xac, 0x9c, 0x88, 0xf6, 0xd2, 0x0b, 0x96, |
| 9583 | 0x47, 0xa1, 0xdd, 0xe3, 0x68, 0x41, 0xea, 0x77, 0x19, 0x8b, 0xef, 0x10, 0x91, 0xd8, 0x9d, 0x55, |
| 9584 | 0x62, 0xfd, 0xe3, 0xc8, 0x22, 0x25, 0xba, 0xc7, 0xb0, 0xa5, 0x15, 0xd0, 0xa8, 0xe6, 0x89, 0x37, |
| 9585 | 0x5d, 0x14, 0xfd, 0x57, 0x59, 0x41, 0xc9, 0x30, 0x2b, 0x2b, 0x53, 0x85, 0xa6, 0x71, 0xc1, 0x62, |
| 9586 | 0x71, 0xf2, 0xa9, 0x6c, 0xb0, 0x35, 0x0f, 0x24, 0x97, 0xff, 0x5b, 0x8a, 0x15, 0x24, 0xe9, 0xd4, |
| 9587 | 0xd7, 0x35, 0xb6, 0xd9, 0xad, 0xf7, 0x7a, 0x6e, 0xb3, 0xb3, 0x6f, 0xb4, 0x9a, 0x35, 0xed, 0x82, |
| 9588 | 0xae, 0xb1, 0x1c, 0x87, 0xb4, 0x8d, 0x97, 0xda, 0xbb, 0x9f, 0xbd, 0x7f, 0xbf, 0xa1, 0x5f, 0x91, |
| 9589 | 0x34, 0x6e, 0xaf, 0x6b, 0x39, 0xda, 0xff, 0x7c, 0x0f, 0x50, 0x9d, 0x31, 0x0e, 0x75, 0x8c, 0x4a, |
| 9590 | 0xcb, 0xd4, 0xfe, 0x17, 0x87, 0x5d, 0x66, 0x05, 0x0e, 0xeb, 0x74, 0xad, 0xb6, 0xd1, 0xd2, 0x7e, |
| 9591 | 0x92, 0x20, 0xac, 0xb7, 0xba, 0xdd, 0x9a, 0xf6, 0xbf, 0x39, 0x4c, 0x0c, 0x62, 0xb4, 0x5a, 0xda, |
| 9592 | 0x4f, 0x39, 0xe4, 0x3a, 0xbb, 0xc8, 0x21, 0xd5, 0x6e, 0xc7, 0xb1, 0xba, 0xad, 0x96, 0x69, 0x69, |
| 9593 | 0xff, 0x27, 0xc1, 0xde, 0xea, 0x56, 0x8d, 0x96, 0xf6, 0xb3, 0x24, 0x7b, 0xe7, 0x95, 0xf6, 0x1e, |
| 9594 | 0x20, 0xe5, 0xff, 0xb8, 0x86, 0x2f, 0x91, 0xf9, 0x5e, 0xbc, 0xcd, 0x59, 0x1c, 0xb7, 0x61, 0xb6, |
| 9595 | 0x5a, 0x5d, 0xed, 0x82, 0x7c, 0x36, 0x2d, 0xab, 0x6b, 0x69, 0x29, 0xfd, 0x2a, 0xbb, 0x84, 0xcf, |
| 9596 | 0xd5, 0x46, 0xd7, 0xb5, 0xcc, 0xe7, 0x7b, 0xa6, 0xed, 0x68, 0x69, 0xfd, 0x32, 0x57, 0x41, 0x82, |
| 9597 | 0x7b, 0xad, 0x57, 0x5a, 0x26, 0xa6, 0x7d, 0xd9, 0x33, 0xad, 0x66, 0xdb, 0xec, 0x38, 0xa6, 0xa5, |
| 9598 | 0x65, 0xf5, 0x1b, 0xec, 0x2a, 0x07, 0xd7, 0x4d, 0xc3, 0xd9, 0xb3, 0x4c, 0x5b, 0x8a, 0x59, 0xd3, |
| 9599 | 0xaf, 0xb3, 0xcb, 0xf3, 0x28, 0x10, 0xb5, 0xae, 0xef, 0xb0, 0xeb, 0x1c, 0xb1, 0x6b, 0x3a, 0x30, |
| 9600 | 0xcd, 0x7a, 0x73, 0x57, 0x72, 0x6d, 0x48, 0x81, 0x09, 0x24, 0xf0, 0xe5, 0xa4, 0x5e, 0xb6, 0x44, |
| 9601 | 0x69, 0x79, 0x5d, 0x67, 0xdb, 0x1c, 0xd8, 0x33, 0xaa, 0xcf, 0x4c, 0xc7, 0x6d, 0x76, 0x34, 0x26, |
| 9602 | 0x75, 0xad, 0xb7, 0xba, 0x2f, 0x5c, 0xcb, 0x6c, 0x77, 0xf7, 0xcd, 0x9a, 0x56, 0xd0, 0xaf, 0x30, |
| 9603 | 0x0d, 0x49, 0xbb, 0x96, 0xe3, 0xda, 0x8e, 0xe1, 0xec, 0xd9, 0xda, 0xa6, 0x94, 0x4a, 0x02, 0xba, |
| 9604 | 0x7b, 0x8e, 0xb6, 0xa5, 0x5f, 0x62, 0x5b, 0xb1, 0x84, 0x76, 0xb7, 0xa6, 0x6d, 0xcb, 0x81, 0x76, |
| 9605 | 0xad, 0xee, 0x5e, 0x8f, 0xc3, 0x2e, 0x4a, 0x32, 0x2e, 0x11, 0x40, 0x9a, 0x24, 0xe3, 0xee, 0xc0, |
| 9606 | 0x61, 0x97, 0xf4, 0x9b, 0xec, 0x1a, 0x87, 0xb5, 0xf7, 0x5a, 0x4e, 0xb3, 0x67, 0x58, 0x8e, 0x9c, |
| 9607 | 0xaf, 0xae, 0x17, 0xd9, 0x95, 0x05, 0x1c, 0x4c, 0xf7, 0xb2, 0xc4, 0x54, 0x0c, 0xcb, 0x6a, 0x9a, |
| 9608 | 0x96, 0xe4, 0xb9, 0xa2, 0x5f, 0x63, 0xfa, 0x1c, 0x06, 0x38, 0xae, 0xea, 0xf7, 0xd8, 0x6d, 0x0e, |
| 9609 | 0x7f, 0xbe, 0x67, 0xee, 0x99, 0xcb, 0xcc, 0x7b, 0x4d, 0xbf, 0xc3, 0x76, 0x56, 0x91, 0x80, 0x8c, |
| 9610 | 0xeb, 0xd2, 0x76, 0x56, 0xb7, 0x65, 0x4a, 0xbe, 0xa2, 0xb4, 0x12, 0x81, 0x81, 0xf6, 0x86, 0x9c, |
| 9611 | 0x17, 0x88, 0x31, 0xec, 0x57, 0x9d, 0xaa, 0x64, 0xb8, 0x29, 0xb5, 0x57, 0x71, 0xc0, 0xb5, 0x23, |
| 9612 | 0x2d, 0x64, 0x0b, 0x8c, 0x76, 0x4b, 0xc2, 0xda, 0xa6, 0x63, 0x5a, 0xdc, 0x6a, 0xb7, 0xcb, 0x55, |
| 9613 | 0xbc, 0x85, 0x31, 0xf7, 0x67, 0x08, 0x88, 0xb4, 0xc1, 0xd7, 0x5a, 0xc4, 0x2a, 0x0e, 0x06, 0xb0, |
| 9614 | 0x7d, 0xd3, 0xb2, 0x9b, 0xdd, 0x4e, 0xa5, 0xe9, 0xb4, 0x8d, 0x9e, 0x96, 0x2a, 0x7b, 0x58, 0xcd, |
| 9615 | 0x50, 0x65, 0x8c, 0x9d, 0x02, 0xf4, 0x83, 0xaa, 0x5b, 0xb7, 0x8c, 0x5d, 0x11, 0xa2, 0x17, 0x48, |
| 9616 | 0x2e, 0x41, 0x6b, 0x56, 0xb7, 0xa7, 0xa5, 0x68, 0xd6, 0x04, 0xb3, 0x4c, 0xc3, 0x6e, 0x6b, 0xe9, |
| 9617 | 0x24, 0x61, 0xdb, 0xb0, 0x9f, 0x69, 0x99, 0xf2, 0x53, 0x1c, 0x06, 0xdf, 0x24, 0x50, 0xd1, 0x44, |
| 9618 | 0xce, 0x51, 0x55, 0xf4, 0x24, 0xe7, 0xae, 0xba, 0x35, 0xb3, 0x67, 0x99, 0x55, 0xc3, 0x31, 0x6b, |
| 9619 | 0x42, 0xc2, 0xaf, 0xe1, 0x37, 0xd0, 0x78, 0x57, 0x9c, 0x58, 0xd5, 0x29, 0x6e, 0xb3, 0x3c, 0x82, |
| 9620 | 0x20, 0x1f, 0xfd, 0x2c, 0x15, 0x3f, 0x43, 0xea, 0x78, 0x9f, 0x2a, 0xff, 0x07, 0xaa, 0xdb, 0x12, |
| 9621 | 0x7d, 0x04, 0xcc, 0x6a, 0xaa, 0x06, 0x72, 0x46, 0xe0, 0xd8, 0x10, 0x03, 0xb6, 0x96, 0x92, 0x06, |
| 9622 | 0x41, 0x9f, 0x45, 0x68, 0x5a, 0x92, 0xca, 0x70, 0xb1, 0xb5, 0xac, 0x24, 0xc5, 0x28, 0x40, 0x68, |
| 9623 | 0x8e, 0xf4, 0xad, 0xba, 0xcd, 0x1e, 0x59, 0xe9, 0xae, 0x24, 0x44, 0x47, 0x43, 0xc2, 0xa7, 0xfa, |
| 9624 | 0x35, 0xee, 0x5d, 0x24, 0xb3, 0xd2, 0xea, 0x56, 0x9f, 0x99, 0x35, 0xed, 0x5d, 0xba, 0x7c, 0xa2, |
| 9625 | 0x7c, 0x02, 0x9f, 0x30, 0xdf, 0x12, 0xe5, 0x05, 0x7b, 0xad, 0xfb, 0xa2, 0xa3, 0xa5, 0x62, 0xba, |
| 9626 | 0x0e, 0x24, 0xab, 0xea, 0xbe, 0x96, 0x15, 0xc9, 0x9c, 0x83, 0xea, 0x2f, 0x6a, 0xda, 0x5d, 0x8a, |
| 9627 | 0x18, 0x84, 0xc4, 0x99, 0xe2, 0x69, 0xf9, 0xaf, 0xcd, 0xbd, 0x43, 0x11, 0xa6, 0xef, 0xd9, 0x8b, |
| 9628 | 0xc3, 0xda, 0x6e, 0xab, 0xd9, 0x79, 0x36, 0x37, 0xac, 0x2d, 0x67, 0x91, 0xa6, 0xf4, 0xca, 0xe9, |
| 9629 | 0xf6, 0x4d, 0x2d, 0x5b, 0xfe, 0xb3, 0x34, 0x7e, 0x78, 0xc2, 0xa5, 0xcb, 0xde, 0x11, 0x31, 0xd6, |
| 9630 | 0x95, 0x01, 0x24, 0xe8, 0xc1, 0x67, 0xed, 0x8a, 0xdb, 0xa8, 0xc5, 0xe2, 0x09, 0x54, 0xaf, 0x49, |
| 9631 | 0xbf, 0xe3, 0x20, 0x22, 0xcb, 0xce, 0xc3, 0xea, 0x35, 0x2d, 0x27, 0x66, 0x5f, 0x77, 0x1f, 0xec, |
| 9632 | 0x72, 0x2a, 0x2d, 0x09, 0xa9, 0x83, 0x3d, 0x14, 0xf1, 0x08, 0x7a, 0xaa, 0xeb, 0x02, 0xf4, 0x98, |
| 9633 | 0x40, 0xef, 0xc0, 0xff, 0x63, 0xf1, 0x04, 0x4c, 0xeb, 0x97, 0xa4, 0x34, 0x07, 0x41, 0x60, 0xf0, |
| 9634 | 0x02, 0x82, 0xba, 0x4e, 0xc3, 0xb4, 0xb4, 0x77, 0xb9, 0x98, 0xa8, 0xda, 0xed, 0xf5, 0x00, 0xa4, |
| 9635 | 0xc5, 0x44, 0xf5, 0x66, 0x05, 0x20, 0x77, 0xe3, 0x21, 0x8d, 0x3d, 0xa7, 0xdb, 0x31, 0x77, 0xb5, |
| 9636 | 0x77, 0x4f, 0xf5, 0x4b, 0x82, 0xaa, 0x67, 0xec, 0xd9, 0xa6, 0xf6, 0xee, 0x5d, 0x4a, 0xbf, 0xc6, |
| 9637 | 0x5d, 0x49, 0x80, 0x20, 0x67, 0xb4, 0xb5, 0x77, 0xef, 0xd2, 0xe5, 0x9a, 0xe2, 0x34, 0x74, 0x9d, |
| 9638 | 0x75, 0x8b, 0x47, 0x45, 0xcf, 0x72, 0x8d, 0x1a, 0xee, 0xe1, 0x9b, 0xf8, 0x58, 0x33, 0x5b, 0xa6, |
| 9639 | 0x63, 0x6a, 0xa9, 0x18, 0xd2, 0xee, 0xd6, 0x9a, 0xf5, 0x57, 0x5a, 0xba, 0xfc, 0x08, 0x5d, 0x20, |
| 9640 | 0xfe, 0xb3, 0x02, 0x64, 0xd4, 0x36, 0x77, 0xfa, 0x4e, 0xcd, 0xb0, 0x40, 0x12, 0x0a, 0x6e, 0x3b, |
| 9641 | 0x6e, 0xf7, 0x65, 0x5b, 0x4b, 0x95, 0xbf, 0x88, 0xff, 0x6e, 0x00, 0xff, 0x43, 0x00, 0x24, 0xf7, |
| 9642 | 0x65, 0xbb, 0xea, 0x76, 0x5e, 0xb6, 0xdd, 0xcf, 0xe4, 0xd8, 0x02, 0xf2, 0x40, 0x4b, 0xe9, 0x3b, |
| 9643 | 0x3c, 0xfa, 0x01, 0xd2, 0xed, 0x99, 0x1d, 0x1e, 0x81, 0x15, 0xc3, 0x6e, 0x56, 0x61, 0x32, 0xfa, |
| 9644 | 0x0d, 0xbe, 0x5b, 0x02, 0x32, 0xb1, 0xc3, 0xbe, 0x7f, 0x9f, 0x29, 0xff, 0xa3, 0x1c, 0xbb, 0xbc, |
| 9645 | 0xe4, 0x53, 0x7c, 0x72, 0xea, 0x97, 0xa0, 0x54, 0xbd, 0x22, 0xab, 0x92, 0x0b, 0x94, 0x96, 0x55, |
| 9646 | 0x78, 0xe3, 0x15, 0xe2, 0x52, 0xb4, 0x29, 0x0b, 0x5c, 0xdb, 0x74, 0x8c, 0x9a, 0xe1, 0x18, 0x5a, |
| 9647 | 0x7a, 0x4e, 0x98, 0xe9, 0x34, 0xdc, 0x9a, 0xed, 0x68, 0x99, 0x25, 0x70, 0xdb, 0xaa, 0x6a, 0xd9, |
| 9648 | 0x39, 0x41, 0x00, 0x77, 0x5e, 0xf5, 0x4c, 0xb9, 0xed, 0x0b, 0xc4, 0x7e, 0xcb, 0xe8, 0xb8, 0xfb, |
| 9649 | 0xcd, 0x9a, 0xb6, 0xbe, 0x0c, 0xd1, 0xab, 0xf6, 0xb4, 0x8d, 0xf9, 0x79, 0xf4, 0xdc, 0x9a, 0x5d, |
| 9650 | 0xed, 0x69, 0x39, 0xda, 0x8a, 0x14, 0xb8, 0x59, 0xed, 0x68, 0xf9, 0x39, 0x39, 0xcd, 0x9e, 0xdb, |
| 9651 | 0xb3, 0xba, 0x4e, 0x57, 0x63, 0x0b, 0x88, 0xfd, 0xc7, 0x5c, 0xd7, 0xc2, 0x32, 0x04, 0x4c, 0x6e, |
| 9652 | 0x73, 0x6e, 0x64, 0xa7, 0xda, 0xe3, 0x0c, 0x5b, 0x4b, 0xe0, 0x40, 0xbf, 0x3d, 0x07, 0xdf, 0xab, |
| 9653 | 0x21, 0xfd, 0xc5, 0x25, 0x70, 0xa0, 0xd7, 0xe6, 0x06, 0xb6, 0xab, 0x0e, 0x32, 0x5c, 0x5a, 0x86, |
| 9654 | 0xa8, 0xf1, 0x72, 0x60, 0x6e, 0xed, 0xaa, 0x6d, 0x50, 0x96, 0x5b, 0xf6, 0xf2, 0x72, 0x5c, 0xb5, |
| 9655 | 0x5b, 0x33, 0xb5, 0x2b, 0x73, 0xb6, 0x32, 0xac, 0x9e, 0xdb, 0xed, 0x69, 0x57, 0xe7, 0x14, 0x03, |
| 9656 | 0xb0, 0xdd, 0x33, 0xb4, 0x6b, 0x4b, 0xe0, 0x4e, 0xcf, 0xd0, 0xae, 0x2f, 0xa3, 0x6f, 0x18, 0x5a, |
| 9657 | 0x71, 0x19, 0x7d, 0xc3, 0xd0, 0x6e, 0x2c, 0x5a, 0xf6, 0x09, 0x9f, 0xe0, 0xcd, 0x65, 0x08, 0x98, |
| 9658 | 0xe0, 0xce, 0xfc, 0x24, 0x00, 0x51, 0x6f, 0x19, 0x15, 0xb3, 0xa5, 0xdd, 0x5a, 0x36, 0xc1, 0x27, |
| 9659 | 0x38, 0xf9, 0xdb, 0xcb, 0x71, 0x7c, 0xf2, 0x1f, 0xe8, 0xb7, 0xd9, 0x8d, 0x79, 0x99, 0x9d, 0x9a, |
| 9660 | 0xeb, 0x18, 0xd6, 0xae, 0xe9, 0x68, 0x77, 0x96, 0x0d, 0xd9, 0xa9, 0xb9, 0x76, 0xab, 0xa5, 0xdd, |
| 9661 | 0x5d, 0x81, 0x73, 0x5a, 0x2d, 0xed, 0x1e, 0xed, 0xd6, 0x32, 0x56, 0x7a, 0x2d, 0xdb, 0x45, 0x4d, |
| 9662 | 0x4b, 0x73, 0xf6, 0xe0, 0x28, 0xa7, 0xaa, 0x7d, 0x38, 0x1f, 0x5e, 0x00, 0xaf, 0x74, 0x6d, 0xed, |
| 9663 | 0xa3, 0x39, 0x44, 0xaf, 0x52, 0x71, 0x9b, 0x76, 0xb3, 0xa6, 0x7d, 0x4c, 0xa5, 0x8b, 0x74, 0xb5, |
| 9664 | 0xbd, 0x4e, 0xc7, 0x6c, 0xb9, 0xcd, 0x9a, 0xf6, 0xb5, 0x65, 0xaa, 0x99, 0x2f, 0x9d, 0x46, 0xcd, |
| 9665 | 0xd2, 0xbe, 0x5e, 0x7e, 0x84, 0xa7, 0x17, 0xfe, 0xe1, 0xf8, 0x68, 0xa8, 0x5f, 0xe4, 0x49, 0x73, |
| 9666 | 0xbf, 0x59, 0x73, 0x3b, 0xdd, 0x8e, 0xc9, 0xb7, 0xac, 0x6d, 0x02, 0xf4, 0x2c, 0xd3, 0x36, 0x3b, |
| 9667 | 0x8e, 0xf6, 0xee, 0x6e, 0xf9, 0x3f, 0xa5, 0xb0, 0x8f, 0x37, 0x9a, 0x9d, 0x3c, 0xa1, 0x0f, 0x9d, |
| 9668 | 0xc5, 0x6d, 0x54, 0xa0, 0x6e, 0x9a, 0x8d, 0x85, 0x3d, 0x09, 0x60, 0x20, 0xf2, 0x25, 0xe4, 0x0e, |
| 9669 | 0xdc, 0xdf, 0x00, 0x64, 0xda, 0x3d, 0x2d, 0x4d, 0xa3, 0xc2, 0xb3, 0xb1, 0xe7, 0x34, 0xb4, 0xac, |
| 9670 | 0x02, 0xa8, 0x41, 0x11, 0x98, 0x53, 0x00, 0x50, 0x2c, 0x69, 0x9a, 0x22, 0xd5, 0xea, 0xee, 0x41, |
| 9671 | 0x7e, 0xbb, 0xab, 0x48, 0x6d, 0x74, 0x7b, 0xda, 0x53, 0xda, 0x39, 0xe0, 0x79, 0xaf, 0x63, 0x99, |
| 9672 | 0x3d, 0xd8, 0x86, 0x54, 0x90, 0x6d, 0x3e, 0x87, 0x82, 0xe1, 0xa7, 0xe9, 0xc4, 0x97, 0xa6, 0xf4, |
| 9673 | 0xc7, 0xaf, 0x80, 0xcc, 0xe0, 0x35, 0x7c, 0x6f, 0x0f, 0x32, 0x21, 0x2e, 0x93, 0x01, 0x45, 0x6e, |
| 9674 | 0xef, 0x95, 0xeb, 0x38, 0x2d, 0x5e, 0xde, 0x17, 0x28, 0x5a, 0x54, 0x78, 0xb3, 0x23, 0xd3, 0x81, |
| 9675 | 0x81, 0xa5, 0x29, 0x2e, 0xaa, 0xd3, 0x92, 0xe1, 0x6d, 0x38, 0x6e, 0xcd, 0xac, 0xc6, 0x70, 0x8d, |
| 9676 | 0x0a, 0x03, 0xc3, 0x71, 0x7b, 0x7b, 0x76, 0x83, 0x67, 0x34, 0xed, 0x12, 0x19, 0x13, 0x80, 0xdd, |
| 9677 | 0x1e, 0xc2, 0xf4, 0x39, 0x42, 0x90, 0xa0, 0x5d, 0x4e, 0x12, 0x72, 0xd8, 0x95, 0x98, 0x10, 0x34, |
| 9678 | 0xe0, 0xa5, 0x93, 0x76, 0x95, 0xac, 0x68, 0xd0, 0xd1, 0x43, 0xbb, 0x46, 0xb5, 0x15, 0x51, 0x75, |
| 9679 | 0x5e, 0x70, 0x6d, 0xae, 0xc7, 0x50, 0xd0, 0x92, 0xa0, 0xc5, 0xa4, 0xc4, 0x7a, 0xd3, 0x6c, 0xd5, |
| 9680 | 0xb4, 0x1b, 0xca, 0xd0, 0xa0, 0x4f, 0xaf, 0x52, 0xd1, 0x6e, 0xd2, 0xd2, 0x90, 0x3a, 0x00, 0xda, |
| 9681 | 0xd1, 0x8b, 0x62, 0xde, 0x0b, 0x5b, 0xd2, 0x3e, 0xde, 0x57, 0x51, 0xfa, 0x8c, 0xf4, 0x05, 0xb1, |
| 9682 | 0xa8, 0x8e, 0xdb, 0xad, 0xc4, 0x51, 0x9a, 0x11, 0x0c, 0x8a, 0xd7, 0xff, 0xfe, 0x3e, 0x43, 0x5b, |
| 9683 | 0x3a, 0x40, 0x3a, 0x5d, 0xb7, 0xb2, 0x57, 0xaf, 0x93, 0xdc, 0xff, 0x2a, 0x5c, 0x54, 0xf9, 0x4a, |
| 9684 | 0x90, 0xaf, 0x2d, 0x39, 0x8e, 0x5a, 0x11, 0xe3, 0x7c, 0x9b, 0x8e, 0xbb, 0xdb, 0x75, 0xba, 0x74, |
| 9685 | 0xfc, 0x4e, 0x51, 0x3c, 0x35, 0x1d, 0xf7, 0x85, 0xd5, 0x74, 0x4c, 0x75, 0x87, 0xc3, 0x10, 0x94, |
| 9686 | 0x18, 0xa3, 0xea, 0x34, 0xbb, 0x1d, 0x5b, 0xcb, 0xc4, 0x08, 0xa3, 0xd7, 0x6b, 0xbd, 0x92, 0x88, |
| 9687 | 0x6c, 0x8c, 0xa8, 0xb6, 0x4c, 0xc3, 0x92, 0x88, 0x35, 0xe1, 0xd7, 0x74, 0x5e, 0xd1, 0xd6, 0xc9, |
| 9688 | 0x52, 0xcd, 0x25, 0x96, 0xfa, 0x9b, 0x38, 0xa1, 0xf9, 0xaf, 0x03, 0xa9, 0xa0, 0xa8, 0x57, 0x13, |
| 9689 | 0x95, 0x4a, 0xbd, 0x2a, 0xea, 0x12, 0xb1, 0x53, 0x4b, 0x88, 0x6b, 0x3b, 0x56, 0xb3, 0x0a, 0xc7, |
| 9690 | 0x73, 0x49, 0x4a, 0x45, 0x4d, 0x26, 0x26, 0x45, 0x88, 0x20, 0xcd, 0x96, 0xff, 0x39, 0xbd, 0xbe, |
| 9691 | 0x94, 0xa3, 0x63, 0xbc, 0xa3, 0x31, 0xeb, 0x6a, 0x09, 0x4a, 0x22, 0xea, 0xae, 0x6d, 0x76, 0x6a, |
| 9692 | 0xf2, 0xe0, 0x1c, 0xab, 0x51, 0x77, 0xab, 0x0d, 0xb3, 0xfa, 0xcc, 0xed, 0xee, 0x9b, 0x56, 0xcb, |
| 9693 | 0xe8, 0xc9, 0x82, 0xa1, 0x5e, 0x77, 0x21, 0xc1, 0x40, 0x24, 0xed, 0x75, 0x9c, 0xd8, 0x68, 0xf5, |
| 9694 | 0x3a, 0x2f, 0xb5, 0x9f, 0x49, 0x44, 0x2e, 0x81, 0xa8, 0xbc, 0x92, 0x08, 0xad, 0x6c, 0xe3, 0xd1, |
| 9695 | 0x07, 0xbf, 0xe3, 0xc6, 0xd9, 0xed, 0x2e, 0x34, 0x62, 0x76, 0x95, 0x46, 0x8c, 0x80, 0xc4, 0x5d, |
| 9696 | 0x13, 0x09, 0x91, 0x8d, 0x90, 0xcf, 0xf1, 0x25, 0xdd, 0xc2, 0xf7, 0x76, 0x64, 0xf8, 0xdd, 0xa4, |
| 9697 | 0xe1, 0x77, 0x15, 0xc3, 0x4b, 0x08, 0xd9, 0x37, 0x5d, 0xb6, 0xd5, 0x1b, 0x1e, 0xdc, 0x1d, 0x49, |
| 9698 | 0x08, 0x9e, 0xbe, 0xa4, 0x10, 0x08, 0xb2, 0x96, 0x59, 0x85, 0x5c, 0x89, 0x61, 0xb0, 0x0b, 0xfe, |
| 9699 | 0x5a, 0x6b, 0x5a, 0x26, 0x5f, 0xb8, 0x4d, 0x54, 0xd2, 0x71, 0xeb, 0x75, 0x2d, 0x53, 0xee, 0xa1, |
| 9700 | 0x63, 0xcc, 0x7f, 0x95, 0x46, 0x8b, 0x63, 0x81, 0x95, 0xda, 0x86, 0x53, 0x6d, 0x68, 0x17, 0xc8, |
| 9701 | 0xdd, 0x84, 0x03, 0xca, 0x03, 0x9b, 0x25, 0x8c, 0xc4, 0x43, 0x3d, 0x5d, 0xfe, 0x07, 0x29, 0x7c, |
| 9702 | 0xc1, 0xb2, 0xe4, 0x7b, 0x2f, 0x5a, 0x2d, 0xcb, 0x72, 0x9b, 0xb5, 0x96, 0xe9, 0x3a, 0xcd, 0xb6, |
| 9703 | 0xd9, 0x55, 0x32, 0xa4, 0x65, 0xb9, 0x0d, 0xc3, 0xaa, 0x49, 0xb8, 0x30, 0x82, 0x25, 0x2b, 0xe7, |
| 9704 | 0x74, 0x4c, 0x89, 0x47, 0x3f, 0xe9, 0x7c, 0x12, 0x8e, 0x67, 0x77, 0x82, 0x67, 0xcb, 0x53, 0xfa, |
| 9705 | 0xa3, 0x5e, 0xfc, 0x9d, 0x38, 0x95, 0xcf, 0xee, 0x0f, 0x4d, 0xab, 0x2b, 0x97, 0xb4, 0x8d, 0x4b, |
| 9706 | 0xfa, 0xee, 0xa7, 0xef, 0x37, 0xf4, 0xab, 0x7c, 0xd6, 0x6d, 0xd7, 0x6e, 0x75, 0x5f, 0xf4, 0x0c, |
| 9707 | 0xa7, 0x41, 0x4d, 0x2f, 0xec, 0x86, 0xb5, 0xd5, 0x6e, 0x98, 0xda, 0xf9, 0x6a, 0xe3, 0xe9, 0x97, |
| 9708 | 0x2f, 0xf8, 0x64, 0xe1, 0x8b, 0x22, 0xb5, 0x98, 0xaf, 0xa8, 0x99, 0x03, 0xed, 0x09, 0x30, 0x3a, |
| 9709 | 0xe7, 0xe3, 0x1c, 0x38, 0xc0, 0xae, 0xc2, 0x19, 0xb6, 0x6d, 0x58, 0xcf, 0x34, 0x51, 0x94, 0x03, |
| 9710 | 0x7c, 0x21, 0xae, 0x3f, 0x57, 0x3f, 0x0f, 0x5b, 0xf4, 0xaf, 0x76, 0xd2, 0xbf, 0xda, 0x0b, 0xfe, |
| 9711 | 0xd5, 0x56, 0xfc, 0xeb, 0x50, 0x7d, 0x69, 0xaf, 0x86, 0x68, 0xbb, 0x9e, 0xe8, 0x00, 0x30, 0x04, |
| 9712 | 0x3d, 0xab, 0xf4, 0xe0, 0xd4, 0x4e, 0xb3, 0xa8, 0x43, 0x94, 0xf5, 0x6c, 0xb9, 0x1f, 0xb7, 0xeb, |
| 9713 | 0x6e, 0x65, 0xcf, 0xb2, 0x1d, 0xb9, 0x1f, 0xb7, 0xeb, 0xe2, 0x9c, 0x5e, 0xfe, 0x17, 0x74, 0x67, |
| 9714 | 0x10, 0x3f, 0xeb, 0xe1, 0xf6, 0xc1, 0xa9, 0x9b, 0xd4, 0x24, 0x74, 0xeb, 0x46, 0xb3, 0x65, 0xc2, |
| 9715 | 0x68, 0xb8, 0x45, 0x9a, 0x8e, 0x5b, 0x31, 0x6a, 0xb2, 0xad, 0x23, 0x3c, 0x8f, 0xc0, 0xe4, 0x8f, |
| 9716 | 0x69, 0xaa, 0x94, 0x08, 0xda, 0xec, 0xd8, 0x8e, 0xb5, 0x87, 0xa8, 0x0c, 0xed, 0x3f, 0x84, 0x42, |
| 9717 | 0x87, 0xce, 0xc6, 0xf4, 0xa2, 0xbf, 0x26, 0xc6, 0x5d, 0xa3, 0xaa, 0xc7, 0x54, 0xfa, 0x6c, 0x02, |
| 9718 | 0xb7, 0x1e, 0xb3, 0x89, 0x7e, 0x9b, 0x40, 0x6d, 0xc4, 0x6c, 0xb2, 0xef, 0x26, 0x70, 0xb9, 0x98, |
| 9719 | 0x0d, 0x7b, 0x11, 0xdd, 0x9e, 0x40, 0xe5, 0xf5, 0x0f, 0xd8, 0x4d, 0x44, 0xd9, 0x2f, 0x9a, 0x4e, |
| 9720 | 0xb5, 0x21, 0x9a, 0x61, 0x84, 0x67, 0x54, 0x59, 0x9a, 0xc9, 0x76, 0x98, 0x40, 0x17, 0xe2, 0x51, |
| 9721 | 0x65, 0xdf, 0x4a, 0xe0, 0x36, 0xa9, 0xd3, 0x26, 0x35, 0x92, 0x5d, 0x50, 0x22, 0xd8, 0xa2, 0x3d, |
| 9722 | 0xc3, 0x5c, 0xe2, 0x5b, 0x15, 0xf5, 0x4f, 0x76, 0xbe, 0xee, 0x8f, 0xc6, 0xfc, 0xee, 0x28, 0xff, |
| 9723 | 0x8b, 0x57, 0xe0, 0x8f, 0x8d, 0x7a, 0xd5, 0x6d, 0x76, 0xaa, 0xdd, 0x76, 0xcf, 0x70, 0x9a, 0xb0, |
| 9724 | 0xeb, 0x09, 0x2f, 0x03, 0x84, 0xd9, 0x33, 0x2d, 0x38, 0xa1, 0xfe, 0x45, 0x1a, 0xf3, 0xcb, 0x41, |
| 9725 | 0x7f, 0x28, 0x5e, 0x1b, 0xa2, 0x0c, 0x5c, 0xf0, 0x8a, 0x55, 0xe5, 0x2b, 0x42, 0xfd, 0x32, 0xd9, |
| 9726 | 0xe5, 0x10, 0x70, 0x5e, 0x75, 0x8b, 0xdd, 0x54, 0x00, 0x65, 0x8f, 0x52, 0x4b, 0x53, 0x13, 0x57, |
| 9727 | 0x60, 0x12, 0x53, 0x10, 0x1b, 0x92, 0x82, 0x44, 0x79, 0xa2, 0x33, 0x03, 0x08, 0xd4, 0x73, 0x8d, |
| 9728 | 0xe2, 0x53, 0x90, 0xb6, 0xcc, 0x8e, 0x3c, 0x29, 0x72, 0x18, 0x2f, 0x0d, 0x5c, 0xb3, 0xdd, 0x73, |
| 9729 | 0x5e, 0xc9, 0xe6, 0xb0, 0x82, 0xd8, 0xeb, 0x3c, 0xeb, 0x74, 0x5f, 0x74, 0xe4, 0xee, 0x22, 0xd5, |
| 9730 | 0xe7, 0x36, 0x6f, 0xc2, 0x12, 0xc7, 0xf3, 0x6a, 0xda, 0xae, 0xdd, 0x32, 0xf6, 0x4d, 0x8d, 0xcd, |
| 9731 | 0x4d, 0x96, 0x9f, 0x8d, 0x45, 0x55, 0x28, 0x81, 0xbc, 0x4d, 0xa4, 0x6d, 0xea, 0x1f, 0xb1, 0xbb, |
| 9732 | 0x04, 0x8e, 0x7b, 0xb4, 0x34, 0x3c, 0xec, 0x86, 0xe0, 0xc2, 0xda, 0x56, 0xf9, 0x0f, 0x32, 0x98, |
| 9733 | 0x7f, 0xc0, 0xde, 0x54, 0x94, 0x72, 0x73, 0xd3, 0x48, 0x86, 0x62, 0x56, 0xd1, 0x6b, 0x14, 0x40, |
| 9734 | 0x98, 0x74, 0x4a, 0x18, 0xd4, 0x58, 0x62, 0x50, 0x51, 0xbb, 0x28, 0x48, 0x94, 0x94, 0x99, 0x43, |
| 9735 | 0x74, 0xf7, 0x30, 0x36, 0xe4, 0x36, 0x2c, 0x10, 0x86, 0xb5, 0xbb, 0x07, 0xc2, 0xb4, 0x35, 0xb1, |
| 9736 | 0x04, 0x86, 0x58, 0x82, 0x75, 0x45, 0x45, 0xa7, 0x0b, 0x9b, 0x4e, 0x07, 0x4c, 0x8d, 0x81, 0x2e, |
| 9737 | 0xf8, 0xb1, 0x14, 0xcd, 0x09, 0x7f, 0x50, 0x86, 0xc3, 0x9a, 0x34, 0x4f, 0x91, 0x02, 0x18, 0x1e, |
| 9738 | 0xe4, 0xdc, 0x41, 0x3b, 0x76, 0xd3, 0x76, 0x60, 0x54, 0xa6, 0xdf, 0x62, 0x45, 0x42, 0xef, 0x75, |
| 9739 | 0xec, 0xbd, 0x1e, 0x28, 0x69, 0xd6, 0xdc, 0xae, 0x55, 0x33, 0x2d, 0xad, 0x30, 0x67, 0x0f, 0xc7, |
| 9740 | 0xd8, 0xd5, 0x36, 0xe7, 0x26, 0x00, 0x25, 0x06, 0x9f, 0xb2, 0x38, 0x9c, 0xab, 0x08, 0x30, 0xe0, |
| 9741 | 0xf6, 0x9c, 0x01, 0x79, 0x77, 0x59, 0xcc, 0xfa, 0x62, 0xf9, 0x27, 0x29, 0x56, 0x14, 0xcb, 0xa3, |
| 9742 | 0x16, 0x97, 0x4a, 0x58, 0x55, 0x9a, 0x55, 0xe1, 0x4f, 0x3c, 0x87, 0xc9, 0x24, 0x88, 0x08, 0x7b, |
| 9743 | 0xaf, 0x87, 0xe0, 0x94, 0x42, 0x9f, 0xf0, 0x35, 0x91, 0x07, 0x63, 0x7a, 0x59, 0x7d, 0x66, 0x28, |
| 9744 | 0xd3, 0x2c, 0xa2, 0xb0, 0xff, 0x9b, 0x15, 0xda, 0x37, 0x97, 0x2c, 0xff, 0xda, 0xdc, 0x80, 0x72, |
| 9745 | 0xf9, 0xd7, 0x85, 0xe1, 0x9a, 0xb1, 0x23, 0x6d, 0x88, 0x05, 0x6e, 0x8a, 0x05, 0xce, 0x95, 0xff, |
| 9746 | 0x25, 0x7d, 0x0d, 0x00, 0x93, 0xc7, 0x3e, 0x97, 0xea, 0x9a, 0xed, 0x65, 0xae, 0xd9, 0x56, 0x5d, |
| 9747 | 0x33, 0x09, 0x83, 0xe5, 0x91, 0xf1, 0x4f, 0xb0, 0x5a, 0x0b, 0xb6, 0x3b, 0x8b, 0x9a, 0xd9, 0x73, |
| 9748 | 0xc8, 0xce, 0x0b, 0x05, 0x99, 0x15, 0x3e, 0x44, 0xc8, 0x17, 0xcd, 0x56, 0xad, 0x6a, 0x58, 0x35, |
| 9749 | 0x28, 0xab, 0xc9, 0xe7, 0x08, 0x83, 0x87, 0x95, 0xf5, 0x39, 0xe8, 0xbe, 0xd1, 0xda, 0x33, 0xb5, |
| 9750 | 0x8d, 0x39, 0xe5, 0xb9, 0x68, 0xd1, 0x31, 0x12, 0xc0, 0x9e, 0x65, 0x5a, 0xe6, 0x73, 0x2d, 0xaf, |
| 9751 | 0x48, 0xa8, 0xed, 0xf5, 0x48, 0x2e, 0x13, 0x76, 0x6a, 0x0b, 0x3b, 0x15, 0xca, 0x7f, 0x4c, 0x4e, |
| 9752 | 0x12, 0x97, 0xcb, 0x4a, 0xee, 0xc5, 0x01, 0xeb, 0xed, 0xba, 0xf4, 0x12, 0x59, 0x3e, 0x71, 0x20, |
| 9753 | 0xa5, 0xf9, 0xbd, 0x56, 0x4b, 0xe6, 0x4d, 0x0e, 0x9f, 0x73, 0x11, 0x45, 0x8c, 0xa8, 0xa5, 0x33, |
| 9754 | 0xa2, 0x20, 0x6f, 0xcb, 0xfc, 0x2d, 0xcb, 0x68, 0x29, 0x81, 0x2a, 0xb3, 0xb5, 0x79, 0x44, 0xb5, |
| 9755 | 0xdb, 0x6e, 0x1b, 0x1d, 0xb0, 0x13, 0x4e, 0x5e, 0x22, 0xea, 0x2d, 0x63, 0xd7, 0xd6, 0x36, 0xca, |
| 9756 | 0x7f, 0x98, 0xc1, 0xcf, 0xc9, 0xe2, 0x4a, 0x58, 0x9d, 0x15, 0x2a, 0xba, 0x0b, 0x4c, 0xb8, 0xe1, |
| 9757 | 0x9a, 0x2f, 0x9b, 0xb6, 0x63, 0xcb, 0x77, 0x15, 0x1c, 0x23, 0xca, 0x4c, 0x8c, 0xf5, 0x14, 0xf9, |
| 9758 | 0x32, 0x47, 0xbd, 0x30, 0x9b, 0xbb, 0x0d, 0x47, 0x0d, 0x6a, 0x19, 0x06, 0x1c, 0x0f, 0x29, 0xa2, |
| 9759 | 0x5b, 0x47, 0x4e, 0x38, 0x6b, 0xe1, 0x8e, 0xa9, 0xa2, 0x2a, 0x7b, 0x90, 0x67, 0xe1, 0xe4, 0x70, |
| 9760 | 0x97, 0xdd, 0x12, 0xb8, 0x6a, 0xc3, 0x68, 0x76, 0x9a, 0x9d, 0xdd, 0x84, 0xe0, 0x35, 0x4a, 0x32, |
| 9761 | 0x38, 0x30, 0xcf, 0x32, 0x2a, 0x7a, 0x5d, 0x94, 0xe1, 0x80, 0x6e, 0x75, 0xbb, 0x3d, 0xb9, 0x61, |
| 9762 | 0xec, 0x2a, 0x8b, 0x46, 0x93, 0xc8, 0xa9, 0x28, 0x3e, 0x9a, 0x59, 0x93, 0xb9, 0x0c, 0xfd, 0x65, |
| 9763 | 0x57, 0xda, 0x1e, 0x22, 0x43, 0xb4, 0x17, 0x77, 0xe7, 0x0d, 0x5f, 0x20, 0x27, 0x90, 0x08, 0x9c, |
| 9764 | 0x90, 0xb6, 0x49, 0x0b, 0x22, 0xe1, 0x5c, 0x63, 0xf9, 0x6e, 0x71, 0x37, 0x5e, 0xec, 0xed, 0xf2, |
| 9765 | 0xef, 0x91, 0xe3, 0x89, 0xbf, 0xc6, 0x9b, 0x58, 0x22, 0xd4, 0xa6, 0x27, 0xc4, 0x50, 0x93, 0x17, |
| 9766 | 0xb5, 0x91, 0xd0, 0x06, 0xc6, 0x98, 0xac, 0x65, 0x7b, 0xb1, 0x9a, 0xfc, 0x45, 0xa9, 0x58, 0x14, |
| 9767 | 0x09, 0x37, 0x6a, 0xfb, 0xa6, 0xe5, 0x34, 0x6d, 0x53, 0xba, 0x5f, 0x4f, 0x71, 0xbf, 0xf2, 0x5f, |
| 9768 | 0x47, 0xa7, 0x91, 0x7f, 0xb2, 0x3a, 0xa1, 0x11, 0xbd, 0x23, 0x4c, 0x78, 0xb7, 0x0c, 0x06, 0x67, |
| 9769 | 0x6e, 0x64, 0xf1, 0x2e, 0xc3, 0x89, 0xc5, 0xa7, 0xcb, 0x3f, 0xc4, 0xf9, 0xe2, 0x95, 0x2c, 0x7f, |
| 9770 | 0xb6, 0x64, 0xbe, 0xcf, 0xbb, 0xc9, 0xf9, 0xe2, 0x98, 0x12, 0x8a, 0x1b, 0x92, 0x90, 0xcd, 0xc1, |
| 9771 | 0x42, 0xf6, 0xdf, 0x60, 0xb7, 0x17, 0xfe, 0x78, 0xf7, 0x12, 0xf5, 0xed, 0x6a, 0x22, 0x50, 0x44, |
| 9772 | 0x01, 0x24, 0xc1, 0x98, 0xfa, 0x50, 0x3e, 0x07, 0xc6, 0xba, 0xdf, 0x9a, 0xbf, 0x90, 0x95, 0x10, |
| 9773 | 0x4f, 0x07, 0x38, 0xab, 0x5e, 0x85, 0xba, 0x9b, 0x5b, 0x46, 0x01, 0x71, 0x8f, 0x8d, 0x8f, 0x70, |
| 9774 | 0x16, 0x8d, 0x06, 0xf5, 0xa5, 0x96, 0x2e, 0xff, 0x51, 0x1a, 0xed, 0x1e, 0x1f, 0x2b, 0x16, 0x53, |
| 9775 | 0x50, 0x3b, 0x99, 0x82, 0x30, 0x82, 0x39, 0x10, 0xab, 0x50, 0x8a, 0xe0, 0x14, 0xad, 0x78, 0x5b, |
| 9776 | 0x8d, 0x60, 0xec, 0x57, 0xa4, 0x55, 0x94, 0x88, 0x0b, 0x44, 0x89, 0x8a, 0xa2, 0x3d, 0xef, 0xe6, |
| 9777 | 0x59, 0x32, 0x5b, 0x3b, 0x99, 0x5f, 0x44, 0xd2, 0x96, 0x60, 0xcb, 0x70, 0x4c, 0x99, 0x8c, 0xda, |
| 9778 | 0x71, 0x4c, 0x58, 0xfc, 0xed, 0xfe, 0x1c, 0x71, 0x05, 0x24, 0xe7, 0x68, 0xbb, 0x48, 0x40, 0xdd, |
| 9779 | 0x9a, 0xe9, 0x18, 0xcd, 0x96, 0x96, 0x57, 0x55, 0xa5, 0x8c, 0xc1, 0x35, 0xb5, 0x35, 0xa6, 0x4e, |
| 9780 | 0x5d, 0x24, 0x13, 0xa3, 0x53, 0xb3, 0xb5, 0x42, 0xf9, 0x5f, 0xa5, 0x96, 0x7c, 0x20, 0x18, 0x2e, |
| 9781 | 0x73, 0xe2, 0xfa, 0x9c, 0x13, 0xd3, 0x7b, 0x6b, 0x01, 0x96, 0x3b, 0xb8, 0x58, 0xb1, 0x98, 0x01, |
| 9782 | 0xb2, 0x82, 0xbc, 0x2c, 0x51, 0x57, 0xbc, 0x26, 0x33, 0x2f, 0x44, 0xd6, 0x21, 0x59, 0x11, 0x0b, |
| 9783 | 0x75, 0xe9, 0x4f, 0x6b, 0xe5, 0xff, 0x42, 0xbb, 0x73, 0xf2, 0xcf, 0x07, 0x88, 0xe3, 0x1e, 0x9c, |
| 9784 | 0xb4, 0xed, 0x6a, 0x7c, 0xfc, 0xe3, 0xf7, 0x47, 0x5e, 0xc8, 0x77, 0xd3, 0xed, 0x9e, 0x6b, 0xec, |
| 9785 | 0xee, 0x5a, 0xe6, 0xae, 0xc1, 0x0f, 0xe9, 0x74, 0xe2, 0x13, 0xb7, 0x51, 0x32, 0xc2, 0xe0, 0xbd, |
| 9786 | 0xe4, 0x5b, 0x5c, 0x49, 0x86, 0x61, 0xb4, 0x16, 0x03, 0x30, 0x05, 0xae, 0xc7, 0x7c, 0xe2, 0xb4, |
| 9787 | 0x6f, 0x57, 0xb5, 0x0d, 0x61, 0x70, 0x01, 0x15, 0x67, 0x1a, 0xd9, 0xe9, 0x6d, 0xf7, 0xc8, 0x8d, |
| 9788 | 0xf2, 0xe2, 0x48, 0x4d, 0x00, 0x91, 0x0c, 0x58, 0x2c, 0x02, 0xe1, 0x52, 0x44, 0x21, 0xc6, 0x24, |
| 9789 | 0x0f, 0x4c, 0xf2, 0x8a, 0x86, 0x98, 0x04, 0xd7, 0x45, 0x1c, 0x9f, 0xda, 0xbd, 0x65, 0x47, 0xf3, |
| 9790 | 0x9d, 0xa5, 0x7f, 0x36, 0xc2, 0x15, 0x9f, 0xc0, 0x23, 0x63, 0x1d, 0xce, 0x73, 0x0b, 0xaf, 0x79, |
| 9791 | 0x05, 0xbc, 0xdd, 0xb5, 0x4c, 0x2d, 0x55, 0x6e, 0x51, 0x3c, 0x26, 0xff, 0x14, 0x04, 0x49, 0x12, |
| 9792 | 0x1a, 0xd7, 0xf1, 0x6e, 0x83, 0x22, 0x8b, 0xdc, 0x5f, 0x62, 0x48, 0xda, 0x9f, 0x67, 0x50, 0xb5, |
| 9793 | 0x15, 0x1f, 0x49, 0x4b, 0xbf, 0xe9, 0x39, 0xea, 0x29, 0x1a, 0x92, 0x13, 0xee, 0x7c, 0x0b, 0x18, |
| 9794 | 0xb7, 0xdd, 0xb4, 0x6d, 0x59, 0x91, 0x72, 0x74, 0xc7, 0x7c, 0x49, 0x67, 0x4e, 0x5b, 0x4b, 0x53, |
| 9795 | 0xdd, 0x3d, 0x8f, 0x40, 0xb6, 0x8c, 0xb8, 0x8f, 0x00, 0xd8, 0x64, 0x53, 0x34, 0x4b, 0x7b, 0xfc, |
| 9796 | 0x22, 0x0a, 0x59, 0xd7, 0x54, 0xd6, 0x64, 0xdb, 0x74, 0x5d, 0x65, 0x4d, 0xa0, 0x90, 0x75, 0x43, |
| 9797 | 0xc6, 0x40, 0xcf, 0xa1, 0x86, 0x40, 0x4e, 0x06, 0x23, 0x8c, 0x26, 0x0b, 0x42, 0x26, 0x2e, 0x98, |
| 9798 | 0xc4, 0x4a, 0xd8, 0xa6, 0x83, 0xe5, 0x9b, 0x38, 0x5f, 0x2f, 0xc1, 0xe1, 0x30, 0x5b, 0x2a, 0x33, |
| 9799 | 0xaa, 0x21, 0x99, 0xb7, 0x55, 0xe6, 0x24, 0x0e, 0x99, 0x2f, 0xea, 0x37, 0xe3, 0x95, 0x48, 0xf8, |
| 9800 | 0xd7, 0xcf, 0xde, 0x67, 0xf4, 0x3b, 0xf1, 0x5a, 0xa8, 0x38, 0x64, 0x05, 0x07, 0xfc, 0x7d, 0xfa, |
| 9801 | 0xbb, 0x19, 0x58, 0x72, 0x25, 0x6e, 0x64, 0x50, 0x5f, 0xb0, 0x5e, 0x5d, 0xb8, 0xbd, 0x02, 0x30, |
| 9802 | 0x6c, 0x1f, 0x52, 0x51, 0xa5, 0xa5, 0x44, 0xb5, 0x14, 0x63, 0x5a, 0xcd, 0x7d, 0xb3, 0x63, 0xda, |
| 9803 | 0xf1, 0xf5, 0x8c, 0x5d, 0xa5, 0x58, 0xd2, 0xb2, 0x0a, 0x83, 0xac, 0xa0, 0x78, 0xdf, 0xd6, 0xd6, |
| 9804 | 0x72, 0xe5, 0x2f, 0xb0, 0x21, 0x10, 0xdf, 0x43, 0xc7, 0xab, 0xe7, 0x62, 0x0b, 0x55, 0x1b, 0x64, |
| 9805 | 0xa8, 0xe5, 0x73, 0xc7, 0x6d, 0x37, 0x3b, 0x98, 0xd1, 0x53, 0x0a, 0xcc, 0x78, 0x89, 0xb0, 0x34, |
| 9806 | 0xc5, 0xe0, 0xf3, 0x25, 0x2d, 0x8c, 0x1f, 0xe1, 0x69, 0x78, 0xee, 0x22, 0x32, 0xf9, 0x69, 0xd5, |
| 9807 | 0xc2, 0x7e, 0x4a, 0xa7, 0x5b, 0x6d, 0x18, 0x9d, 0x5d, 0x53, 0x36, 0xf3, 0x05, 0xc2, 0x7c, 0xbe, |
| 9808 | 0x67, 0xb4, 0xe4, 0x05, 0x35, 0x01, 0x6d, 0x1b, 0x36, 0xee, 0x5e, 0x49, 0x62, 0x3c, 0xd3, 0x67, |
| 9809 | 0x2a, 0x7b, 0xec, 0x03, 0x3f, 0x38, 0xe4, 0x97, 0x01, 0x07, 0x7e, 0x30, 0xfc, 0x14, 0xff, 0xa7, |
| 9810 | 0x16, 0x79, 0x39, 0xf0, 0xc1, 0xa3, 0x1f, 0x3e, 0x3a, 0x1c, 0x45, 0x47, 0xc7, 0x07, 0x9f, 0x0e, |
| 9811 | 0xfc, 0xc9, 0x7d, 0x41, 0x76, 0x1f, 0xc9, 0x7e, 0x85, 0xfe, 0x43, 0x97, 0x93, 0x47, 0xf7, 0x0f, |
| 9812 | 0x7d, 0xf5, 0xbf, 0x75, 0x39, 0x58, 0xe7, 0x98, 0x47, 0xff, 0x37, 0x00, 0x00, 0xff, 0xff, 0xe3, |
| 9813 | 0xd4, 0xf3, 0x50, 0xfa, 0x65, 0x00, 0x00, |
William Kurkian | 1b363f4 | 2019-03-12 15:28:12 -0400 | [diff] [blame] | 9814 | } |