binapigen: fix union size
[govpp.git] / binapi / urpf / urpf.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.05-release
5 // source: /usr/share/vpp/api/plugins/urpf.api.json
6
7 // Package urpf contains generated bindings for API file urpf.api.
8 //
9 // Contents:
10 //   1 enum
11 //   2 messages
12 //
13 package urpf
14
15 import (
16         "strconv"
17
18         api "git.fd.io/govpp.git/api"
19         _ "git.fd.io/govpp.git/binapi/fib_types"
20         interface_types "git.fd.io/govpp.git/binapi/interface_types"
21         ip_types "git.fd.io/govpp.git/binapi/ip_types"
22         codec "git.fd.io/govpp.git/codec"
23 )
24
25 // This is a compile-time assertion to ensure that this generated file
26 // is compatible with the GoVPP api package it is being compiled against.
27 // A compilation error at this line likely means your copy of the
28 // GoVPP api package needs to be updated.
29 const _ = api.GoVppAPIPackageIsVersion2
30
31 const (
32         APIFile    = "urpf"
33         APIVersion = "1.0.0"
34         VersionCrc = 0x3e2ebd8a
35 )
36
37 // UrpfMode defines enum 'urpf_mode'.
38 type UrpfMode uint8
39
40 const (
41         URPF_API_MODE_OFF    UrpfMode = 1
42         URPF_API_MODE_LOOSE  UrpfMode = 2
43         URPF_API_MODE_STRICT UrpfMode = 3
44 )
45
46 var (
47         UrpfMode_name = map[uint8]string{
48                 1: "URPF_API_MODE_OFF",
49                 2: "URPF_API_MODE_LOOSE",
50                 3: "URPF_API_MODE_STRICT",
51         }
52         UrpfMode_value = map[string]uint8{
53                 "URPF_API_MODE_OFF":    1,
54                 "URPF_API_MODE_LOOSE":  2,
55                 "URPF_API_MODE_STRICT": 3,
56         }
57 )
58
59 func (x UrpfMode) String() string {
60         s, ok := UrpfMode_name[uint8(x)]
61         if ok {
62                 return s
63         }
64         return "UrpfMode(" + strconv.Itoa(int(x)) + ")"
65 }
66
67 // UrpfUpdate defines message 'urpf_update'.
68 type UrpfUpdate struct {
69         IsInput   bool                           `binapi:"bool,name=is_input,default=true" json:"is_input,omitempty"`
70         Mode      UrpfMode                       `binapi:"urpf_mode,name=mode" json:"mode,omitempty"`
71         Af        ip_types.AddressFamily         `binapi:"address_family,name=af" json:"af,omitempty"`
72         SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
73 }
74
75 func (m *UrpfUpdate) Reset()               { *m = UrpfUpdate{} }
76 func (*UrpfUpdate) GetMessageName() string { return "urpf_update" }
77 func (*UrpfUpdate) GetCrcString() string   { return "2bf8a77c" }
78 func (*UrpfUpdate) GetMessageType() api.MessageType {
79         return api.RequestMessage
80 }
81
82 func (m *UrpfUpdate) Size() (size int) {
83         if m == nil {
84                 return 0
85         }
86         size += 1 // m.IsInput
87         size += 1 // m.Mode
88         size += 1 // m.Af
89         size += 4 // m.SwIfIndex
90         return size
91 }
92 func (m *UrpfUpdate) Marshal(b []byte) ([]byte, error) {
93         if b == nil {
94                 b = make([]byte, m.Size())
95         }
96         buf := codec.NewBuffer(b)
97         buf.EncodeBool(m.IsInput)
98         buf.EncodeUint8(uint8(m.Mode))
99         buf.EncodeUint8(uint8(m.Af))
100         buf.EncodeUint32(uint32(m.SwIfIndex))
101         return buf.Bytes(), nil
102 }
103 func (m *UrpfUpdate) Unmarshal(b []byte) error {
104         buf := codec.NewBuffer(b)
105         m.IsInput = buf.DecodeBool()
106         m.Mode = UrpfMode(buf.DecodeUint8())
107         m.Af = ip_types.AddressFamily(buf.DecodeUint8())
108         m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
109         return nil
110 }
111
112 // UrpfUpdateReply defines message 'urpf_update_reply'.
113 type UrpfUpdateReply struct {
114         Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
115 }
116
117 func (m *UrpfUpdateReply) Reset()               { *m = UrpfUpdateReply{} }
118 func (*UrpfUpdateReply) GetMessageName() string { return "urpf_update_reply" }
119 func (*UrpfUpdateReply) GetCrcString() string   { return "e8d4e804" }
120 func (*UrpfUpdateReply) GetMessageType() api.MessageType {
121         return api.ReplyMessage
122 }
123
124 func (m *UrpfUpdateReply) Size() (size int) {
125         if m == nil {
126                 return 0
127         }
128         size += 4 // m.Retval
129         return size
130 }
131 func (m *UrpfUpdateReply) Marshal(b []byte) ([]byte, error) {
132         if b == nil {
133                 b = make([]byte, m.Size())
134         }
135         buf := codec.NewBuffer(b)
136         buf.EncodeInt32(m.Retval)
137         return buf.Bytes(), nil
138 }
139 func (m *UrpfUpdateReply) Unmarshal(b []byte) error {
140         buf := codec.NewBuffer(b)
141         m.Retval = buf.DecodeInt32()
142         return nil
143 }
144
145 func init() { file_urpf_binapi_init() }
146 func file_urpf_binapi_init() {
147         api.RegisterMessage((*UrpfUpdate)(nil), "urpf_update_2bf8a77c")
148         api.RegisterMessage((*UrpfUpdateReply)(nil), "urpf_update_reply_e8d4e804")
149 }
150
151 // Messages returns list of all messages in this module.
152 func AllMessages() []api.Message {
153         return []api.Message{
154                 (*UrpfUpdate)(nil),
155                 (*UrpfUpdateReply)(nil),
156         }
157 }