e79def23df29183b90c165d6ac615ff7605fcd06
[govpp.git] / internal / testbinapi / binapi2001 / geneve / geneve.ba.go
1 // Code generated by GoVPP's binapi-generator. DO NOT EDIT.
2 // versions:
3 //  binapi-generator: v0.4.0-dev
4 //  VPP:              20.01
5 // source: .vppapi/core/geneve.api.json
6
7 // Package geneve contains generated bindings for API file geneve.api.
8 //
9 // Contents:
10 //   7 aliases
11 //  10 enums
12 //   6 structs
13 //   1 union
14 //   6 messages
15 //
16 package geneve
17
18 import (
19         "fmt"
20         api "git.fd.io/govpp.git/api"
21         codec "git.fd.io/govpp.git/codec"
22         "net"
23         "strconv"
24         "strings"
25 )
26
27 // This is a compile-time assertion to ensure that this generated file
28 // is compatible with the GoVPP api package it is being compiled against.
29 // A compilation error at this line likely means your copy of the
30 // GoVPP api package needs to be updated.
31 const _ = api.GoVppAPIPackageIsVersion2
32
33 const (
34         APIFile    = "geneve"
35         APIVersion = "2.0.0"
36         VersionCrc = 0x46ee8ab6
37 )
38
39 // AddressFamily defines enum 'address_family'.
40 type AddressFamily uint32
41
42 const (
43         ADDRESS_IP4 AddressFamily = 0
44         ADDRESS_IP6 AddressFamily = 1
45 )
46
47 var (
48         AddressFamily_name = map[uint32]string{
49                 0: "ADDRESS_IP4",
50                 1: "ADDRESS_IP6",
51         }
52         AddressFamily_value = map[string]uint32{
53                 "ADDRESS_IP4": 0,
54                 "ADDRESS_IP6": 1,
55         }
56 )
57
58 func (x AddressFamily) String() string {
59         s, ok := AddressFamily_name[uint32(x)]
60         if ok {
61                 return s
62         }
63         return "AddressFamily(" + strconv.Itoa(int(x)) + ")"
64 }
65
66 // IfStatusFlags defines enum 'if_status_flags'.
67 type IfStatusFlags uint32
68
69 const (
70         IF_STATUS_API_FLAG_ADMIN_UP IfStatusFlags = 1
71         IF_STATUS_API_FLAG_LINK_UP  IfStatusFlags = 2
72 )
73
74 var (
75         IfStatusFlags_name = map[uint32]string{
76                 1: "IF_STATUS_API_FLAG_ADMIN_UP",
77                 2: "IF_STATUS_API_FLAG_LINK_UP",
78         }
79         IfStatusFlags_value = map[string]uint32{
80                 "IF_STATUS_API_FLAG_ADMIN_UP": 1,
81                 "IF_STATUS_API_FLAG_LINK_UP":  2,
82         }
83 )
84
85 func (x IfStatusFlags) String() string {
86         s, ok := IfStatusFlags_name[uint32(x)]
87         if ok {
88                 return s
89         }
90         str := func(n uint32) string {
91                 s, ok := IfStatusFlags_name[uint32(n)]
92                 if ok {
93                         return s
94                 }
95                 return "IfStatusFlags(" + strconv.Itoa(int(n)) + ")"
96         }
97         for i := uint32(0); i <= 32; i++ {
98                 val := uint32(x)
99                 if val&(1<<i) != 0 {
100                         if s != "" {
101                                 s += "|"
102                         }
103                         s += str(1 << i)
104                 }
105         }
106         if s == "" {
107                 return str(uint32(x))
108         }
109         return s
110 }
111
112 // IfType defines enum 'if_type'.
113 type IfType uint32
114
115 const (
116         IF_API_TYPE_HARDWARE IfType = 1
117         IF_API_TYPE_SUB      IfType = 2
118         IF_API_TYPE_P2P      IfType = 3
119         IF_API_TYPE_PIPE     IfType = 4
120 )
121
122 var (
123         IfType_name = map[uint32]string{
124                 1: "IF_API_TYPE_HARDWARE",
125                 2: "IF_API_TYPE_SUB",
126                 3: "IF_API_TYPE_P2P",
127                 4: "IF_API_TYPE_PIPE",
128         }
129         IfType_value = map[string]uint32{
130                 "IF_API_TYPE_HARDWARE": 1,
131                 "IF_API_TYPE_SUB":      2,
132                 "IF_API_TYPE_P2P":      3,
133                 "IF_API_TYPE_PIPE":     4,
134         }
135 )
136
137 func (x IfType) String() string {
138         s, ok := IfType_name[uint32(x)]
139         if ok {
140                 return s
141         }
142         return "IfType(" + strconv.Itoa(int(x)) + ")"
143 }
144
145 // IPDscp defines enum 'ip_dscp'.
146 type IPDscp uint8
147
148 const (
149         IP_API_DSCP_CS0  IPDscp = 0
150         IP_API_DSCP_CS1  IPDscp = 8
151         IP_API_DSCP_AF11 IPDscp = 10
152         IP_API_DSCP_AF12 IPDscp = 12
153         IP_API_DSCP_AF13 IPDscp = 14
154         IP_API_DSCP_CS2  IPDscp = 16
155         IP_API_DSCP_AF21 IPDscp = 18
156         IP_API_DSCP_AF22 IPDscp = 20
157         IP_API_DSCP_AF23 IPDscp = 22
158         IP_API_DSCP_CS3  IPDscp = 24
159         IP_API_DSCP_AF31 IPDscp = 26
160         IP_API_DSCP_AF32 IPDscp = 28
161         IP_API_DSCP_AF33 IPDscp = 30
162         IP_API_DSCP_CS4  IPDscp = 32
163         IP_API_DSCP_AF41 IPDscp = 34
164         IP_API_DSCP_AF42 IPDscp = 36
165         IP_API_DSCP_AF43 IPDscp = 38
166         IP_API_DSCP_CS5  IPDscp = 40
167         IP_API_DSCP_EF   IPDscp = 46
168         IP_API_DSCP_CS6  IPDscp = 48
169         IP_API_DSCP_CS7  IPDscp = 50
170 )
171
172 var (
173         IPDscp_name = map[uint8]string{
174                 0:  "IP_API_DSCP_CS0",
175                 8:  "IP_API_DSCP_CS1",
176                 10: "IP_API_DSCP_AF11",
177                 12: "IP_API_DSCP_AF12",
178                 14: "IP_API_DSCP_AF13",
179                 16: "IP_API_DSCP_CS2",
180                 18: "IP_API_DSCP_AF21",
181                 20: "IP_API_DSCP_AF22",
182                 22: "IP_API_DSCP_AF23",
183                 24: "IP_API_DSCP_CS3",
184                 26: "IP_API_DSCP_AF31",
185                 28: "IP_API_DSCP_AF32",
186                 30: "IP_API_DSCP_AF33",
187                 32: "IP_API_DSCP_CS4",
188                 34: "IP_API_DSCP_AF41",
189                 36: "IP_API_DSCP_AF42",
190                 38: "IP_API_DSCP_AF43",
191                 40: "IP_API_DSCP_CS5",
192                 46: "IP_API_DSCP_EF",
193                 48: "IP_API_DSCP_CS6",
194                 50: "IP_API_DSCP_CS7",
195         }
196         IPDscp_value = map[string]uint8{
197                 "IP_API_DSCP_CS0":  0,
198                 "IP_API_DSCP_CS1":  8,
199                 "IP_API_DSCP_AF11": 10,
200                 "IP_API_DSCP_AF12": 12,
201                 "IP_API_DSCP_AF13": 14,
202                 "IP_API_DSCP_CS2":  16,
203                 "IP_API_DSCP_AF21": 18,
204                 "IP_API_DSCP_AF22": 20,
205                 "IP_API_DSCP_AF23": 22,
206                 "IP_API_DSCP_CS3":  24,
207                 "IP_API_DSCP_AF31": 26,
208                 "IP_API_DSCP_AF32": 28,
209                 "IP_API_DSCP_AF33": 30,
210                 "IP_API_DSCP_CS4":  32,
211                 "IP_API_DSCP_AF41": 34,
212                 "IP_API_DSCP_AF42": 36,
213                 "IP_API_DSCP_AF43": 38,
214                 "IP_API_DSCP_CS5":  40,
215                 "IP_API_DSCP_EF":   46,
216                 "IP_API_DSCP_CS6":  48,
217                 "IP_API_DSCP_CS7":  50,
218         }
219 )
220
221 func (x IPDscp) String() string {
222         s, ok := IPDscp_name[uint8(x)]
223         if ok {
224                 return s
225         }
226         return "IPDscp(" + strconv.Itoa(int(x)) + ")"
227 }
228
229 // IPEcn defines enum 'ip_ecn'.
230 type IPEcn uint8
231
232 const (
233         IP_API_ECN_NONE IPEcn = 0
234         IP_API_ECN_ECT0 IPEcn = 1
235         IP_API_ECN_ECT1 IPEcn = 2
236         IP_API_ECN_CE   IPEcn = 3
237 )
238
239 var (
240         IPEcn_name = map[uint8]string{
241                 0: "IP_API_ECN_NONE",
242                 1: "IP_API_ECN_ECT0",
243                 2: "IP_API_ECN_ECT1",
244                 3: "IP_API_ECN_CE",
245         }
246         IPEcn_value = map[string]uint8{
247                 "IP_API_ECN_NONE": 0,
248                 "IP_API_ECN_ECT0": 1,
249                 "IP_API_ECN_ECT1": 2,
250                 "IP_API_ECN_CE":   3,
251         }
252 )
253
254 func (x IPEcn) String() string {
255         s, ok := IPEcn_name[uint8(x)]
256         if ok {
257                 return s
258         }
259         return "IPEcn(" + strconv.Itoa(int(x)) + ")"
260 }
261
262 // IPProto defines enum 'ip_proto'.
263 type IPProto uint32
264
265 const (
266         IP_API_PROTO_HOPOPT   IPProto = 0
267         IP_API_PROTO_ICMP     IPProto = 1
268         IP_API_PROTO_IGMP     IPProto = 2
269         IP_API_PROTO_TCP      IPProto = 6
270         IP_API_PROTO_UDP      IPProto = 17
271         IP_API_PROTO_GRE      IPProto = 47
272         IP_API_PROTO_AH       IPProto = 50
273         IP_API_PROTO_ESP      IPProto = 51
274         IP_API_PROTO_EIGRP    IPProto = 88
275         IP_API_PROTO_OSPF     IPProto = 89
276         IP_API_PROTO_SCTP     IPProto = 132
277         IP_API_PROTO_RESERVED IPProto = 255
278 )
279
280 var (
281         IPProto_name = map[uint32]string{
282                 0:   "IP_API_PROTO_HOPOPT",
283                 1:   "IP_API_PROTO_ICMP",
284                 2:   "IP_API_PROTO_IGMP",
285                 6:   "IP_API_PROTO_TCP",
286                 17:  "IP_API_PROTO_UDP",
287                 47:  "IP_API_PROTO_GRE",
288                 50:  "IP_API_PROTO_AH",
289                 51:  "IP_API_PROTO_ESP",
290                 88:  "IP_API_PROTO_EIGRP",
291                 89:  "IP_API_PROTO_OSPF",
292                 132: "IP_API_PROTO_SCTP",
293                 255: "IP_API_PROTO_RESERVED",
294         }
295         IPProto_value = map[string]uint32{
296                 "IP_API_PROTO_HOPOPT":   0,
297                 "IP_API_PROTO_ICMP":     1,
298                 "IP_API_PROTO_IGMP":     2,
299                 "IP_API_PROTO_TCP":      6,
300                 "IP_API_PROTO_UDP":      17,
301                 "IP_API_PROTO_GRE":      47,
302                 "IP_API_PROTO_AH":       50,
303                 "IP_API_PROTO_ESP":      51,
304                 "IP_API_PROTO_EIGRP":    88,
305                 "IP_API_PROTO_OSPF":     89,
306                 "IP_API_PROTO_SCTP":     132,
307                 "IP_API_PROTO_RESERVED": 255,
308         }
309 )
310
311 func (x IPProto) String() string {
312         s, ok := IPProto_name[uint32(x)]
313         if ok {
314                 return s
315         }
316         return "IPProto(" + strconv.Itoa(int(x)) + ")"
317 }
318
319 // LinkDuplex defines enum 'link_duplex'.
320 type LinkDuplex uint32
321
322 const (
323         LINK_DUPLEX_API_UNKNOWN LinkDuplex = 0
324         LINK_DUPLEX_API_HALF    LinkDuplex = 1
325         LINK_DUPLEX_API_FULL    LinkDuplex = 2
326 )
327
328 var (
329         LinkDuplex_name = map[uint32]string{
330                 0: "LINK_DUPLEX_API_UNKNOWN",
331                 1: "LINK_DUPLEX_API_HALF",
332                 2: "LINK_DUPLEX_API_FULL",
333         }
334         LinkDuplex_value = map[string]uint32{
335                 "LINK_DUPLEX_API_UNKNOWN": 0,
336                 "LINK_DUPLEX_API_HALF":    1,
337                 "LINK_DUPLEX_API_FULL":    2,
338         }
339 )
340
341 func (x LinkDuplex) String() string {
342         s, ok := LinkDuplex_name[uint32(x)]
343         if ok {
344                 return s
345         }
346         return "LinkDuplex(" + strconv.Itoa(int(x)) + ")"
347 }
348
349 // MtuProto defines enum 'mtu_proto'.
350 type MtuProto uint32
351
352 const (
353         MTU_PROTO_API_L3   MtuProto = 1
354         MTU_PROTO_API_IP4  MtuProto = 2
355         MTU_PROTO_API_IP6  MtuProto = 3
356         MTU_PROTO_API_MPLS MtuProto = 4
357         MTU_PROTO_API_N    MtuProto = 5
358 )
359
360 var (
361         MtuProto_name = map[uint32]string{
362                 1: "MTU_PROTO_API_L3",
363                 2: "MTU_PROTO_API_IP4",
364                 3: "MTU_PROTO_API_IP6",
365                 4: "MTU_PROTO_API_MPLS",
366                 5: "MTU_PROTO_API_N",
367         }
368         MtuProto_value = map[string]uint32{
369                 "MTU_PROTO_API_L3":   1,
370                 "MTU_PROTO_API_IP4":  2,
371                 "MTU_PROTO_API_IP6":  3,
372                 "MTU_PROTO_API_MPLS": 4,
373                 "MTU_PROTO_API_N":    5,
374         }
375 )
376
377 func (x MtuProto) String() string {
378         s, ok := MtuProto_name[uint32(x)]
379         if ok {
380                 return s
381         }
382         return "MtuProto(" + strconv.Itoa(int(x)) + ")"
383 }
384
385 // RxMode defines enum 'rx_mode'.
386 type RxMode uint32
387
388 const (
389         RX_MODE_API_UNKNOWN   RxMode = 0
390         RX_MODE_API_POLLING   RxMode = 1
391         RX_MODE_API_INTERRUPT RxMode = 2
392         RX_MODE_API_ADAPTIVE  RxMode = 3
393         RX_MODE_API_DEFAULT   RxMode = 4
394 )
395
396 var (
397         RxMode_name = map[uint32]string{
398                 0: "RX_MODE_API_UNKNOWN",
399                 1: "RX_MODE_API_POLLING",
400                 2: "RX_MODE_API_INTERRUPT",
401                 3: "RX_MODE_API_ADAPTIVE",
402                 4: "RX_MODE_API_DEFAULT",
403         }
404         RxMode_value = map[string]uint32{
405                 "RX_MODE_API_UNKNOWN":   0,
406                 "RX_MODE_API_POLLING":   1,
407                 "RX_MODE_API_INTERRUPT": 2,
408                 "RX_MODE_API_ADAPTIVE":  3,
409                 "RX_MODE_API_DEFAULT":   4,
410         }
411 )
412
413 func (x RxMode) String() string {
414         s, ok := RxMode_name[uint32(x)]
415         if ok {
416                 return s
417         }
418         return "RxMode(" + strconv.Itoa(int(x)) + ")"
419 }
420
421 // SubIfFlags defines enum 'sub_if_flags'.
422 type SubIfFlags uint32
423
424 const (
425         SUB_IF_API_FLAG_NO_TAGS           SubIfFlags = 1
426         SUB_IF_API_FLAG_ONE_TAG           SubIfFlags = 2
427         SUB_IF_API_FLAG_TWO_TAGS          SubIfFlags = 4
428         SUB_IF_API_FLAG_DOT1AD            SubIfFlags = 8
429         SUB_IF_API_FLAG_EXACT_MATCH       SubIfFlags = 16
430         SUB_IF_API_FLAG_DEFAULT           SubIfFlags = 32
431         SUB_IF_API_FLAG_OUTER_VLAN_ID_ANY SubIfFlags = 64
432         SUB_IF_API_FLAG_INNER_VLAN_ID_ANY SubIfFlags = 128
433         SUB_IF_API_FLAG_MASK_VNET         SubIfFlags = 254
434         SUB_IF_API_FLAG_DOT1AH            SubIfFlags = 256
435 )
436
437 var (
438         SubIfFlags_name = map[uint32]string{
439                 1:   "SUB_IF_API_FLAG_NO_TAGS",
440                 2:   "SUB_IF_API_FLAG_ONE_TAG",
441                 4:   "SUB_IF_API_FLAG_TWO_TAGS",
442                 8:   "SUB_IF_API_FLAG_DOT1AD",
443                 16:  "SUB_IF_API_FLAG_EXACT_MATCH",
444                 32:  "SUB_IF_API_FLAG_DEFAULT",
445                 64:  "SUB_IF_API_FLAG_OUTER_VLAN_ID_ANY",
446                 128: "SUB_IF_API_FLAG_INNER_VLAN_ID_ANY",
447                 254: "SUB_IF_API_FLAG_MASK_VNET",
448                 256: "SUB_IF_API_FLAG_DOT1AH",
449         }
450         SubIfFlags_value = map[string]uint32{
451                 "SUB_IF_API_FLAG_NO_TAGS":           1,
452                 "SUB_IF_API_FLAG_ONE_TAG":           2,
453                 "SUB_IF_API_FLAG_TWO_TAGS":          4,
454                 "SUB_IF_API_FLAG_DOT1AD":            8,
455                 "SUB_IF_API_FLAG_EXACT_MATCH":       16,
456                 "SUB_IF_API_FLAG_DEFAULT":           32,
457                 "SUB_IF_API_FLAG_OUTER_VLAN_ID_ANY": 64,
458                 "SUB_IF_API_FLAG_INNER_VLAN_ID_ANY": 128,
459                 "SUB_IF_API_FLAG_MASK_VNET":         254,
460                 "SUB_IF_API_FLAG_DOT1AH":            256,
461         }
462 )
463
464 func (x SubIfFlags) String() string {
465         s, ok := SubIfFlags_name[uint32(x)]
466         if ok {
467                 return s
468         }
469         str := func(n uint32) string {
470                 s, ok := SubIfFlags_name[uint32(n)]
471                 if ok {
472                         return s
473                 }
474                 return "SubIfFlags(" + strconv.Itoa(int(n)) + ")"
475         }
476         for i := uint32(0); i <= 32; i++ {
477                 val := uint32(x)
478                 if val&(1<<i) != 0 {
479                         if s != "" {
480                                 s += "|"
481                         }
482                         s += str(1 << i)
483                 }
484         }
485         if s == "" {
486                 return str(uint32(x))
487         }
488         return s
489 }
490
491 // AddressWithPrefix defines alias 'address_with_prefix'.
492 type AddressWithPrefix Prefix
493
494 func ParseAddressWithPrefix(s string) (AddressWithPrefix, error) {
495         prefix, err := ParsePrefix(s)
496         if err != nil {
497                 return AddressWithPrefix{}, err
498         }
499         return AddressWithPrefix(prefix), nil
500 }
501 func (x AddressWithPrefix) String() string {
502         return Prefix(x).String()
503 }
504 func (x *AddressWithPrefix) MarshalText() ([]byte, error) {
505         return []byte(x.String()), nil
506 }
507 func (x *AddressWithPrefix) UnmarshalText(text []byte) error {
508         prefix, err := ParseAddressWithPrefix(string(text))
509         if err != nil {
510                 return err
511         }
512         *x = prefix
513         return nil
514 }
515
516 // InterfaceIndex defines alias 'interface_index'.
517 type InterfaceIndex uint32
518
519 // IP4Address defines alias 'ip4_address'.
520 type IP4Address [4]uint8
521
522 func ParseIP4Address(s string) (IP4Address, error) {
523         ip := net.ParseIP(s).To4()
524         if ip == nil {
525                 return IP4Address{}, fmt.Errorf("invalid IP address: %s", s)
526         }
527         var ipaddr IP4Address
528         copy(ipaddr[:], ip.To4())
529         return ipaddr, nil
530 }
531
532 func (x IP4Address) ToIP() net.IP {
533         return net.IP(x[:]).To4()
534 }
535 func (x IP4Address) String() string {
536         return x.ToIP().String()
537 }
538 func (x *IP4Address) MarshalText() ([]byte, error) {
539         return []byte(x.String()), nil
540 }
541 func (x *IP4Address) UnmarshalText(text []byte) error {
542         ipaddr, err := ParseIP4Address(string(text))
543         if err != nil {
544                 return err
545         }
546         *x = ipaddr
547         return nil
548 }
549
550 // IP4AddressWithPrefix defines alias 'ip4_address_with_prefix'.
551 type IP4AddressWithPrefix IP4Prefix
552
553 // IP6Address defines alias 'ip6_address'.
554 type IP6Address [16]uint8
555
556 func ParseIP6Address(s string) (IP6Address, error) {
557         ip := net.ParseIP(s).To16()
558         if ip == nil {
559                 return IP6Address{}, fmt.Errorf("invalid IP address: %s", s)
560         }
561         var ipaddr IP6Address
562         copy(ipaddr[:], ip.To16())
563         return ipaddr, nil
564 }
565
566 func (x IP6Address) ToIP() net.IP {
567         return net.IP(x[:]).To16()
568 }
569 func (x IP6Address) String() string {
570         return x.ToIP().String()
571 }
572 func (x *IP6Address) MarshalText() ([]byte, error) {
573         return []byte(x.String()), nil
574 }
575 func (x *IP6Address) UnmarshalText(text []byte) error {
576         ipaddr, err := ParseIP6Address(string(text))
577         if err != nil {
578                 return err
579         }
580         *x = ipaddr
581         return nil
582 }
583
584 // IP6AddressWithPrefix defines alias 'ip6_address_with_prefix'.
585 type IP6AddressWithPrefix IP6Prefix
586
587 // MacAddress defines alias 'mac_address'.
588 type MacAddress [6]uint8
589
590 func ParseMacAddress(s string) (MacAddress, error) {
591         var macaddr MacAddress
592         mac, err := net.ParseMAC(s)
593         if err != nil {
594                 return macaddr, err
595         }
596         copy(macaddr[:], mac[:])
597         return macaddr, nil
598 }
599 func (x MacAddress) ToMAC() net.HardwareAddr {
600         return net.HardwareAddr(x[:])
601 }
602 func (x MacAddress) String() string {
603         return x.ToMAC().String()
604 }
605 func (x *MacAddress) MarshalText() ([]byte, error) {
606         return []byte(x.String()), nil
607 }
608 func (x *MacAddress) UnmarshalText(text []byte) error {
609         mac, err := ParseMacAddress(string(text))
610         if err != nil {
611                 return err
612         }
613         *x = mac
614         return nil
615 }
616
617 // Address defines type 'address'.
618 type Address struct {
619         Af AddressFamily `binapi:"address_family,name=af" json:"af,omitempty"`
620         Un AddressUnion  `binapi:"address_union,name=un" json:"un,omitempty"`
621 }
622
623 func ParseAddress(s string) (Address, error) {
624         ip := net.ParseIP(s)
625         if ip == nil {
626                 return Address{}, fmt.Errorf("invalid address: %s", s)
627         }
628         var addr Address
629         if ip.To4() == nil {
630                 addr.Af = ADDRESS_IP6
631                 var ip6 IP6Address
632                 copy(ip6[:], ip.To16())
633                 addr.Un.SetIP6(ip6)
634         } else {
635                 addr.Af = ADDRESS_IP4
636                 var ip4 IP4Address
637                 copy(ip4[:], ip.To4())
638                 addr.Un.SetIP4(ip4)
639         }
640         return addr, nil
641 }
642 func (x Address) ToIP() net.IP {
643         if x.Af == ADDRESS_IP6 {
644                 ip6 := x.Un.GetIP6()
645                 return net.IP(ip6[:]).To16()
646         } else {
647                 ip4 := x.Un.GetIP4()
648                 return net.IP(ip4[:]).To4()
649         }
650 }
651 func (x Address) String() string {
652         return x.ToIP().String()
653 }
654 func (x *Address) MarshalText() ([]byte, error) {
655         return []byte(x.String()), nil
656 }
657 func (x *Address) UnmarshalText(text []byte) error {
658         addr, err := ParseAddress(string(text))
659         if err != nil {
660                 return err
661         }
662         *x = addr
663         return nil
664 }
665
666 // IP4Prefix defines type 'ip4_prefix'.
667 type IP4Prefix struct {
668         Address IP4Address `binapi:"ip4_address,name=address" json:"address,omitempty"`
669         Len     uint8      `binapi:"u8,name=len" json:"len,omitempty"`
670 }
671
672 func ParseIP4Prefix(s string) (prefix IP4Prefix, err error) {
673         hasPrefix := strings.Contains(s, "/")
674         if hasPrefix {
675                 ip, network, err := net.ParseCIDR(s)
676                 if err != nil {
677                         return IP4Prefix{}, fmt.Errorf("invalid IP %s: %s", s, err)
678                 }
679                 maskSize, _ := network.Mask.Size()
680                 prefix.Len = byte(maskSize)
681                 prefix.Address, err = ParseIP4Address(ip.String())
682                 if err != nil {
683                         return IP4Prefix{}, fmt.Errorf("invalid IP %s: %s", s, err)
684                 }
685         } else {
686                 ip := net.ParseIP(s)
687                 defaultMaskSize, _ := net.CIDRMask(32, 32).Size()
688                 if ip.To4() == nil {
689                         defaultMaskSize, _ = net.CIDRMask(128, 128).Size()
690                 }
691                 prefix.Len = byte(defaultMaskSize)
692                 prefix.Address, err = ParseIP4Address(ip.String())
693                 if err != nil {
694                         return IP4Prefix{}, fmt.Errorf("invalid IP %s: %s", s, err)
695                 }
696         }
697         return prefix, nil
698 }
699 func (x IP4Prefix) ToIPNet() *net.IPNet {
700         mask := net.CIDRMask(int(x.Len), 32)
701         ipnet := &net.IPNet{IP: x.Address.ToIP(), Mask: mask}
702         return ipnet
703 }
704 func (x IP4Prefix) String() string {
705         ip := x.Address.String()
706         return ip + "/" + strconv.Itoa(int(x.Len))
707 }
708 func (x *IP4Prefix) MarshalText() ([]byte, error) {
709         return []byte(x.String()), nil
710 }
711 func (x *IP4Prefix) UnmarshalText(text []byte) error {
712         prefix, err := ParseIP4Prefix(string(text))
713         if err != nil {
714                 return err
715         }
716         *x = prefix
717         return nil
718 }
719
720 // IP6Prefix defines type 'ip6_prefix'.
721 type IP6Prefix struct {
722         Address IP6Address `binapi:"ip6_address,name=address" json:"address,omitempty"`
723         Len     uint8      `binapi:"u8,name=len" json:"len,omitempty"`
724 }
725
726 func ParseIP6Prefix(s string) (prefix IP6Prefix, err error) {
727         hasPrefix := strings.Contains(s, "/")
728         if hasPrefix {
729                 ip, network, err := net.ParseCIDR(s)
730                 if err != nil {
731                         return IP6Prefix{}, fmt.Errorf("invalid IP %s: %s", s, err)
732                 }
733                 maskSize, _ := network.Mask.Size()
734                 prefix.Len = byte(maskSize)
735                 prefix.Address, err = ParseIP6Address(ip.String())
736                 if err != nil {
737                         return IP6Prefix{}, fmt.Errorf("invalid IP %s: %s", s, err)
738                 }
739         } else {
740                 ip := net.ParseIP(s)
741                 defaultMaskSize, _ := net.CIDRMask(32, 32).Size()
742                 if ip.To4() == nil {
743                         defaultMaskSize, _ = net.CIDRMask(128, 128).Size()
744                 }
745                 prefix.Len = byte(defaultMaskSize)
746                 prefix.Address, err = ParseIP6Address(ip.String())
747                 if err != nil {
748                         return IP6Prefix{}, fmt.Errorf("invalid IP %s: %s", s, err)
749                 }
750         }
751         return prefix, nil
752 }
753 func (x IP6Prefix) ToIPNet() *net.IPNet {
754         mask := net.CIDRMask(int(x.Len), 128)
755         ipnet := &net.IPNet{IP: x.Address.ToIP(), Mask: mask}
756         return ipnet
757 }
758 func (x IP6Prefix) String() string {
759         ip := x.Address.String()
760         return ip + "/" + strconv.Itoa(int(x.Len))
761 }
762 func (x *IP6Prefix) MarshalText() ([]byte, error) {
763         return []byte(x.String()), nil
764 }
765 func (x *IP6Prefix) UnmarshalText(text []byte) error {
766         prefix, err := ParseIP6Prefix(string(text))
767         if err != nil {
768                 return err
769         }
770         *x = prefix
771         return nil
772 }
773
774 // Mprefix defines type 'mprefix'.
775 type Mprefix struct {
776         Af               AddressFamily `binapi:"address_family,name=af" json:"af,omitempty"`
777         GrpAddressLength uint16        `binapi:"u16,name=grp_address_length" json:"grp_address_length,omitempty"`
778         GrpAddress       AddressUnion  `binapi:"address_union,name=grp_address" json:"grp_address,omitempty"`
779         SrcAddress       AddressUnion  `binapi:"address_union,name=src_address" json:"src_address,omitempty"`
780 }
781
782 // Prefix defines type 'prefix'.
783 type Prefix struct {
784         Address Address `binapi:"address,name=address" json:"address,omitempty"`
785         Len     uint8   `binapi:"u8,name=len" json:"len,omitempty"`
786 }
787
788 func ParsePrefix(ip string) (prefix Prefix, err error) {
789         hasPrefix := strings.Contains(ip, "/")
790         if hasPrefix {
791                 netIP, network, err := net.ParseCIDR(ip)
792                 if err != nil {
793                         return Prefix{}, fmt.Errorf("invalid IP %s: %s", ip, err)
794                 }
795                 maskSize, _ := network.Mask.Size()
796                 prefix.Len = byte(maskSize)
797                 prefix.Address, err = ParseAddress(netIP.String())
798                 if err != nil {
799                         return Prefix{}, fmt.Errorf("invalid IP %s: %s", ip, err)
800                 }
801         } else {
802                 netIP := net.ParseIP(ip)
803                 defaultMaskSize, _ := net.CIDRMask(32, 32).Size()
804                 if netIP.To4() == nil {
805                         defaultMaskSize, _ = net.CIDRMask(128, 128).Size()
806                 }
807                 prefix.Len = byte(defaultMaskSize)
808                 prefix.Address, err = ParseAddress(netIP.String())
809                 if err != nil {
810                         return Prefix{}, fmt.Errorf("invalid IP %s: %s", ip, err)
811                 }
812         }
813         return prefix, nil
814 }
815 func (x Prefix) ToIPNet() *net.IPNet {
816         var mask net.IPMask
817         if x.Address.Af == ADDRESS_IP4 {
818                 mask = net.CIDRMask(int(x.Len), 32)
819         } else {
820                 mask = net.CIDRMask(int(x.Len), 128)
821         }
822         ipnet := &net.IPNet{IP: x.Address.ToIP(), Mask: mask}
823         return ipnet
824 }
825 func (x Prefix) String() string {
826         ip := x.Address.String()
827         return ip + "/" + strconv.Itoa(int(x.Len))
828 }
829 func (x *Prefix) MarshalText() ([]byte, error) {
830         return []byte(x.String()), nil
831 }
832 func (x *Prefix) UnmarshalText(text []byte) error {
833         prefix, err := ParsePrefix(string(text))
834         if err != nil {
835                 return err
836         }
837         *x = prefix
838         return nil
839 }
840
841 // PrefixMatcher defines type 'prefix_matcher'.
842 type PrefixMatcher struct {
843         Le uint8 `binapi:"u8,name=le" json:"le,omitempty"`
844         Ge uint8 `binapi:"u8,name=ge" json:"ge,omitempty"`
845 }
846
847 // AddressUnion defines union 'address_union'.
848 type AddressUnion struct {
849         // IP4 *IP4Address
850         // IP6 *IP6Address
851         XXX_UnionData [16]byte
852 }
853
854 func AddressUnionIP4(a IP4Address) (u AddressUnion) {
855         u.SetIP4(a)
856         return
857 }
858 func (u *AddressUnion) SetIP4(a IP4Address) {
859         buf := codec.NewBuffer(u.XXX_UnionData[:])
860         buf.EncodeBytes(a[:], 4)
861 }
862 func (u *AddressUnion) GetIP4() (a IP4Address) {
863         buf := codec.NewBuffer(u.XXX_UnionData[:])
864         copy(a[:], buf.DecodeBytes(4))
865         return
866 }
867
868 func AddressUnionIP6(a IP6Address) (u AddressUnion) {
869         u.SetIP6(a)
870         return
871 }
872 func (u *AddressUnion) SetIP6(a IP6Address) {
873         buf := codec.NewBuffer(u.XXX_UnionData[:])
874         buf.EncodeBytes(a[:], 16)
875 }
876 func (u *AddressUnion) GetIP6() (a IP6Address) {
877         buf := codec.NewBuffer(u.XXX_UnionData[:])
878         copy(a[:], buf.DecodeBytes(16))
879         return
880 }
881
882 // GeneveAddDelTunnel defines message 'geneve_add_del_tunnel'.
883 type GeneveAddDelTunnel struct {
884         IsAdd          bool           `binapi:"bool,name=is_add" json:"is_add,omitempty"`
885         LocalAddress   Address        `binapi:"address,name=local_address" json:"local_address,omitempty"`
886         RemoteAddress  Address        `binapi:"address,name=remote_address" json:"remote_address,omitempty"`
887         McastSwIfIndex InterfaceIndex `binapi:"interface_index,name=mcast_sw_if_index" json:"mcast_sw_if_index,omitempty"`
888         EncapVrfID     uint32         `binapi:"u32,name=encap_vrf_id" json:"encap_vrf_id,omitempty"`
889         DecapNextIndex uint32         `binapi:"u32,name=decap_next_index" json:"decap_next_index,omitempty"`
890         Vni            uint32         `binapi:"u32,name=vni" json:"vni,omitempty"`
891 }
892
893 func (m *GeneveAddDelTunnel) Reset()               { *m = GeneveAddDelTunnel{} }
894 func (*GeneveAddDelTunnel) GetMessageName() string { return "geneve_add_del_tunnel" }
895 func (*GeneveAddDelTunnel) GetCrcString() string   { return "976693b5" }
896 func (*GeneveAddDelTunnel) GetMessageType() api.MessageType {
897         return api.RequestMessage
898 }
899
900 func (m *GeneveAddDelTunnel) Size() (size int) {
901         if m == nil {
902                 return 0
903         }
904         size += 1      // m.IsAdd
905         size += 4      // m.LocalAddress.Af
906         size += 1 * 16 // m.LocalAddress.Un
907         size += 4      // m.RemoteAddress.Af
908         size += 1 * 16 // m.RemoteAddress.Un
909         size += 4      // m.McastSwIfIndex
910         size += 4      // m.EncapVrfID
911         size += 4      // m.DecapNextIndex
912         size += 4      // m.Vni
913         return size
914 }
915 func (m *GeneveAddDelTunnel) Marshal(b []byte) ([]byte, error) {
916         if b == nil {
917                 b = make([]byte, m.Size())
918         }
919         buf := codec.NewBuffer(b)
920         buf.EncodeBool(m.IsAdd)
921         buf.EncodeUint32(uint32(m.LocalAddress.Af))
922         buf.EncodeBytes(m.LocalAddress.Un.XXX_UnionData[:], 16)
923         buf.EncodeUint32(uint32(m.RemoteAddress.Af))
924         buf.EncodeBytes(m.RemoteAddress.Un.XXX_UnionData[:], 16)
925         buf.EncodeUint32(uint32(m.McastSwIfIndex))
926         buf.EncodeUint32(m.EncapVrfID)
927         buf.EncodeUint32(m.DecapNextIndex)
928         buf.EncodeUint32(m.Vni)
929         return buf.Bytes(), nil
930 }
931 func (m *GeneveAddDelTunnel) Unmarshal(b []byte) error {
932         buf := codec.NewBuffer(b)
933         m.IsAdd = buf.DecodeBool()
934         m.LocalAddress.Af = AddressFamily(buf.DecodeUint32())
935         copy(m.LocalAddress.Un.XXX_UnionData[:], buf.DecodeBytes(16))
936         m.RemoteAddress.Af = AddressFamily(buf.DecodeUint32())
937         copy(m.RemoteAddress.Un.XXX_UnionData[:], buf.DecodeBytes(16))
938         m.McastSwIfIndex = InterfaceIndex(buf.DecodeUint32())
939         m.EncapVrfID = buf.DecodeUint32()
940         m.DecapNextIndex = buf.DecodeUint32()
941         m.Vni = buf.DecodeUint32()
942         return nil
943 }
944
945 // GeneveAddDelTunnelReply defines message 'geneve_add_del_tunnel_reply'.
946 type GeneveAddDelTunnelReply struct {
947         Retval    int32          `binapi:"i32,name=retval" json:"retval,omitempty"`
948         SwIfIndex InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
949 }
950
951 func (m *GeneveAddDelTunnelReply) Reset()               { *m = GeneveAddDelTunnelReply{} }
952 func (*GeneveAddDelTunnelReply) GetMessageName() string { return "geneve_add_del_tunnel_reply" }
953 func (*GeneveAddDelTunnelReply) GetCrcString() string   { return "5383d31f" }
954 func (*GeneveAddDelTunnelReply) GetMessageType() api.MessageType {
955         return api.ReplyMessage
956 }
957
958 func (m *GeneveAddDelTunnelReply) Size() (size int) {
959         if m == nil {
960                 return 0
961         }
962         size += 4 // m.Retval
963         size += 4 // m.SwIfIndex
964         return size
965 }
966 func (m *GeneveAddDelTunnelReply) Marshal(b []byte) ([]byte, error) {
967         if b == nil {
968                 b = make([]byte, m.Size())
969         }
970         buf := codec.NewBuffer(b)
971         buf.EncodeInt32(m.Retval)
972         buf.EncodeUint32(uint32(m.SwIfIndex))
973         return buf.Bytes(), nil
974 }
975 func (m *GeneveAddDelTunnelReply) Unmarshal(b []byte) error {
976         buf := codec.NewBuffer(b)
977         m.Retval = buf.DecodeInt32()
978         m.SwIfIndex = InterfaceIndex(buf.DecodeUint32())
979         return nil
980 }
981
982 // GeneveTunnelDetails defines message 'geneve_tunnel_details'.
983 type GeneveTunnelDetails struct {
984         SwIfIndex      InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
985         SrcAddress     Address        `binapi:"address,name=src_address" json:"src_address,omitempty"`
986         DstAddress     Address        `binapi:"address,name=dst_address" json:"dst_address,omitempty"`
987         McastSwIfIndex InterfaceIndex `binapi:"interface_index,name=mcast_sw_if_index" json:"mcast_sw_if_index,omitempty"`
988         EncapVrfID     uint32         `binapi:"u32,name=encap_vrf_id" json:"encap_vrf_id,omitempty"`
989         DecapNextIndex uint32         `binapi:"u32,name=decap_next_index" json:"decap_next_index,omitempty"`
990         Vni            uint32         `binapi:"u32,name=vni" json:"vni,omitempty"`
991 }
992
993 func (m *GeneveTunnelDetails) Reset()               { *m = GeneveTunnelDetails{} }
994 func (*GeneveTunnelDetails) GetMessageName() string { return "geneve_tunnel_details" }
995 func (*GeneveTunnelDetails) GetCrcString() string   { return "e27e2748" }
996 func (*GeneveTunnelDetails) GetMessageType() api.MessageType {
997         return api.ReplyMessage
998 }
999
1000 func (m *GeneveTunnelDetails) Size() (size int) {
1001         if m == nil {
1002                 return 0
1003         }
1004         size += 4      // m.SwIfIndex
1005         size += 4      // m.SrcAddress.Af
1006         size += 1 * 16 // m.SrcAddress.Un
1007         size += 4      // m.DstAddress.Af
1008         size += 1 * 16 // m.DstAddress.Un
1009         size += 4      // m.McastSwIfIndex
1010         size += 4      // m.EncapVrfID
1011         size += 4      // m.DecapNextIndex
1012         size += 4      // m.Vni
1013         return size
1014 }
1015 func (m *GeneveTunnelDetails) Marshal(b []byte) ([]byte, error) {
1016         if b == nil {
1017                 b = make([]byte, m.Size())
1018         }
1019         buf := codec.NewBuffer(b)
1020         buf.EncodeUint32(uint32(m.SwIfIndex))
1021         buf.EncodeUint32(uint32(m.SrcAddress.Af))
1022         buf.EncodeBytes(m.SrcAddress.Un.XXX_UnionData[:], 16)
1023         buf.EncodeUint32(uint32(m.DstAddress.Af))
1024         buf.EncodeBytes(m.DstAddress.Un.XXX_UnionData[:], 16)
1025         buf.EncodeUint32(uint32(m.McastSwIfIndex))
1026         buf.EncodeUint32(m.EncapVrfID)
1027         buf.EncodeUint32(m.DecapNextIndex)
1028         buf.EncodeUint32(m.Vni)
1029         return buf.Bytes(), nil
1030 }
1031 func (m *GeneveTunnelDetails) Unmarshal(b []byte) error {
1032         buf := codec.NewBuffer(b)
1033         m.SwIfIndex = InterfaceIndex(buf.DecodeUint32())
1034         m.SrcAddress.Af = AddressFamily(buf.DecodeUint32())
1035         copy(m.SrcAddress.Un.XXX_UnionData[:], buf.DecodeBytes(16))
1036         m.DstAddress.Af = AddressFamily(buf.DecodeUint32())
1037         copy(m.DstAddress.Un.XXX_UnionData[:], buf.DecodeBytes(16))
1038         m.McastSwIfIndex = InterfaceIndex(buf.DecodeUint32())
1039         m.EncapVrfID = buf.DecodeUint32()
1040         m.DecapNextIndex = buf.DecodeUint32()
1041         m.Vni = buf.DecodeUint32()
1042         return nil
1043 }
1044
1045 // GeneveTunnelDump defines message 'geneve_tunnel_dump'.
1046 type GeneveTunnelDump struct {
1047         SwIfIndex InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
1048 }
1049
1050 func (m *GeneveTunnelDump) Reset()               { *m = GeneveTunnelDump{} }
1051 func (*GeneveTunnelDump) GetMessageName() string { return "geneve_tunnel_dump" }
1052 func (*GeneveTunnelDump) GetCrcString() string   { return "f9e6675e" }
1053 func (*GeneveTunnelDump) GetMessageType() api.MessageType {
1054         return api.RequestMessage
1055 }
1056
1057 func (m *GeneveTunnelDump) Size() (size int) {
1058         if m == nil {
1059                 return 0
1060         }
1061         size += 4 // m.SwIfIndex
1062         return size
1063 }
1064 func (m *GeneveTunnelDump) Marshal(b []byte) ([]byte, error) {
1065         if b == nil {
1066                 b = make([]byte, m.Size())
1067         }
1068         buf := codec.NewBuffer(b)
1069         buf.EncodeUint32(uint32(m.SwIfIndex))
1070         return buf.Bytes(), nil
1071 }
1072 func (m *GeneveTunnelDump) Unmarshal(b []byte) error {
1073         buf := codec.NewBuffer(b)
1074         m.SwIfIndex = InterfaceIndex(buf.DecodeUint32())
1075         return nil
1076 }
1077
1078 // SwInterfaceSetGeneveBypass defines message 'sw_interface_set_geneve_bypass'.
1079 type SwInterfaceSetGeneveBypass struct {
1080         SwIfIndex InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
1081         IsIPv6    bool           `binapi:"bool,name=is_ipv6" json:"is_ipv6,omitempty"`
1082         Enable    bool           `binapi:"bool,name=enable" json:"enable,omitempty"`
1083 }
1084
1085 func (m *SwInterfaceSetGeneveBypass) Reset()               { *m = SwInterfaceSetGeneveBypass{} }
1086 func (*SwInterfaceSetGeneveBypass) GetMessageName() string { return "sw_interface_set_geneve_bypass" }
1087 func (*SwInterfaceSetGeneveBypass) GetCrcString() string   { return "65247409" }
1088 func (*SwInterfaceSetGeneveBypass) GetMessageType() api.MessageType {
1089         return api.RequestMessage
1090 }
1091
1092 func (m *SwInterfaceSetGeneveBypass) Size() (size int) {
1093         if m == nil {
1094                 return 0
1095         }
1096         size += 4 // m.SwIfIndex
1097         size += 1 // m.IsIPv6
1098         size += 1 // m.Enable
1099         return size
1100 }
1101 func (m *SwInterfaceSetGeneveBypass) Marshal(b []byte) ([]byte, error) {
1102         if b == nil {
1103                 b = make([]byte, m.Size())
1104         }
1105         buf := codec.NewBuffer(b)
1106         buf.EncodeUint32(uint32(m.SwIfIndex))
1107         buf.EncodeBool(m.IsIPv6)
1108         buf.EncodeBool(m.Enable)
1109         return buf.Bytes(), nil
1110 }
1111 func (m *SwInterfaceSetGeneveBypass) Unmarshal(b []byte) error {
1112         buf := codec.NewBuffer(b)
1113         m.SwIfIndex = InterfaceIndex(buf.DecodeUint32())
1114         m.IsIPv6 = buf.DecodeBool()
1115         m.Enable = buf.DecodeBool()
1116         return nil
1117 }
1118
1119 // SwInterfaceSetGeneveBypassReply defines message 'sw_interface_set_geneve_bypass_reply'.
1120 type SwInterfaceSetGeneveBypassReply struct {
1121         Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
1122 }
1123
1124 func (m *SwInterfaceSetGeneveBypassReply) Reset() { *m = SwInterfaceSetGeneveBypassReply{} }
1125 func (*SwInterfaceSetGeneveBypassReply) GetMessageName() string {
1126         return "sw_interface_set_geneve_bypass_reply"
1127 }
1128 func (*SwInterfaceSetGeneveBypassReply) GetCrcString() string { return "e8d4e804" }
1129 func (*SwInterfaceSetGeneveBypassReply) GetMessageType() api.MessageType {
1130         return api.ReplyMessage
1131 }
1132
1133 func (m *SwInterfaceSetGeneveBypassReply) Size() (size int) {
1134         if m == nil {
1135                 return 0
1136         }
1137         size += 4 // m.Retval
1138         return size
1139 }
1140 func (m *SwInterfaceSetGeneveBypassReply) Marshal(b []byte) ([]byte, error) {
1141         if b == nil {
1142                 b = make([]byte, m.Size())
1143         }
1144         buf := codec.NewBuffer(b)
1145         buf.EncodeInt32(m.Retval)
1146         return buf.Bytes(), nil
1147 }
1148 func (m *SwInterfaceSetGeneveBypassReply) Unmarshal(b []byte) error {
1149         buf := codec.NewBuffer(b)
1150         m.Retval = buf.DecodeInt32()
1151         return nil
1152 }
1153
1154 func init() { file_geneve_binapi_init() }
1155 func file_geneve_binapi_init() {
1156         api.RegisterMessage((*GeneveAddDelTunnel)(nil), "geneve_add_del_tunnel_976693b5")
1157         api.RegisterMessage((*GeneveAddDelTunnelReply)(nil), "geneve_add_del_tunnel_reply_5383d31f")
1158         api.RegisterMessage((*GeneveTunnelDetails)(nil), "geneve_tunnel_details_e27e2748")
1159         api.RegisterMessage((*GeneveTunnelDump)(nil), "geneve_tunnel_dump_f9e6675e")
1160         api.RegisterMessage((*SwInterfaceSetGeneveBypass)(nil), "sw_interface_set_geneve_bypass_65247409")
1161         api.RegisterMessage((*SwInterfaceSetGeneveBypassReply)(nil), "sw_interface_set_geneve_bypass_reply_e8d4e804")
1162 }
1163
1164 // Messages returns list of all messages in this module.
1165 func AllMessages() []api.Message {
1166         return []api.Message{
1167                 (*GeneveAddDelTunnel)(nil),
1168                 (*GeneveAddDelTunnelReply)(nil),
1169                 (*GeneveTunnelDetails)(nil),
1170                 (*GeneveTunnelDump)(nil),
1171                 (*SwInterfaceSetGeneveBypass)(nil),
1172                 (*SwInterfaceSetGeneveBypassReply)(nil),
1173         }
1174 }