1 // Code generated by GoVPP's binapi-generator. DO NOT EDIT.
3 // binapi-generator: v0.5.0
5 // source: /usr/share/vpp/api/plugins/nat44_ei.api.json
7 // Package nat44_ei contains generated bindings for API file nat44_ei.api.
18 api "git.fd.io/govpp.git/api"
19 interface_types "git.fd.io/govpp.git/binapi/interface_types"
20 ip_types "git.fd.io/govpp.git/binapi/ip_types"
21 nat_types "git.fd.io/govpp.git/binapi/nat_types"
22 codec "git.fd.io/govpp.git/codec"
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
34 VersionCrc = 0xfa6ff1f7
37 // Nat44EiConfigFlags defines enum 'nat44_ei_config_flags'.
38 type Nat44EiConfigFlags uint8
41 NAT44_EI_NONE Nat44EiConfigFlags = 0
42 NAT44_EI_STATIC_MAPPING_ONLY Nat44EiConfigFlags = 1
43 NAT44_EI_CONNECTION_TRACKING Nat44EiConfigFlags = 2
44 NAT44_EI_OUT2IN_DPO Nat44EiConfigFlags = 4
45 NAT44_EI_ADDR_ONLY_MAPPING Nat44EiConfigFlags = 8
46 NAT44_EI_IF_INSIDE Nat44EiConfigFlags = 16
47 NAT44_EI_IF_OUTSIDE Nat44EiConfigFlags = 32
48 NAT44_EI_STATIC_MAPPING Nat44EiConfigFlags = 64
52 Nat44EiConfigFlags_name = map[uint8]string{
54 1: "NAT44_EI_STATIC_MAPPING_ONLY",
55 2: "NAT44_EI_CONNECTION_TRACKING",
56 4: "NAT44_EI_OUT2IN_DPO",
57 8: "NAT44_EI_ADDR_ONLY_MAPPING",
58 16: "NAT44_EI_IF_INSIDE",
59 32: "NAT44_EI_IF_OUTSIDE",
60 64: "NAT44_EI_STATIC_MAPPING",
62 Nat44EiConfigFlags_value = map[string]uint8{
64 "NAT44_EI_STATIC_MAPPING_ONLY": 1,
65 "NAT44_EI_CONNECTION_TRACKING": 2,
66 "NAT44_EI_OUT2IN_DPO": 4,
67 "NAT44_EI_ADDR_ONLY_MAPPING": 8,
68 "NAT44_EI_IF_INSIDE": 16,
69 "NAT44_EI_IF_OUTSIDE": 32,
70 "NAT44_EI_STATIC_MAPPING": 64,
74 func (x Nat44EiConfigFlags) String() string {
75 s, ok := Nat44EiConfigFlags_name[uint8(x)]
79 str := func(n uint8) string {
80 s, ok := Nat44EiConfigFlags_name[uint8(n)]
84 return "Nat44EiConfigFlags(" + strconv.Itoa(int(n)) + ")"
86 for i := uint8(0); i <= 8; i++ {
101 // Nat44EiAddDelAddressRange defines message 'nat44_ei_add_del_address_range'.
102 // InProgress: the message form may change in the future versions
103 type Nat44EiAddDelAddressRange struct {
104 FirstIPAddress ip_types.IP4Address `binapi:"ip4_address,name=first_ip_address" json:"first_ip_address,omitempty"`
105 LastIPAddress ip_types.IP4Address `binapi:"ip4_address,name=last_ip_address" json:"last_ip_address,omitempty"`
106 VrfID uint32 `binapi:"u32,name=vrf_id" json:"vrf_id,omitempty"`
107 IsAdd bool `binapi:"bool,name=is_add" json:"is_add,omitempty"`
110 func (m *Nat44EiAddDelAddressRange) Reset() { *m = Nat44EiAddDelAddressRange{} }
111 func (*Nat44EiAddDelAddressRange) GetMessageName() string { return "nat44_ei_add_del_address_range" }
112 func (*Nat44EiAddDelAddressRange) GetCrcString() string { return "35f21abc" }
113 func (*Nat44EiAddDelAddressRange) GetMessageType() api.MessageType {
114 return api.RequestMessage
117 func (m *Nat44EiAddDelAddressRange) Size() (size int) {
121 size += 1 * 4 // m.FirstIPAddress
122 size += 1 * 4 // m.LastIPAddress
127 func (m *Nat44EiAddDelAddressRange) Marshal(b []byte) ([]byte, error) {
129 b = make([]byte, m.Size())
131 buf := codec.NewBuffer(b)
132 buf.EncodeBytes(m.FirstIPAddress[:], 4)
133 buf.EncodeBytes(m.LastIPAddress[:], 4)
134 buf.EncodeUint32(m.VrfID)
135 buf.EncodeBool(m.IsAdd)
136 return buf.Bytes(), nil
138 func (m *Nat44EiAddDelAddressRange) Unmarshal(b []byte) error {
139 buf := codec.NewBuffer(b)
140 copy(m.FirstIPAddress[:], buf.DecodeBytes(4))
141 copy(m.LastIPAddress[:], buf.DecodeBytes(4))
142 m.VrfID = buf.DecodeUint32()
143 m.IsAdd = buf.DecodeBool()
147 // Nat44EiAddDelAddressRangeReply defines message 'nat44_ei_add_del_address_range_reply'.
148 // InProgress: the message form may change in the future versions
149 type Nat44EiAddDelAddressRangeReply struct {
150 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
153 func (m *Nat44EiAddDelAddressRangeReply) Reset() { *m = Nat44EiAddDelAddressRangeReply{} }
154 func (*Nat44EiAddDelAddressRangeReply) GetMessageName() string {
155 return "nat44_ei_add_del_address_range_reply"
157 func (*Nat44EiAddDelAddressRangeReply) GetCrcString() string { return "e8d4e804" }
158 func (*Nat44EiAddDelAddressRangeReply) GetMessageType() api.MessageType {
159 return api.ReplyMessage
162 func (m *Nat44EiAddDelAddressRangeReply) Size() (size int) {
166 size += 4 // m.Retval
169 func (m *Nat44EiAddDelAddressRangeReply) Marshal(b []byte) ([]byte, error) {
171 b = make([]byte, m.Size())
173 buf := codec.NewBuffer(b)
174 buf.EncodeInt32(m.Retval)
175 return buf.Bytes(), nil
177 func (m *Nat44EiAddDelAddressRangeReply) Unmarshal(b []byte) error {
178 buf := codec.NewBuffer(b)
179 m.Retval = buf.DecodeInt32()
183 // Nat44EiAddDelIdentityMapping defines message 'nat44_ei_add_del_identity_mapping'.
184 // Deprecated: the message will be removed in the future versions
185 type Nat44EiAddDelIdentityMapping struct {
186 IsAdd bool `binapi:"bool,name=is_add" json:"is_add,omitempty"`
187 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
188 IPAddress ip_types.IP4Address `binapi:"ip4_address,name=ip_address" json:"ip_address,omitempty"`
189 Protocol uint8 `binapi:"u8,name=protocol" json:"protocol,omitempty"`
190 Port uint16 `binapi:"u16,name=port" json:"port,omitempty"`
191 SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
192 VrfID uint32 `binapi:"u32,name=vrf_id" json:"vrf_id,omitempty"`
193 Tag string `binapi:"string[64],name=tag" json:"tag,omitempty"`
196 func (m *Nat44EiAddDelIdentityMapping) Reset() { *m = Nat44EiAddDelIdentityMapping{} }
197 func (*Nat44EiAddDelIdentityMapping) GetMessageName() string {
198 return "nat44_ei_add_del_identity_mapping"
200 func (*Nat44EiAddDelIdentityMapping) GetCrcString() string { return "cb8606b9" }
201 func (*Nat44EiAddDelIdentityMapping) GetMessageType() api.MessageType {
202 return api.RequestMessage
205 func (m *Nat44EiAddDelIdentityMapping) Size() (size int) {
211 size += 1 * 4 // m.IPAddress
212 size += 1 // m.Protocol
214 size += 4 // m.SwIfIndex
219 func (m *Nat44EiAddDelIdentityMapping) Marshal(b []byte) ([]byte, error) {
221 b = make([]byte, m.Size())
223 buf := codec.NewBuffer(b)
224 buf.EncodeBool(m.IsAdd)
225 buf.EncodeUint8(uint8(m.Flags))
226 buf.EncodeBytes(m.IPAddress[:], 4)
227 buf.EncodeUint8(m.Protocol)
228 buf.EncodeUint16(m.Port)
229 buf.EncodeUint32(uint32(m.SwIfIndex))
230 buf.EncodeUint32(m.VrfID)
231 buf.EncodeString(m.Tag, 64)
232 return buf.Bytes(), nil
234 func (m *Nat44EiAddDelIdentityMapping) Unmarshal(b []byte) error {
235 buf := codec.NewBuffer(b)
236 m.IsAdd = buf.DecodeBool()
237 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
238 copy(m.IPAddress[:], buf.DecodeBytes(4))
239 m.Protocol = buf.DecodeUint8()
240 m.Port = buf.DecodeUint16()
241 m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
242 m.VrfID = buf.DecodeUint32()
243 m.Tag = buf.DecodeString(64)
247 // Nat44EiAddDelIdentityMappingReply defines message 'nat44_ei_add_del_identity_mapping_reply'.
248 // Deprecated: the message will be removed in the future versions
249 type Nat44EiAddDelIdentityMappingReply struct {
250 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
253 func (m *Nat44EiAddDelIdentityMappingReply) Reset() { *m = Nat44EiAddDelIdentityMappingReply{} }
254 func (*Nat44EiAddDelIdentityMappingReply) GetMessageName() string {
255 return "nat44_ei_add_del_identity_mapping_reply"
257 func (*Nat44EiAddDelIdentityMappingReply) GetCrcString() string { return "e8d4e804" }
258 func (*Nat44EiAddDelIdentityMappingReply) GetMessageType() api.MessageType {
259 return api.ReplyMessage
262 func (m *Nat44EiAddDelIdentityMappingReply) Size() (size int) {
266 size += 4 // m.Retval
269 func (m *Nat44EiAddDelIdentityMappingReply) Marshal(b []byte) ([]byte, error) {
271 b = make([]byte, m.Size())
273 buf := codec.NewBuffer(b)
274 buf.EncodeInt32(m.Retval)
275 return buf.Bytes(), nil
277 func (m *Nat44EiAddDelIdentityMappingReply) Unmarshal(b []byte) error {
278 buf := codec.NewBuffer(b)
279 m.Retval = buf.DecodeInt32()
283 // Nat44EiAddDelInterfaceAddr defines message 'nat44_ei_add_del_interface_addr'.
284 // Deprecated: the message will be removed in the future versions
285 type Nat44EiAddDelInterfaceAddr struct {
286 IsAdd bool `binapi:"bool,name=is_add" json:"is_add,omitempty"`
287 SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
288 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
291 func (m *Nat44EiAddDelInterfaceAddr) Reset() { *m = Nat44EiAddDelInterfaceAddr{} }
292 func (*Nat44EiAddDelInterfaceAddr) GetMessageName() string { return "nat44_ei_add_del_interface_addr" }
293 func (*Nat44EiAddDelInterfaceAddr) GetCrcString() string { return "883abbcc" }
294 func (*Nat44EiAddDelInterfaceAddr) GetMessageType() api.MessageType {
295 return api.RequestMessage
298 func (m *Nat44EiAddDelInterfaceAddr) Size() (size int) {
303 size += 4 // m.SwIfIndex
307 func (m *Nat44EiAddDelInterfaceAddr) Marshal(b []byte) ([]byte, error) {
309 b = make([]byte, m.Size())
311 buf := codec.NewBuffer(b)
312 buf.EncodeBool(m.IsAdd)
313 buf.EncodeUint32(uint32(m.SwIfIndex))
314 buf.EncodeUint8(uint8(m.Flags))
315 return buf.Bytes(), nil
317 func (m *Nat44EiAddDelInterfaceAddr) Unmarshal(b []byte) error {
318 buf := codec.NewBuffer(b)
319 m.IsAdd = buf.DecodeBool()
320 m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
321 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
325 // Nat44EiAddDelInterfaceAddrReply defines message 'nat44_ei_add_del_interface_addr_reply'.
326 // Deprecated: the message will be removed in the future versions
327 type Nat44EiAddDelInterfaceAddrReply struct {
328 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
331 func (m *Nat44EiAddDelInterfaceAddrReply) Reset() { *m = Nat44EiAddDelInterfaceAddrReply{} }
332 func (*Nat44EiAddDelInterfaceAddrReply) GetMessageName() string {
333 return "nat44_ei_add_del_interface_addr_reply"
335 func (*Nat44EiAddDelInterfaceAddrReply) GetCrcString() string { return "e8d4e804" }
336 func (*Nat44EiAddDelInterfaceAddrReply) GetMessageType() api.MessageType {
337 return api.ReplyMessage
340 func (m *Nat44EiAddDelInterfaceAddrReply) Size() (size int) {
344 size += 4 // m.Retval
347 func (m *Nat44EiAddDelInterfaceAddrReply) Marshal(b []byte) ([]byte, error) {
349 b = make([]byte, m.Size())
351 buf := codec.NewBuffer(b)
352 buf.EncodeInt32(m.Retval)
353 return buf.Bytes(), nil
355 func (m *Nat44EiAddDelInterfaceAddrReply) Unmarshal(b []byte) error {
356 buf := codec.NewBuffer(b)
357 m.Retval = buf.DecodeInt32()
361 // Nat44EiAddDelOutputInterface defines message 'nat44_ei_add_del_output_interface'.
362 type Nat44EiAddDelOutputInterface struct {
363 IsAdd bool `binapi:"bool,name=is_add" json:"is_add,omitempty"`
364 SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
367 func (m *Nat44EiAddDelOutputInterface) Reset() { *m = Nat44EiAddDelOutputInterface{} }
368 func (*Nat44EiAddDelOutputInterface) GetMessageName() string {
369 return "nat44_ei_add_del_output_interface"
371 func (*Nat44EiAddDelOutputInterface) GetCrcString() string { return "47d6e753" }
372 func (*Nat44EiAddDelOutputInterface) GetMessageType() api.MessageType {
373 return api.RequestMessage
376 func (m *Nat44EiAddDelOutputInterface) Size() (size int) {
381 size += 4 // m.SwIfIndex
384 func (m *Nat44EiAddDelOutputInterface) Marshal(b []byte) ([]byte, error) {
386 b = make([]byte, m.Size())
388 buf := codec.NewBuffer(b)
389 buf.EncodeBool(m.IsAdd)
390 buf.EncodeUint32(uint32(m.SwIfIndex))
391 return buf.Bytes(), nil
393 func (m *Nat44EiAddDelOutputInterface) Unmarshal(b []byte) error {
394 buf := codec.NewBuffer(b)
395 m.IsAdd = buf.DecodeBool()
396 m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
400 // Nat44EiAddDelOutputInterfaceReply defines message 'nat44_ei_add_del_output_interface_reply'.
401 type Nat44EiAddDelOutputInterfaceReply struct {
402 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
405 func (m *Nat44EiAddDelOutputInterfaceReply) Reset() { *m = Nat44EiAddDelOutputInterfaceReply{} }
406 func (*Nat44EiAddDelOutputInterfaceReply) GetMessageName() string {
407 return "nat44_ei_add_del_output_interface_reply"
409 func (*Nat44EiAddDelOutputInterfaceReply) GetCrcString() string { return "e8d4e804" }
410 func (*Nat44EiAddDelOutputInterfaceReply) GetMessageType() api.MessageType {
411 return api.ReplyMessage
414 func (m *Nat44EiAddDelOutputInterfaceReply) Size() (size int) {
418 size += 4 // m.Retval
421 func (m *Nat44EiAddDelOutputInterfaceReply) Marshal(b []byte) ([]byte, error) {
423 b = make([]byte, m.Size())
425 buf := codec.NewBuffer(b)
426 buf.EncodeInt32(m.Retval)
427 return buf.Bytes(), nil
429 func (m *Nat44EiAddDelOutputInterfaceReply) Unmarshal(b []byte) error {
430 buf := codec.NewBuffer(b)
431 m.Retval = buf.DecodeInt32()
435 // Nat44EiAddDelStaticMapping defines message 'nat44_ei_add_del_static_mapping'.
436 // InProgress: the message form may change in the future versions
437 type Nat44EiAddDelStaticMapping struct {
438 IsAdd bool `binapi:"bool,name=is_add" json:"is_add,omitempty"`
439 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
440 LocalIPAddress ip_types.IP4Address `binapi:"ip4_address,name=local_ip_address" json:"local_ip_address,omitempty"`
441 ExternalIPAddress ip_types.IP4Address `binapi:"ip4_address,name=external_ip_address" json:"external_ip_address,omitempty"`
442 Protocol uint8 `binapi:"u8,name=protocol" json:"protocol,omitempty"`
443 LocalPort uint16 `binapi:"u16,name=local_port" json:"local_port,omitempty"`
444 ExternalPort uint16 `binapi:"u16,name=external_port" json:"external_port,omitempty"`
445 ExternalSwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=external_sw_if_index" json:"external_sw_if_index,omitempty"`
446 VrfID uint32 `binapi:"u32,name=vrf_id" json:"vrf_id,omitempty"`
447 Tag string `binapi:"string[64],name=tag" json:"tag,omitempty"`
450 func (m *Nat44EiAddDelStaticMapping) Reset() { *m = Nat44EiAddDelStaticMapping{} }
451 func (*Nat44EiAddDelStaticMapping) GetMessageName() string { return "nat44_ei_add_del_static_mapping" }
452 func (*Nat44EiAddDelStaticMapping) GetCrcString() string { return "b404b7fe" }
453 func (*Nat44EiAddDelStaticMapping) GetMessageType() api.MessageType {
454 return api.RequestMessage
457 func (m *Nat44EiAddDelStaticMapping) Size() (size int) {
463 size += 1 * 4 // m.LocalIPAddress
464 size += 1 * 4 // m.ExternalIPAddress
465 size += 1 // m.Protocol
466 size += 2 // m.LocalPort
467 size += 2 // m.ExternalPort
468 size += 4 // m.ExternalSwIfIndex
473 func (m *Nat44EiAddDelStaticMapping) Marshal(b []byte) ([]byte, error) {
475 b = make([]byte, m.Size())
477 buf := codec.NewBuffer(b)
478 buf.EncodeBool(m.IsAdd)
479 buf.EncodeUint8(uint8(m.Flags))
480 buf.EncodeBytes(m.LocalIPAddress[:], 4)
481 buf.EncodeBytes(m.ExternalIPAddress[:], 4)
482 buf.EncodeUint8(m.Protocol)
483 buf.EncodeUint16(m.LocalPort)
484 buf.EncodeUint16(m.ExternalPort)
485 buf.EncodeUint32(uint32(m.ExternalSwIfIndex))
486 buf.EncodeUint32(m.VrfID)
487 buf.EncodeString(m.Tag, 64)
488 return buf.Bytes(), nil
490 func (m *Nat44EiAddDelStaticMapping) Unmarshal(b []byte) error {
491 buf := codec.NewBuffer(b)
492 m.IsAdd = buf.DecodeBool()
493 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
494 copy(m.LocalIPAddress[:], buf.DecodeBytes(4))
495 copy(m.ExternalIPAddress[:], buf.DecodeBytes(4))
496 m.Protocol = buf.DecodeUint8()
497 m.LocalPort = buf.DecodeUint16()
498 m.ExternalPort = buf.DecodeUint16()
499 m.ExternalSwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
500 m.VrfID = buf.DecodeUint32()
501 m.Tag = buf.DecodeString(64)
505 // Nat44EiAddDelStaticMappingReply defines message 'nat44_ei_add_del_static_mapping_reply'.
506 // InProgress: the message form may change in the future versions
507 type Nat44EiAddDelStaticMappingReply struct {
508 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
511 func (m *Nat44EiAddDelStaticMappingReply) Reset() { *m = Nat44EiAddDelStaticMappingReply{} }
512 func (*Nat44EiAddDelStaticMappingReply) GetMessageName() string {
513 return "nat44_ei_add_del_static_mapping_reply"
515 func (*Nat44EiAddDelStaticMappingReply) GetCrcString() string { return "e8d4e804" }
516 func (*Nat44EiAddDelStaticMappingReply) GetMessageType() api.MessageType {
517 return api.ReplyMessage
520 func (m *Nat44EiAddDelStaticMappingReply) Size() (size int) {
524 size += 4 // m.Retval
527 func (m *Nat44EiAddDelStaticMappingReply) Marshal(b []byte) ([]byte, error) {
529 b = make([]byte, m.Size())
531 buf := codec.NewBuffer(b)
532 buf.EncodeInt32(m.Retval)
533 return buf.Bytes(), nil
535 func (m *Nat44EiAddDelStaticMappingReply) Unmarshal(b []byte) error {
536 buf := codec.NewBuffer(b)
537 m.Retval = buf.DecodeInt32()
541 // Nat44EiAddressDetails defines message 'nat44_ei_address_details'.
542 // InProgress: the message form may change in the future versions
543 type Nat44EiAddressDetails struct {
544 IPAddress ip_types.IP4Address `binapi:"ip4_address,name=ip_address" json:"ip_address,omitempty"`
545 VrfID uint32 `binapi:"u32,name=vrf_id" json:"vrf_id,omitempty"`
548 func (m *Nat44EiAddressDetails) Reset() { *m = Nat44EiAddressDetails{} }
549 func (*Nat44EiAddressDetails) GetMessageName() string { return "nat44_ei_address_details" }
550 func (*Nat44EiAddressDetails) GetCrcString() string { return "318f1202" }
551 func (*Nat44EiAddressDetails) GetMessageType() api.MessageType {
552 return api.ReplyMessage
555 func (m *Nat44EiAddressDetails) Size() (size int) {
559 size += 1 * 4 // m.IPAddress
563 func (m *Nat44EiAddressDetails) Marshal(b []byte) ([]byte, error) {
565 b = make([]byte, m.Size())
567 buf := codec.NewBuffer(b)
568 buf.EncodeBytes(m.IPAddress[:], 4)
569 buf.EncodeUint32(m.VrfID)
570 return buf.Bytes(), nil
572 func (m *Nat44EiAddressDetails) Unmarshal(b []byte) error {
573 buf := codec.NewBuffer(b)
574 copy(m.IPAddress[:], buf.DecodeBytes(4))
575 m.VrfID = buf.DecodeUint32()
579 // Nat44EiAddressDump defines message 'nat44_ei_address_dump'.
580 // InProgress: the message form may change in the future versions
581 type Nat44EiAddressDump struct{}
583 func (m *Nat44EiAddressDump) Reset() { *m = Nat44EiAddressDump{} }
584 func (*Nat44EiAddressDump) GetMessageName() string { return "nat44_ei_address_dump" }
585 func (*Nat44EiAddressDump) GetCrcString() string { return "51077d14" }
586 func (*Nat44EiAddressDump) GetMessageType() api.MessageType {
587 return api.RequestMessage
590 func (m *Nat44EiAddressDump) Size() (size int) {
596 func (m *Nat44EiAddressDump) Marshal(b []byte) ([]byte, error) {
598 b = make([]byte, m.Size())
600 buf := codec.NewBuffer(b)
601 return buf.Bytes(), nil
603 func (m *Nat44EiAddressDump) Unmarshal(b []byte) error {
607 // Nat44EiDelSession defines message 'nat44_ei_del_session'.
608 // InProgress: the message form may change in the future versions
609 type Nat44EiDelSession struct {
610 Address ip_types.IP4Address `binapi:"ip4_address,name=address" json:"address,omitempty"`
611 Protocol uint8 `binapi:"u8,name=protocol" json:"protocol,omitempty"`
612 Port uint16 `binapi:"u16,name=port" json:"port,omitempty"`
613 VrfID uint32 `binapi:"u32,name=vrf_id" json:"vrf_id,omitempty"`
614 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
615 ExtHostAddress ip_types.IP4Address `binapi:"ip4_address,name=ext_host_address" json:"ext_host_address,omitempty"`
616 ExtHostPort uint16 `binapi:"u16,name=ext_host_port" json:"ext_host_port,omitempty"`
619 func (m *Nat44EiDelSession) Reset() { *m = Nat44EiDelSession{} }
620 func (*Nat44EiDelSession) GetMessageName() string { return "nat44_ei_del_session" }
621 func (*Nat44EiDelSession) GetCrcString() string { return "74969ffe" }
622 func (*Nat44EiDelSession) GetMessageType() api.MessageType {
623 return api.RequestMessage
626 func (m *Nat44EiDelSession) Size() (size int) {
630 size += 1 * 4 // m.Address
631 size += 1 // m.Protocol
635 size += 1 * 4 // m.ExtHostAddress
636 size += 2 // m.ExtHostPort
639 func (m *Nat44EiDelSession) Marshal(b []byte) ([]byte, error) {
641 b = make([]byte, m.Size())
643 buf := codec.NewBuffer(b)
644 buf.EncodeBytes(m.Address[:], 4)
645 buf.EncodeUint8(m.Protocol)
646 buf.EncodeUint16(m.Port)
647 buf.EncodeUint32(m.VrfID)
648 buf.EncodeUint8(uint8(m.Flags))
649 buf.EncodeBytes(m.ExtHostAddress[:], 4)
650 buf.EncodeUint16(m.ExtHostPort)
651 return buf.Bytes(), nil
653 func (m *Nat44EiDelSession) Unmarshal(b []byte) error {
654 buf := codec.NewBuffer(b)
655 copy(m.Address[:], buf.DecodeBytes(4))
656 m.Protocol = buf.DecodeUint8()
657 m.Port = buf.DecodeUint16()
658 m.VrfID = buf.DecodeUint32()
659 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
660 copy(m.ExtHostAddress[:], buf.DecodeBytes(4))
661 m.ExtHostPort = buf.DecodeUint16()
665 // Nat44EiDelSessionReply defines message 'nat44_ei_del_session_reply'.
666 // InProgress: the message form may change in the future versions
667 type Nat44EiDelSessionReply struct {
668 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
671 func (m *Nat44EiDelSessionReply) Reset() { *m = Nat44EiDelSessionReply{} }
672 func (*Nat44EiDelSessionReply) GetMessageName() string { return "nat44_ei_del_session_reply" }
673 func (*Nat44EiDelSessionReply) GetCrcString() string { return "e8d4e804" }
674 func (*Nat44EiDelSessionReply) GetMessageType() api.MessageType {
675 return api.ReplyMessage
678 func (m *Nat44EiDelSessionReply) Size() (size int) {
682 size += 4 // m.Retval
685 func (m *Nat44EiDelSessionReply) Marshal(b []byte) ([]byte, error) {
687 b = make([]byte, m.Size())
689 buf := codec.NewBuffer(b)
690 buf.EncodeInt32(m.Retval)
691 return buf.Bytes(), nil
693 func (m *Nat44EiDelSessionReply) Unmarshal(b []byte) error {
694 buf := codec.NewBuffer(b)
695 m.Retval = buf.DecodeInt32()
699 // Nat44EiDelUser defines message 'nat44_ei_del_user'.
700 // InProgress: the message form may change in the future versions
701 type Nat44EiDelUser struct {
702 IPAddress ip_types.IP4Address `binapi:"ip4_address,name=ip_address" json:"ip_address,omitempty"`
703 FibIndex uint32 `binapi:"u32,name=fib_index" json:"fib_index,omitempty"`
706 func (m *Nat44EiDelUser) Reset() { *m = Nat44EiDelUser{} }
707 func (*Nat44EiDelUser) GetMessageName() string { return "nat44_ei_del_user" }
708 func (*Nat44EiDelUser) GetCrcString() string { return "99a9f998" }
709 func (*Nat44EiDelUser) GetMessageType() api.MessageType {
710 return api.RequestMessage
713 func (m *Nat44EiDelUser) Size() (size int) {
717 size += 1 * 4 // m.IPAddress
718 size += 4 // m.FibIndex
721 func (m *Nat44EiDelUser) Marshal(b []byte) ([]byte, error) {
723 b = make([]byte, m.Size())
725 buf := codec.NewBuffer(b)
726 buf.EncodeBytes(m.IPAddress[:], 4)
727 buf.EncodeUint32(m.FibIndex)
728 return buf.Bytes(), nil
730 func (m *Nat44EiDelUser) Unmarshal(b []byte) error {
731 buf := codec.NewBuffer(b)
732 copy(m.IPAddress[:], buf.DecodeBytes(4))
733 m.FibIndex = buf.DecodeUint32()
737 // Nat44EiDelUserReply defines message 'nat44_ei_del_user_reply'.
738 // InProgress: the message form may change in the future versions
739 type Nat44EiDelUserReply struct {
740 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
743 func (m *Nat44EiDelUserReply) Reset() { *m = Nat44EiDelUserReply{} }
744 func (*Nat44EiDelUserReply) GetMessageName() string { return "nat44_ei_del_user_reply" }
745 func (*Nat44EiDelUserReply) GetCrcString() string { return "e8d4e804" }
746 func (*Nat44EiDelUserReply) GetMessageType() api.MessageType {
747 return api.ReplyMessage
750 func (m *Nat44EiDelUserReply) Size() (size int) {
754 size += 4 // m.Retval
757 func (m *Nat44EiDelUserReply) Marshal(b []byte) ([]byte, error) {
759 b = make([]byte, m.Size())
761 buf := codec.NewBuffer(b)
762 buf.EncodeInt32(m.Retval)
763 return buf.Bytes(), nil
765 func (m *Nat44EiDelUserReply) Unmarshal(b []byte) error {
766 buf := codec.NewBuffer(b)
767 m.Retval = buf.DecodeInt32()
771 // Nat44EiForwardingEnableDisable defines message 'nat44_ei_forwarding_enable_disable'.
772 // InProgress: the message form may change in the future versions
773 type Nat44EiForwardingEnableDisable struct {
774 Enable bool `binapi:"bool,name=enable" json:"enable,omitempty"`
777 func (m *Nat44EiForwardingEnableDisable) Reset() { *m = Nat44EiForwardingEnableDisable{} }
778 func (*Nat44EiForwardingEnableDisable) GetMessageName() string {
779 return "nat44_ei_forwarding_enable_disable"
781 func (*Nat44EiForwardingEnableDisable) GetCrcString() string { return "b3e225d2" }
782 func (*Nat44EiForwardingEnableDisable) GetMessageType() api.MessageType {
783 return api.RequestMessage
786 func (m *Nat44EiForwardingEnableDisable) Size() (size int) {
790 size += 1 // m.Enable
793 func (m *Nat44EiForwardingEnableDisable) Marshal(b []byte) ([]byte, error) {
795 b = make([]byte, m.Size())
797 buf := codec.NewBuffer(b)
798 buf.EncodeBool(m.Enable)
799 return buf.Bytes(), nil
801 func (m *Nat44EiForwardingEnableDisable) Unmarshal(b []byte) error {
802 buf := codec.NewBuffer(b)
803 m.Enable = buf.DecodeBool()
807 // Nat44EiForwardingEnableDisableReply defines message 'nat44_ei_forwarding_enable_disable_reply'.
808 // InProgress: the message form may change in the future versions
809 type Nat44EiForwardingEnableDisableReply struct {
810 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
813 func (m *Nat44EiForwardingEnableDisableReply) Reset() { *m = Nat44EiForwardingEnableDisableReply{} }
814 func (*Nat44EiForwardingEnableDisableReply) GetMessageName() string {
815 return "nat44_ei_forwarding_enable_disable_reply"
817 func (*Nat44EiForwardingEnableDisableReply) GetCrcString() string { return "e8d4e804" }
818 func (*Nat44EiForwardingEnableDisableReply) GetMessageType() api.MessageType {
819 return api.ReplyMessage
822 func (m *Nat44EiForwardingEnableDisableReply) Size() (size int) {
826 size += 4 // m.Retval
829 func (m *Nat44EiForwardingEnableDisableReply) Marshal(b []byte) ([]byte, error) {
831 b = make([]byte, m.Size())
833 buf := codec.NewBuffer(b)
834 buf.EncodeInt32(m.Retval)
835 return buf.Bytes(), nil
837 func (m *Nat44EiForwardingEnableDisableReply) Unmarshal(b []byte) error {
838 buf := codec.NewBuffer(b)
839 m.Retval = buf.DecodeInt32()
843 // Nat44EiGetAddrAndPortAllocAlg defines message 'nat44_ei_get_addr_and_port_alloc_alg'.
844 // Deprecated: the message will be removed in the future versions
845 type Nat44EiGetAddrAndPortAllocAlg struct{}
847 func (m *Nat44EiGetAddrAndPortAllocAlg) Reset() { *m = Nat44EiGetAddrAndPortAllocAlg{} }
848 func (*Nat44EiGetAddrAndPortAllocAlg) GetMessageName() string {
849 return "nat44_ei_get_addr_and_port_alloc_alg"
851 func (*Nat44EiGetAddrAndPortAllocAlg) GetCrcString() string { return "51077d14" }
852 func (*Nat44EiGetAddrAndPortAllocAlg) GetMessageType() api.MessageType {
853 return api.RequestMessage
856 func (m *Nat44EiGetAddrAndPortAllocAlg) Size() (size int) {
862 func (m *Nat44EiGetAddrAndPortAllocAlg) Marshal(b []byte) ([]byte, error) {
864 b = make([]byte, m.Size())
866 buf := codec.NewBuffer(b)
867 return buf.Bytes(), nil
869 func (m *Nat44EiGetAddrAndPortAllocAlg) Unmarshal(b []byte) error {
873 // Nat44EiGetAddrAndPortAllocAlgReply defines message 'nat44_ei_get_addr_and_port_alloc_alg_reply'.
874 // Deprecated: the message will be removed in the future versions
875 type Nat44EiGetAddrAndPortAllocAlgReply struct {
876 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
877 Alg uint8 `binapi:"u8,name=alg" json:"alg,omitempty"`
878 PsidOffset uint8 `binapi:"u8,name=psid_offset" json:"psid_offset,omitempty"`
879 PsidLength uint8 `binapi:"u8,name=psid_length" json:"psid_length,omitempty"`
880 Psid uint16 `binapi:"u16,name=psid" json:"psid,omitempty"`
881 StartPort uint16 `binapi:"u16,name=start_port" json:"start_port,omitempty"`
882 EndPort uint16 `binapi:"u16,name=end_port" json:"end_port,omitempty"`
885 func (m *Nat44EiGetAddrAndPortAllocAlgReply) Reset() { *m = Nat44EiGetAddrAndPortAllocAlgReply{} }
886 func (*Nat44EiGetAddrAndPortAllocAlgReply) GetMessageName() string {
887 return "nat44_ei_get_addr_and_port_alloc_alg_reply"
889 func (*Nat44EiGetAddrAndPortAllocAlgReply) GetCrcString() string { return "3607a7d0" }
890 func (*Nat44EiGetAddrAndPortAllocAlgReply) GetMessageType() api.MessageType {
891 return api.ReplyMessage
894 func (m *Nat44EiGetAddrAndPortAllocAlgReply) Size() (size int) {
898 size += 4 // m.Retval
900 size += 1 // m.PsidOffset
901 size += 1 // m.PsidLength
903 size += 2 // m.StartPort
904 size += 2 // m.EndPort
907 func (m *Nat44EiGetAddrAndPortAllocAlgReply) Marshal(b []byte) ([]byte, error) {
909 b = make([]byte, m.Size())
911 buf := codec.NewBuffer(b)
912 buf.EncodeInt32(m.Retval)
913 buf.EncodeUint8(m.Alg)
914 buf.EncodeUint8(m.PsidOffset)
915 buf.EncodeUint8(m.PsidLength)
916 buf.EncodeUint16(m.Psid)
917 buf.EncodeUint16(m.StartPort)
918 buf.EncodeUint16(m.EndPort)
919 return buf.Bytes(), nil
921 func (m *Nat44EiGetAddrAndPortAllocAlgReply) Unmarshal(b []byte) error {
922 buf := codec.NewBuffer(b)
923 m.Retval = buf.DecodeInt32()
924 m.Alg = buf.DecodeUint8()
925 m.PsidOffset = buf.DecodeUint8()
926 m.PsidLength = buf.DecodeUint8()
927 m.Psid = buf.DecodeUint16()
928 m.StartPort = buf.DecodeUint16()
929 m.EndPort = buf.DecodeUint16()
933 // Nat44EiGetMssClamping defines message 'nat44_ei_get_mss_clamping'.
934 // Deprecated: the message will be removed in the future versions
935 type Nat44EiGetMssClamping struct{}
937 func (m *Nat44EiGetMssClamping) Reset() { *m = Nat44EiGetMssClamping{} }
938 func (*Nat44EiGetMssClamping) GetMessageName() string { return "nat44_ei_get_mss_clamping" }
939 func (*Nat44EiGetMssClamping) GetCrcString() string { return "51077d14" }
940 func (*Nat44EiGetMssClamping) GetMessageType() api.MessageType {
941 return api.RequestMessage
944 func (m *Nat44EiGetMssClamping) Size() (size int) {
950 func (m *Nat44EiGetMssClamping) Marshal(b []byte) ([]byte, error) {
952 b = make([]byte, m.Size())
954 buf := codec.NewBuffer(b)
955 return buf.Bytes(), nil
957 func (m *Nat44EiGetMssClamping) Unmarshal(b []byte) error {
961 // Nat44EiGetMssClampingReply defines message 'nat44_ei_get_mss_clamping_reply'.
962 // Deprecated: the message will be removed in the future versions
963 type Nat44EiGetMssClampingReply struct {
964 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
965 MssValue uint16 `binapi:"u16,name=mss_value" json:"mss_value,omitempty"`
966 Enable bool `binapi:"bool,name=enable" json:"enable,omitempty"`
969 func (m *Nat44EiGetMssClampingReply) Reset() { *m = Nat44EiGetMssClampingReply{} }
970 func (*Nat44EiGetMssClampingReply) GetMessageName() string { return "nat44_ei_get_mss_clamping_reply" }
971 func (*Nat44EiGetMssClampingReply) GetCrcString() string { return "1c0b2a78" }
972 func (*Nat44EiGetMssClampingReply) GetMessageType() api.MessageType {
973 return api.ReplyMessage
976 func (m *Nat44EiGetMssClampingReply) Size() (size int) {
980 size += 4 // m.Retval
981 size += 2 // m.MssValue
982 size += 1 // m.Enable
985 func (m *Nat44EiGetMssClampingReply) Marshal(b []byte) ([]byte, error) {
987 b = make([]byte, m.Size())
989 buf := codec.NewBuffer(b)
990 buf.EncodeInt32(m.Retval)
991 buf.EncodeUint16(m.MssValue)
992 buf.EncodeBool(m.Enable)
993 return buf.Bytes(), nil
995 func (m *Nat44EiGetMssClampingReply) Unmarshal(b []byte) error {
996 buf := codec.NewBuffer(b)
997 m.Retval = buf.DecodeInt32()
998 m.MssValue = buf.DecodeUint16()
999 m.Enable = buf.DecodeBool()
1003 // Nat44EiHaFlush defines message 'nat44_ei_ha_flush'.
1004 // InProgress: the message form may change in the future versions
1005 type Nat44EiHaFlush struct{}
1007 func (m *Nat44EiHaFlush) Reset() { *m = Nat44EiHaFlush{} }
1008 func (*Nat44EiHaFlush) GetMessageName() string { return "nat44_ei_ha_flush" }
1009 func (*Nat44EiHaFlush) GetCrcString() string { return "51077d14" }
1010 func (*Nat44EiHaFlush) GetMessageType() api.MessageType {
1011 return api.RequestMessage
1014 func (m *Nat44EiHaFlush) Size() (size int) {
1020 func (m *Nat44EiHaFlush) Marshal(b []byte) ([]byte, error) {
1022 b = make([]byte, m.Size())
1024 buf := codec.NewBuffer(b)
1025 return buf.Bytes(), nil
1027 func (m *Nat44EiHaFlush) Unmarshal(b []byte) error {
1031 // Nat44EiHaFlushReply defines message 'nat44_ei_ha_flush_reply'.
1032 // InProgress: the message form may change in the future versions
1033 type Nat44EiHaFlushReply struct {
1034 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
1037 func (m *Nat44EiHaFlushReply) Reset() { *m = Nat44EiHaFlushReply{} }
1038 func (*Nat44EiHaFlushReply) GetMessageName() string { return "nat44_ei_ha_flush_reply" }
1039 func (*Nat44EiHaFlushReply) GetCrcString() string { return "e8d4e804" }
1040 func (*Nat44EiHaFlushReply) GetMessageType() api.MessageType {
1041 return api.ReplyMessage
1044 func (m *Nat44EiHaFlushReply) Size() (size int) {
1048 size += 4 // m.Retval
1051 func (m *Nat44EiHaFlushReply) Marshal(b []byte) ([]byte, error) {
1053 b = make([]byte, m.Size())
1055 buf := codec.NewBuffer(b)
1056 buf.EncodeInt32(m.Retval)
1057 return buf.Bytes(), nil
1059 func (m *Nat44EiHaFlushReply) Unmarshal(b []byte) error {
1060 buf := codec.NewBuffer(b)
1061 m.Retval = buf.DecodeInt32()
1065 // Nat44EiHaGetFailover defines message 'nat44_ei_ha_get_failover'.
1066 // Deprecated: the message will be removed in the future versions
1067 type Nat44EiHaGetFailover struct{}
1069 func (m *Nat44EiHaGetFailover) Reset() { *m = Nat44EiHaGetFailover{} }
1070 func (*Nat44EiHaGetFailover) GetMessageName() string { return "nat44_ei_ha_get_failover" }
1071 func (*Nat44EiHaGetFailover) GetCrcString() string { return "51077d14" }
1072 func (*Nat44EiHaGetFailover) GetMessageType() api.MessageType {
1073 return api.RequestMessage
1076 func (m *Nat44EiHaGetFailover) Size() (size int) {
1082 func (m *Nat44EiHaGetFailover) Marshal(b []byte) ([]byte, error) {
1084 b = make([]byte, m.Size())
1086 buf := codec.NewBuffer(b)
1087 return buf.Bytes(), nil
1089 func (m *Nat44EiHaGetFailover) Unmarshal(b []byte) error {
1093 // Nat44EiHaGetFailoverReply defines message 'nat44_ei_ha_get_failover_reply'.
1094 // Deprecated: the message will be removed in the future versions
1095 type Nat44EiHaGetFailoverReply struct {
1096 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
1097 IPAddress ip_types.IP4Address `binapi:"ip4_address,name=ip_address" json:"ip_address,omitempty"`
1098 Port uint16 `binapi:"u16,name=port" json:"port,omitempty"`
1099 SessionRefreshInterval uint32 `binapi:"u32,name=session_refresh_interval" json:"session_refresh_interval,omitempty"`
1102 func (m *Nat44EiHaGetFailoverReply) Reset() { *m = Nat44EiHaGetFailoverReply{} }
1103 func (*Nat44EiHaGetFailoverReply) GetMessageName() string { return "nat44_ei_ha_get_failover_reply" }
1104 func (*Nat44EiHaGetFailoverReply) GetCrcString() string { return "a67d8752" }
1105 func (*Nat44EiHaGetFailoverReply) GetMessageType() api.MessageType {
1106 return api.ReplyMessage
1109 func (m *Nat44EiHaGetFailoverReply) Size() (size int) {
1113 size += 4 // m.Retval
1114 size += 1 * 4 // m.IPAddress
1116 size += 4 // m.SessionRefreshInterval
1119 func (m *Nat44EiHaGetFailoverReply) Marshal(b []byte) ([]byte, error) {
1121 b = make([]byte, m.Size())
1123 buf := codec.NewBuffer(b)
1124 buf.EncodeInt32(m.Retval)
1125 buf.EncodeBytes(m.IPAddress[:], 4)
1126 buf.EncodeUint16(m.Port)
1127 buf.EncodeUint32(m.SessionRefreshInterval)
1128 return buf.Bytes(), nil
1130 func (m *Nat44EiHaGetFailoverReply) Unmarshal(b []byte) error {
1131 buf := codec.NewBuffer(b)
1132 m.Retval = buf.DecodeInt32()
1133 copy(m.IPAddress[:], buf.DecodeBytes(4))
1134 m.Port = buf.DecodeUint16()
1135 m.SessionRefreshInterval = buf.DecodeUint32()
1139 // Nat44EiHaGetListener defines message 'nat44_ei_ha_get_listener'.
1140 // Deprecated: the message will be removed in the future versions
1141 type Nat44EiHaGetListener struct{}
1143 func (m *Nat44EiHaGetListener) Reset() { *m = Nat44EiHaGetListener{} }
1144 func (*Nat44EiHaGetListener) GetMessageName() string { return "nat44_ei_ha_get_listener" }
1145 func (*Nat44EiHaGetListener) GetCrcString() string { return "51077d14" }
1146 func (*Nat44EiHaGetListener) GetMessageType() api.MessageType {
1147 return api.RequestMessage
1150 func (m *Nat44EiHaGetListener) Size() (size int) {
1156 func (m *Nat44EiHaGetListener) Marshal(b []byte) ([]byte, error) {
1158 b = make([]byte, m.Size())
1160 buf := codec.NewBuffer(b)
1161 return buf.Bytes(), nil
1163 func (m *Nat44EiHaGetListener) Unmarshal(b []byte) error {
1167 // Nat44EiHaGetListenerReply defines message 'nat44_ei_ha_get_listener_reply'.
1168 // Deprecated: the message will be removed in the future versions
1169 type Nat44EiHaGetListenerReply struct {
1170 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
1171 IPAddress ip_types.IP4Address `binapi:"ip4_address,name=ip_address" json:"ip_address,omitempty"`
1172 Port uint16 `binapi:"u16,name=port" json:"port,omitempty"`
1173 PathMtu uint32 `binapi:"u32,name=path_mtu" json:"path_mtu,omitempty"`
1176 func (m *Nat44EiHaGetListenerReply) Reset() { *m = Nat44EiHaGetListenerReply{} }
1177 func (*Nat44EiHaGetListenerReply) GetMessageName() string { return "nat44_ei_ha_get_listener_reply" }
1178 func (*Nat44EiHaGetListenerReply) GetCrcString() string { return "123ea41f" }
1179 func (*Nat44EiHaGetListenerReply) GetMessageType() api.MessageType {
1180 return api.ReplyMessage
1183 func (m *Nat44EiHaGetListenerReply) Size() (size int) {
1187 size += 4 // m.Retval
1188 size += 1 * 4 // m.IPAddress
1190 size += 4 // m.PathMtu
1193 func (m *Nat44EiHaGetListenerReply) Marshal(b []byte) ([]byte, error) {
1195 b = make([]byte, m.Size())
1197 buf := codec.NewBuffer(b)
1198 buf.EncodeInt32(m.Retval)
1199 buf.EncodeBytes(m.IPAddress[:], 4)
1200 buf.EncodeUint16(m.Port)
1201 buf.EncodeUint32(m.PathMtu)
1202 return buf.Bytes(), nil
1204 func (m *Nat44EiHaGetListenerReply) Unmarshal(b []byte) error {
1205 buf := codec.NewBuffer(b)
1206 m.Retval = buf.DecodeInt32()
1207 copy(m.IPAddress[:], buf.DecodeBytes(4))
1208 m.Port = buf.DecodeUint16()
1209 m.PathMtu = buf.DecodeUint32()
1213 // Nat44EiHaResync defines message 'nat44_ei_ha_resync'.
1214 // InProgress: the message form may change in the future versions
1215 type Nat44EiHaResync struct {
1216 WantResyncEvent uint8 `binapi:"u8,name=want_resync_event" json:"want_resync_event,omitempty"`
1217 PID uint32 `binapi:"u32,name=pid" json:"pid,omitempty"`
1220 func (m *Nat44EiHaResync) Reset() { *m = Nat44EiHaResync{} }
1221 func (*Nat44EiHaResync) GetMessageName() string { return "nat44_ei_ha_resync" }
1222 func (*Nat44EiHaResync) GetCrcString() string { return "c8ab9e03" }
1223 func (*Nat44EiHaResync) GetMessageType() api.MessageType {
1224 return api.RequestMessage
1227 func (m *Nat44EiHaResync) Size() (size int) {
1231 size += 1 // m.WantResyncEvent
1235 func (m *Nat44EiHaResync) Marshal(b []byte) ([]byte, error) {
1237 b = make([]byte, m.Size())
1239 buf := codec.NewBuffer(b)
1240 buf.EncodeUint8(m.WantResyncEvent)
1241 buf.EncodeUint32(m.PID)
1242 return buf.Bytes(), nil
1244 func (m *Nat44EiHaResync) Unmarshal(b []byte) error {
1245 buf := codec.NewBuffer(b)
1246 m.WantResyncEvent = buf.DecodeUint8()
1247 m.PID = buf.DecodeUint32()
1251 // Nat44EiHaResyncCompletedEvent defines message 'nat44_ei_ha_resync_completed_event'.
1252 // InProgress: the message form may change in the future versions
1253 type Nat44EiHaResyncCompletedEvent struct {
1254 PID uint32 `binapi:"u32,name=pid" json:"pid,omitempty"`
1255 MissedCount uint32 `binapi:"u32,name=missed_count" json:"missed_count,omitempty"`
1258 func (m *Nat44EiHaResyncCompletedEvent) Reset() { *m = Nat44EiHaResyncCompletedEvent{} }
1259 func (*Nat44EiHaResyncCompletedEvent) GetMessageName() string {
1260 return "nat44_ei_ha_resync_completed_event"
1262 func (*Nat44EiHaResyncCompletedEvent) GetCrcString() string { return "fdc598fb" }
1263 func (*Nat44EiHaResyncCompletedEvent) GetMessageType() api.MessageType {
1264 return api.EventMessage
1267 func (m *Nat44EiHaResyncCompletedEvent) Size() (size int) {
1272 size += 4 // m.MissedCount
1275 func (m *Nat44EiHaResyncCompletedEvent) Marshal(b []byte) ([]byte, error) {
1277 b = make([]byte, m.Size())
1279 buf := codec.NewBuffer(b)
1280 buf.EncodeUint32(m.PID)
1281 buf.EncodeUint32(m.MissedCount)
1282 return buf.Bytes(), nil
1284 func (m *Nat44EiHaResyncCompletedEvent) Unmarshal(b []byte) error {
1285 buf := codec.NewBuffer(b)
1286 m.PID = buf.DecodeUint32()
1287 m.MissedCount = buf.DecodeUint32()
1291 // Nat44EiHaResyncReply defines message 'nat44_ei_ha_resync_reply'.
1292 // InProgress: the message form may change in the future versions
1293 type Nat44EiHaResyncReply struct {
1294 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
1297 func (m *Nat44EiHaResyncReply) Reset() { *m = Nat44EiHaResyncReply{} }
1298 func (*Nat44EiHaResyncReply) GetMessageName() string { return "nat44_ei_ha_resync_reply" }
1299 func (*Nat44EiHaResyncReply) GetCrcString() string { return "e8d4e804" }
1300 func (*Nat44EiHaResyncReply) GetMessageType() api.MessageType {
1301 return api.ReplyMessage
1304 func (m *Nat44EiHaResyncReply) Size() (size int) {
1308 size += 4 // m.Retval
1311 func (m *Nat44EiHaResyncReply) Marshal(b []byte) ([]byte, error) {
1313 b = make([]byte, m.Size())
1315 buf := codec.NewBuffer(b)
1316 buf.EncodeInt32(m.Retval)
1317 return buf.Bytes(), nil
1319 func (m *Nat44EiHaResyncReply) Unmarshal(b []byte) error {
1320 buf := codec.NewBuffer(b)
1321 m.Retval = buf.DecodeInt32()
1325 // Nat44EiHaSetFailover defines message 'nat44_ei_ha_set_failover'.
1326 // InProgress: the message form may change in the future versions
1327 type Nat44EiHaSetFailover struct {
1328 IPAddress ip_types.IP4Address `binapi:"ip4_address,name=ip_address" json:"ip_address,omitempty"`
1329 Port uint16 `binapi:"u16,name=port" json:"port,omitempty"`
1330 SessionRefreshInterval uint32 `binapi:"u32,name=session_refresh_interval" json:"session_refresh_interval,omitempty"`
1333 func (m *Nat44EiHaSetFailover) Reset() { *m = Nat44EiHaSetFailover{} }
1334 func (*Nat44EiHaSetFailover) GetMessageName() string { return "nat44_ei_ha_set_failover" }
1335 func (*Nat44EiHaSetFailover) GetCrcString() string { return "718246af" }
1336 func (*Nat44EiHaSetFailover) GetMessageType() api.MessageType {
1337 return api.RequestMessage
1340 func (m *Nat44EiHaSetFailover) Size() (size int) {
1344 size += 1 * 4 // m.IPAddress
1346 size += 4 // m.SessionRefreshInterval
1349 func (m *Nat44EiHaSetFailover) Marshal(b []byte) ([]byte, error) {
1351 b = make([]byte, m.Size())
1353 buf := codec.NewBuffer(b)
1354 buf.EncodeBytes(m.IPAddress[:], 4)
1355 buf.EncodeUint16(m.Port)
1356 buf.EncodeUint32(m.SessionRefreshInterval)
1357 return buf.Bytes(), nil
1359 func (m *Nat44EiHaSetFailover) Unmarshal(b []byte) error {
1360 buf := codec.NewBuffer(b)
1361 copy(m.IPAddress[:], buf.DecodeBytes(4))
1362 m.Port = buf.DecodeUint16()
1363 m.SessionRefreshInterval = buf.DecodeUint32()
1367 // Nat44EiHaSetFailoverReply defines message 'nat44_ei_ha_set_failover_reply'.
1368 // InProgress: the message form may change in the future versions
1369 type Nat44EiHaSetFailoverReply struct {
1370 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
1373 func (m *Nat44EiHaSetFailoverReply) Reset() { *m = Nat44EiHaSetFailoverReply{} }
1374 func (*Nat44EiHaSetFailoverReply) GetMessageName() string { return "nat44_ei_ha_set_failover_reply" }
1375 func (*Nat44EiHaSetFailoverReply) GetCrcString() string { return "e8d4e804" }
1376 func (*Nat44EiHaSetFailoverReply) GetMessageType() api.MessageType {
1377 return api.ReplyMessage
1380 func (m *Nat44EiHaSetFailoverReply) Size() (size int) {
1384 size += 4 // m.Retval
1387 func (m *Nat44EiHaSetFailoverReply) Marshal(b []byte) ([]byte, error) {
1389 b = make([]byte, m.Size())
1391 buf := codec.NewBuffer(b)
1392 buf.EncodeInt32(m.Retval)
1393 return buf.Bytes(), nil
1395 func (m *Nat44EiHaSetFailoverReply) Unmarshal(b []byte) error {
1396 buf := codec.NewBuffer(b)
1397 m.Retval = buf.DecodeInt32()
1401 // Nat44EiHaSetListener defines message 'nat44_ei_ha_set_listener'.
1402 // InProgress: the message form may change in the future versions
1403 type Nat44EiHaSetListener struct {
1404 IPAddress ip_types.IP4Address `binapi:"ip4_address,name=ip_address" json:"ip_address,omitempty"`
1405 Port uint16 `binapi:"u16,name=port" json:"port,omitempty"`
1406 PathMtu uint32 `binapi:"u32,name=path_mtu" json:"path_mtu,omitempty"`
1409 func (m *Nat44EiHaSetListener) Reset() { *m = Nat44EiHaSetListener{} }
1410 func (*Nat44EiHaSetListener) GetMessageName() string { return "nat44_ei_ha_set_listener" }
1411 func (*Nat44EiHaSetListener) GetCrcString() string { return "e4a8cb4e" }
1412 func (*Nat44EiHaSetListener) GetMessageType() api.MessageType {
1413 return api.RequestMessage
1416 func (m *Nat44EiHaSetListener) Size() (size int) {
1420 size += 1 * 4 // m.IPAddress
1422 size += 4 // m.PathMtu
1425 func (m *Nat44EiHaSetListener) Marshal(b []byte) ([]byte, error) {
1427 b = make([]byte, m.Size())
1429 buf := codec.NewBuffer(b)
1430 buf.EncodeBytes(m.IPAddress[:], 4)
1431 buf.EncodeUint16(m.Port)
1432 buf.EncodeUint32(m.PathMtu)
1433 return buf.Bytes(), nil
1435 func (m *Nat44EiHaSetListener) Unmarshal(b []byte) error {
1436 buf := codec.NewBuffer(b)
1437 copy(m.IPAddress[:], buf.DecodeBytes(4))
1438 m.Port = buf.DecodeUint16()
1439 m.PathMtu = buf.DecodeUint32()
1443 // Nat44EiHaSetListenerReply defines message 'nat44_ei_ha_set_listener_reply'.
1444 // InProgress: the message form may change in the future versions
1445 type Nat44EiHaSetListenerReply struct {
1446 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
1449 func (m *Nat44EiHaSetListenerReply) Reset() { *m = Nat44EiHaSetListenerReply{} }
1450 func (*Nat44EiHaSetListenerReply) GetMessageName() string { return "nat44_ei_ha_set_listener_reply" }
1451 func (*Nat44EiHaSetListenerReply) GetCrcString() string { return "e8d4e804" }
1452 func (*Nat44EiHaSetListenerReply) GetMessageType() api.MessageType {
1453 return api.ReplyMessage
1456 func (m *Nat44EiHaSetListenerReply) Size() (size int) {
1460 size += 4 // m.Retval
1463 func (m *Nat44EiHaSetListenerReply) Marshal(b []byte) ([]byte, error) {
1465 b = make([]byte, m.Size())
1467 buf := codec.NewBuffer(b)
1468 buf.EncodeInt32(m.Retval)
1469 return buf.Bytes(), nil
1471 func (m *Nat44EiHaSetListenerReply) Unmarshal(b []byte) error {
1472 buf := codec.NewBuffer(b)
1473 m.Retval = buf.DecodeInt32()
1477 // Nat44EiIdentityMappingDetails defines message 'nat44_ei_identity_mapping_details'.
1478 // Deprecated: the message will be removed in the future versions
1479 type Nat44EiIdentityMappingDetails struct {
1480 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
1481 IPAddress ip_types.IP4Address `binapi:"ip4_address,name=ip_address" json:"ip_address,omitempty"`
1482 Protocol uint8 `binapi:"u8,name=protocol" json:"protocol,omitempty"`
1483 Port uint16 `binapi:"u16,name=port" json:"port,omitempty"`
1484 SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
1485 VrfID uint32 `binapi:"u32,name=vrf_id" json:"vrf_id,omitempty"`
1486 Tag string `binapi:"string[64],name=tag" json:"tag,omitempty"`
1489 func (m *Nat44EiIdentityMappingDetails) Reset() { *m = Nat44EiIdentityMappingDetails{} }
1490 func (*Nat44EiIdentityMappingDetails) GetMessageName() string {
1491 return "nat44_ei_identity_mapping_details"
1493 func (*Nat44EiIdentityMappingDetails) GetCrcString() string { return "30d53e26" }
1494 func (*Nat44EiIdentityMappingDetails) GetMessageType() api.MessageType {
1495 return api.ReplyMessage
1498 func (m *Nat44EiIdentityMappingDetails) Size() (size int) {
1502 size += 1 // m.Flags
1503 size += 1 * 4 // m.IPAddress
1504 size += 1 // m.Protocol
1506 size += 4 // m.SwIfIndex
1507 size += 4 // m.VrfID
1511 func (m *Nat44EiIdentityMappingDetails) Marshal(b []byte) ([]byte, error) {
1513 b = make([]byte, m.Size())
1515 buf := codec.NewBuffer(b)
1516 buf.EncodeUint8(uint8(m.Flags))
1517 buf.EncodeBytes(m.IPAddress[:], 4)
1518 buf.EncodeUint8(m.Protocol)
1519 buf.EncodeUint16(m.Port)
1520 buf.EncodeUint32(uint32(m.SwIfIndex))
1521 buf.EncodeUint32(m.VrfID)
1522 buf.EncodeString(m.Tag, 64)
1523 return buf.Bytes(), nil
1525 func (m *Nat44EiIdentityMappingDetails) Unmarshal(b []byte) error {
1526 buf := codec.NewBuffer(b)
1527 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
1528 copy(m.IPAddress[:], buf.DecodeBytes(4))
1529 m.Protocol = buf.DecodeUint8()
1530 m.Port = buf.DecodeUint16()
1531 m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
1532 m.VrfID = buf.DecodeUint32()
1533 m.Tag = buf.DecodeString(64)
1537 // Nat44EiIdentityMappingDump defines message 'nat44_ei_identity_mapping_dump'.
1538 // Deprecated: the message will be removed in the future versions
1539 type Nat44EiIdentityMappingDump struct{}
1541 func (m *Nat44EiIdentityMappingDump) Reset() { *m = Nat44EiIdentityMappingDump{} }
1542 func (*Nat44EiIdentityMappingDump) GetMessageName() string { return "nat44_ei_identity_mapping_dump" }
1543 func (*Nat44EiIdentityMappingDump) GetCrcString() string { return "51077d14" }
1544 func (*Nat44EiIdentityMappingDump) GetMessageType() api.MessageType {
1545 return api.RequestMessage
1548 func (m *Nat44EiIdentityMappingDump) Size() (size int) {
1554 func (m *Nat44EiIdentityMappingDump) Marshal(b []byte) ([]byte, error) {
1556 b = make([]byte, m.Size())
1558 buf := codec.NewBuffer(b)
1559 return buf.Bytes(), nil
1561 func (m *Nat44EiIdentityMappingDump) Unmarshal(b []byte) error {
1565 // Nat44EiInterfaceAddDelFeature defines message 'nat44_ei_interface_add_del_feature'.
1566 // InProgress: the message form may change in the future versions
1567 type Nat44EiInterfaceAddDelFeature struct {
1568 IsAdd bool `binapi:"bool,name=is_add" json:"is_add,omitempty"`
1569 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
1570 SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
1573 func (m *Nat44EiInterfaceAddDelFeature) Reset() { *m = Nat44EiInterfaceAddDelFeature{} }
1574 func (*Nat44EiInterfaceAddDelFeature) GetMessageName() string {
1575 return "nat44_ei_interface_add_del_feature"
1577 func (*Nat44EiInterfaceAddDelFeature) GetCrcString() string { return "63a2db8b" }
1578 func (*Nat44EiInterfaceAddDelFeature) GetMessageType() api.MessageType {
1579 return api.RequestMessage
1582 func (m *Nat44EiInterfaceAddDelFeature) Size() (size int) {
1586 size += 1 // m.IsAdd
1587 size += 1 // m.Flags
1588 size += 4 // m.SwIfIndex
1591 func (m *Nat44EiInterfaceAddDelFeature) Marshal(b []byte) ([]byte, error) {
1593 b = make([]byte, m.Size())
1595 buf := codec.NewBuffer(b)
1596 buf.EncodeBool(m.IsAdd)
1597 buf.EncodeUint8(uint8(m.Flags))
1598 buf.EncodeUint32(uint32(m.SwIfIndex))
1599 return buf.Bytes(), nil
1601 func (m *Nat44EiInterfaceAddDelFeature) Unmarshal(b []byte) error {
1602 buf := codec.NewBuffer(b)
1603 m.IsAdd = buf.DecodeBool()
1604 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
1605 m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
1609 // Nat44EiInterfaceAddDelFeatureReply defines message 'nat44_ei_interface_add_del_feature_reply'.
1610 // InProgress: the message form may change in the future versions
1611 type Nat44EiInterfaceAddDelFeatureReply struct {
1612 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
1615 func (m *Nat44EiInterfaceAddDelFeatureReply) Reset() { *m = Nat44EiInterfaceAddDelFeatureReply{} }
1616 func (*Nat44EiInterfaceAddDelFeatureReply) GetMessageName() string {
1617 return "nat44_ei_interface_add_del_feature_reply"
1619 func (*Nat44EiInterfaceAddDelFeatureReply) GetCrcString() string { return "e8d4e804" }
1620 func (*Nat44EiInterfaceAddDelFeatureReply) GetMessageType() api.MessageType {
1621 return api.ReplyMessage
1624 func (m *Nat44EiInterfaceAddDelFeatureReply) Size() (size int) {
1628 size += 4 // m.Retval
1631 func (m *Nat44EiInterfaceAddDelFeatureReply) Marshal(b []byte) ([]byte, error) {
1633 b = make([]byte, m.Size())
1635 buf := codec.NewBuffer(b)
1636 buf.EncodeInt32(m.Retval)
1637 return buf.Bytes(), nil
1639 func (m *Nat44EiInterfaceAddDelFeatureReply) Unmarshal(b []byte) error {
1640 buf := codec.NewBuffer(b)
1641 m.Retval = buf.DecodeInt32()
1645 // Nat44EiInterfaceAddDelOutputFeature defines message 'nat44_ei_interface_add_del_output_feature'.
1646 // Deprecated: the message will be removed in the future versions
1647 type Nat44EiInterfaceAddDelOutputFeature struct {
1648 IsAdd bool `binapi:"bool,name=is_add" json:"is_add,omitempty"`
1649 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
1650 SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
1653 func (m *Nat44EiInterfaceAddDelOutputFeature) Reset() { *m = Nat44EiInterfaceAddDelOutputFeature{} }
1654 func (*Nat44EiInterfaceAddDelOutputFeature) GetMessageName() string {
1655 return "nat44_ei_interface_add_del_output_feature"
1657 func (*Nat44EiInterfaceAddDelOutputFeature) GetCrcString() string { return "63a2db8b" }
1658 func (*Nat44EiInterfaceAddDelOutputFeature) GetMessageType() api.MessageType {
1659 return api.RequestMessage
1662 func (m *Nat44EiInterfaceAddDelOutputFeature) Size() (size int) {
1666 size += 1 // m.IsAdd
1667 size += 1 // m.Flags
1668 size += 4 // m.SwIfIndex
1671 func (m *Nat44EiInterfaceAddDelOutputFeature) Marshal(b []byte) ([]byte, error) {
1673 b = make([]byte, m.Size())
1675 buf := codec.NewBuffer(b)
1676 buf.EncodeBool(m.IsAdd)
1677 buf.EncodeUint8(uint8(m.Flags))
1678 buf.EncodeUint32(uint32(m.SwIfIndex))
1679 return buf.Bytes(), nil
1681 func (m *Nat44EiInterfaceAddDelOutputFeature) Unmarshal(b []byte) error {
1682 buf := codec.NewBuffer(b)
1683 m.IsAdd = buf.DecodeBool()
1684 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
1685 m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
1689 // Nat44EiInterfaceAddDelOutputFeatureReply defines message 'nat44_ei_interface_add_del_output_feature_reply'.
1690 // Deprecated: the message will be removed in the future versions
1691 type Nat44EiInterfaceAddDelOutputFeatureReply struct {
1692 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
1695 func (m *Nat44EiInterfaceAddDelOutputFeatureReply) Reset() {
1696 *m = Nat44EiInterfaceAddDelOutputFeatureReply{}
1698 func (*Nat44EiInterfaceAddDelOutputFeatureReply) GetMessageName() string {
1699 return "nat44_ei_interface_add_del_output_feature_reply"
1701 func (*Nat44EiInterfaceAddDelOutputFeatureReply) GetCrcString() string { return "e8d4e804" }
1702 func (*Nat44EiInterfaceAddDelOutputFeatureReply) GetMessageType() api.MessageType {
1703 return api.ReplyMessage
1706 func (m *Nat44EiInterfaceAddDelOutputFeatureReply) Size() (size int) {
1710 size += 4 // m.Retval
1713 func (m *Nat44EiInterfaceAddDelOutputFeatureReply) Marshal(b []byte) ([]byte, error) {
1715 b = make([]byte, m.Size())
1717 buf := codec.NewBuffer(b)
1718 buf.EncodeInt32(m.Retval)
1719 return buf.Bytes(), nil
1721 func (m *Nat44EiInterfaceAddDelOutputFeatureReply) Unmarshal(b []byte) error {
1722 buf := codec.NewBuffer(b)
1723 m.Retval = buf.DecodeInt32()
1727 // Nat44EiInterfaceAddrDetails defines message 'nat44_ei_interface_addr_details'.
1728 // Deprecated: the message will be removed in the future versions
1729 type Nat44EiInterfaceAddrDetails struct {
1730 SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
1733 func (m *Nat44EiInterfaceAddrDetails) Reset() { *m = Nat44EiInterfaceAddrDetails{} }
1734 func (*Nat44EiInterfaceAddrDetails) GetMessageName() string { return "nat44_ei_interface_addr_details" }
1735 func (*Nat44EiInterfaceAddrDetails) GetCrcString() string { return "0b45011c" }
1736 func (*Nat44EiInterfaceAddrDetails) GetMessageType() api.MessageType {
1737 return api.ReplyMessage
1740 func (m *Nat44EiInterfaceAddrDetails) Size() (size int) {
1744 size += 4 // m.SwIfIndex
1747 func (m *Nat44EiInterfaceAddrDetails) Marshal(b []byte) ([]byte, error) {
1749 b = make([]byte, m.Size())
1751 buf := codec.NewBuffer(b)
1752 buf.EncodeUint32(uint32(m.SwIfIndex))
1753 return buf.Bytes(), nil
1755 func (m *Nat44EiInterfaceAddrDetails) Unmarshal(b []byte) error {
1756 buf := codec.NewBuffer(b)
1757 m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
1761 // Nat44EiInterfaceAddrDump defines message 'nat44_ei_interface_addr_dump'.
1762 // Deprecated: the message will be removed in the future versions
1763 type Nat44EiInterfaceAddrDump struct{}
1765 func (m *Nat44EiInterfaceAddrDump) Reset() { *m = Nat44EiInterfaceAddrDump{} }
1766 func (*Nat44EiInterfaceAddrDump) GetMessageName() string { return "nat44_ei_interface_addr_dump" }
1767 func (*Nat44EiInterfaceAddrDump) GetCrcString() string { return "51077d14" }
1768 func (*Nat44EiInterfaceAddrDump) GetMessageType() api.MessageType {
1769 return api.RequestMessage
1772 func (m *Nat44EiInterfaceAddrDump) Size() (size int) {
1778 func (m *Nat44EiInterfaceAddrDump) Marshal(b []byte) ([]byte, error) {
1780 b = make([]byte, m.Size())
1782 buf := codec.NewBuffer(b)
1783 return buf.Bytes(), nil
1785 func (m *Nat44EiInterfaceAddrDump) Unmarshal(b []byte) error {
1789 // Nat44EiInterfaceDetails defines message 'nat44_ei_interface_details'.
1790 // InProgress: the message form may change in the future versions
1791 type Nat44EiInterfaceDetails struct {
1792 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
1793 SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
1796 func (m *Nat44EiInterfaceDetails) Reset() { *m = Nat44EiInterfaceDetails{} }
1797 func (*Nat44EiInterfaceDetails) GetMessageName() string { return "nat44_ei_interface_details" }
1798 func (*Nat44EiInterfaceDetails) GetCrcString() string { return "f446e508" }
1799 func (*Nat44EiInterfaceDetails) GetMessageType() api.MessageType {
1800 return api.ReplyMessage
1803 func (m *Nat44EiInterfaceDetails) Size() (size int) {
1807 size += 1 // m.Flags
1808 size += 4 // m.SwIfIndex
1811 func (m *Nat44EiInterfaceDetails) Marshal(b []byte) ([]byte, error) {
1813 b = make([]byte, m.Size())
1815 buf := codec.NewBuffer(b)
1816 buf.EncodeUint8(uint8(m.Flags))
1817 buf.EncodeUint32(uint32(m.SwIfIndex))
1818 return buf.Bytes(), nil
1820 func (m *Nat44EiInterfaceDetails) Unmarshal(b []byte) error {
1821 buf := codec.NewBuffer(b)
1822 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
1823 m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
1827 // Nat44EiInterfaceDump defines message 'nat44_ei_interface_dump'.
1828 // InProgress: the message form may change in the future versions
1829 type Nat44EiInterfaceDump struct{}
1831 func (m *Nat44EiInterfaceDump) Reset() { *m = Nat44EiInterfaceDump{} }
1832 func (*Nat44EiInterfaceDump) GetMessageName() string { return "nat44_ei_interface_dump" }
1833 func (*Nat44EiInterfaceDump) GetCrcString() string { return "51077d14" }
1834 func (*Nat44EiInterfaceDump) GetMessageType() api.MessageType {
1835 return api.RequestMessage
1838 func (m *Nat44EiInterfaceDump) Size() (size int) {
1844 func (m *Nat44EiInterfaceDump) Marshal(b []byte) ([]byte, error) {
1846 b = make([]byte, m.Size())
1848 buf := codec.NewBuffer(b)
1849 return buf.Bytes(), nil
1851 func (m *Nat44EiInterfaceDump) Unmarshal(b []byte) error {
1855 // Nat44EiInterfaceOutputFeatureDetails defines message 'nat44_ei_interface_output_feature_details'.
1856 // Deprecated: the message will be removed in the future versions
1857 type Nat44EiInterfaceOutputFeatureDetails struct {
1858 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
1859 SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
1862 func (m *Nat44EiInterfaceOutputFeatureDetails) Reset() { *m = Nat44EiInterfaceOutputFeatureDetails{} }
1863 func (*Nat44EiInterfaceOutputFeatureDetails) GetMessageName() string {
1864 return "nat44_ei_interface_output_feature_details"
1866 func (*Nat44EiInterfaceOutputFeatureDetails) GetCrcString() string { return "f446e508" }
1867 func (*Nat44EiInterfaceOutputFeatureDetails) GetMessageType() api.MessageType {
1868 return api.ReplyMessage
1871 func (m *Nat44EiInterfaceOutputFeatureDetails) Size() (size int) {
1875 size += 1 // m.Flags
1876 size += 4 // m.SwIfIndex
1879 func (m *Nat44EiInterfaceOutputFeatureDetails) Marshal(b []byte) ([]byte, error) {
1881 b = make([]byte, m.Size())
1883 buf := codec.NewBuffer(b)
1884 buf.EncodeUint8(uint8(m.Flags))
1885 buf.EncodeUint32(uint32(m.SwIfIndex))
1886 return buf.Bytes(), nil
1888 func (m *Nat44EiInterfaceOutputFeatureDetails) Unmarshal(b []byte) error {
1889 buf := codec.NewBuffer(b)
1890 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
1891 m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
1895 // Nat44EiInterfaceOutputFeatureDump defines message 'nat44_ei_interface_output_feature_dump'.
1896 // Deprecated: the message will be removed in the future versions
1897 type Nat44EiInterfaceOutputFeatureDump struct{}
1899 func (m *Nat44EiInterfaceOutputFeatureDump) Reset() { *m = Nat44EiInterfaceOutputFeatureDump{} }
1900 func (*Nat44EiInterfaceOutputFeatureDump) GetMessageName() string {
1901 return "nat44_ei_interface_output_feature_dump"
1903 func (*Nat44EiInterfaceOutputFeatureDump) GetCrcString() string { return "51077d14" }
1904 func (*Nat44EiInterfaceOutputFeatureDump) GetMessageType() api.MessageType {
1905 return api.RequestMessage
1908 func (m *Nat44EiInterfaceOutputFeatureDump) Size() (size int) {
1914 func (m *Nat44EiInterfaceOutputFeatureDump) Marshal(b []byte) ([]byte, error) {
1916 b = make([]byte, m.Size())
1918 buf := codec.NewBuffer(b)
1919 return buf.Bytes(), nil
1921 func (m *Nat44EiInterfaceOutputFeatureDump) Unmarshal(b []byte) error {
1925 // Nat44EiIpfixEnableDisable defines message 'nat44_ei_ipfix_enable_disable'.
1926 // InProgress: the message form may change in the future versions
1927 type Nat44EiIpfixEnableDisable struct {
1928 DomainID uint32 `binapi:"u32,name=domain_id" json:"domain_id,omitempty"`
1929 SrcPort uint16 `binapi:"u16,name=src_port" json:"src_port,omitempty"`
1930 Enable bool `binapi:"bool,name=enable" json:"enable,omitempty"`
1933 func (m *Nat44EiIpfixEnableDisable) Reset() { *m = Nat44EiIpfixEnableDisable{} }
1934 func (*Nat44EiIpfixEnableDisable) GetMessageName() string { return "nat44_ei_ipfix_enable_disable" }
1935 func (*Nat44EiIpfixEnableDisable) GetCrcString() string { return "9af4a2d2" }
1936 func (*Nat44EiIpfixEnableDisable) GetMessageType() api.MessageType {
1937 return api.RequestMessage
1940 func (m *Nat44EiIpfixEnableDisable) Size() (size int) {
1944 size += 4 // m.DomainID
1945 size += 2 // m.SrcPort
1946 size += 1 // m.Enable
1949 func (m *Nat44EiIpfixEnableDisable) Marshal(b []byte) ([]byte, error) {
1951 b = make([]byte, m.Size())
1953 buf := codec.NewBuffer(b)
1954 buf.EncodeUint32(m.DomainID)
1955 buf.EncodeUint16(m.SrcPort)
1956 buf.EncodeBool(m.Enable)
1957 return buf.Bytes(), nil
1959 func (m *Nat44EiIpfixEnableDisable) Unmarshal(b []byte) error {
1960 buf := codec.NewBuffer(b)
1961 m.DomainID = buf.DecodeUint32()
1962 m.SrcPort = buf.DecodeUint16()
1963 m.Enable = buf.DecodeBool()
1967 // Nat44EiIpfixEnableDisableReply defines message 'nat44_ei_ipfix_enable_disable_reply'.
1968 // InProgress: the message form may change in the future versions
1969 type Nat44EiIpfixEnableDisableReply struct {
1970 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
1973 func (m *Nat44EiIpfixEnableDisableReply) Reset() { *m = Nat44EiIpfixEnableDisableReply{} }
1974 func (*Nat44EiIpfixEnableDisableReply) GetMessageName() string {
1975 return "nat44_ei_ipfix_enable_disable_reply"
1977 func (*Nat44EiIpfixEnableDisableReply) GetCrcString() string { return "e8d4e804" }
1978 func (*Nat44EiIpfixEnableDisableReply) GetMessageType() api.MessageType {
1979 return api.ReplyMessage
1982 func (m *Nat44EiIpfixEnableDisableReply) Size() (size int) {
1986 size += 4 // m.Retval
1989 func (m *Nat44EiIpfixEnableDisableReply) Marshal(b []byte) ([]byte, error) {
1991 b = make([]byte, m.Size())
1993 buf := codec.NewBuffer(b)
1994 buf.EncodeInt32(m.Retval)
1995 return buf.Bytes(), nil
1997 func (m *Nat44EiIpfixEnableDisableReply) Unmarshal(b []byte) error {
1998 buf := codec.NewBuffer(b)
1999 m.Retval = buf.DecodeInt32()
2003 // Nat44EiOutputInterfaceDetails defines message 'nat44_ei_output_interface_details'.
2004 type Nat44EiOutputInterfaceDetails struct {
2005 SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
2008 func (m *Nat44EiOutputInterfaceDetails) Reset() { *m = Nat44EiOutputInterfaceDetails{} }
2009 func (*Nat44EiOutputInterfaceDetails) GetMessageName() string {
2010 return "nat44_ei_output_interface_details"
2012 func (*Nat44EiOutputInterfaceDetails) GetCrcString() string { return "0b45011c" }
2013 func (*Nat44EiOutputInterfaceDetails) GetMessageType() api.MessageType {
2014 return api.ReplyMessage
2017 func (m *Nat44EiOutputInterfaceDetails) Size() (size int) {
2021 size += 4 // m.SwIfIndex
2024 func (m *Nat44EiOutputInterfaceDetails) Marshal(b []byte) ([]byte, error) {
2026 b = make([]byte, m.Size())
2028 buf := codec.NewBuffer(b)
2029 buf.EncodeUint32(uint32(m.SwIfIndex))
2030 return buf.Bytes(), nil
2032 func (m *Nat44EiOutputInterfaceDetails) Unmarshal(b []byte) error {
2033 buf := codec.NewBuffer(b)
2034 m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
2038 // Nat44EiOutputInterfaceGet defines message 'nat44_ei_output_interface_get'.
2039 type Nat44EiOutputInterfaceGet struct {
2040 Cursor uint32 `binapi:"u32,name=cursor" json:"cursor,omitempty"`
2043 func (m *Nat44EiOutputInterfaceGet) Reset() { *m = Nat44EiOutputInterfaceGet{} }
2044 func (*Nat44EiOutputInterfaceGet) GetMessageName() string { return "nat44_ei_output_interface_get" }
2045 func (*Nat44EiOutputInterfaceGet) GetCrcString() string { return "f75ba505" }
2046 func (*Nat44EiOutputInterfaceGet) GetMessageType() api.MessageType {
2047 return api.RequestMessage
2050 func (m *Nat44EiOutputInterfaceGet) Size() (size int) {
2054 size += 4 // m.Cursor
2057 func (m *Nat44EiOutputInterfaceGet) Marshal(b []byte) ([]byte, error) {
2059 b = make([]byte, m.Size())
2061 buf := codec.NewBuffer(b)
2062 buf.EncodeUint32(m.Cursor)
2063 return buf.Bytes(), nil
2065 func (m *Nat44EiOutputInterfaceGet) Unmarshal(b []byte) error {
2066 buf := codec.NewBuffer(b)
2067 m.Cursor = buf.DecodeUint32()
2071 // Nat44EiOutputInterfaceGetReply defines message 'nat44_ei_output_interface_get_reply'.
2072 type Nat44EiOutputInterfaceGetReply struct {
2073 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
2074 Cursor uint32 `binapi:"u32,name=cursor" json:"cursor,omitempty"`
2077 func (m *Nat44EiOutputInterfaceGetReply) Reset() { *m = Nat44EiOutputInterfaceGetReply{} }
2078 func (*Nat44EiOutputInterfaceGetReply) GetMessageName() string {
2079 return "nat44_ei_output_interface_get_reply"
2081 func (*Nat44EiOutputInterfaceGetReply) GetCrcString() string { return "53b48f5d" }
2082 func (*Nat44EiOutputInterfaceGetReply) GetMessageType() api.MessageType {
2083 return api.ReplyMessage
2086 func (m *Nat44EiOutputInterfaceGetReply) Size() (size int) {
2090 size += 4 // m.Retval
2091 size += 4 // m.Cursor
2094 func (m *Nat44EiOutputInterfaceGetReply) Marshal(b []byte) ([]byte, error) {
2096 b = make([]byte, m.Size())
2098 buf := codec.NewBuffer(b)
2099 buf.EncodeInt32(m.Retval)
2100 buf.EncodeUint32(m.Cursor)
2101 return buf.Bytes(), nil
2103 func (m *Nat44EiOutputInterfaceGetReply) Unmarshal(b []byte) error {
2104 buf := codec.NewBuffer(b)
2105 m.Retval = buf.DecodeInt32()
2106 m.Cursor = buf.DecodeUint32()
2110 // Nat44EiPluginEnableDisable defines message 'nat44_ei_plugin_enable_disable'.
2111 // InProgress: the message form may change in the future versions
2112 type Nat44EiPluginEnableDisable struct {
2113 InsideVrf uint32 `binapi:"u32,name=inside_vrf" json:"inside_vrf,omitempty"`
2114 OutsideVrf uint32 `binapi:"u32,name=outside_vrf" json:"outside_vrf,omitempty"`
2115 Users uint32 `binapi:"u32,name=users" json:"users,omitempty"`
2116 UserMemory uint32 `binapi:"u32,name=user_memory" json:"user_memory,omitempty"`
2117 Sessions uint32 `binapi:"u32,name=sessions" json:"sessions,omitempty"`
2118 SessionMemory uint32 `binapi:"u32,name=session_memory" json:"session_memory,omitempty"`
2119 UserSessions uint32 `binapi:"u32,name=user_sessions" json:"user_sessions,omitempty"`
2120 Enable bool `binapi:"bool,name=enable" json:"enable,omitempty"`
2121 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
2124 func (m *Nat44EiPluginEnableDisable) Reset() { *m = Nat44EiPluginEnableDisable{} }
2125 func (*Nat44EiPluginEnableDisable) GetMessageName() string { return "nat44_ei_plugin_enable_disable" }
2126 func (*Nat44EiPluginEnableDisable) GetCrcString() string { return "bf692144" }
2127 func (*Nat44EiPluginEnableDisable) GetMessageType() api.MessageType {
2128 return api.RequestMessage
2131 func (m *Nat44EiPluginEnableDisable) Size() (size int) {
2135 size += 4 // m.InsideVrf
2136 size += 4 // m.OutsideVrf
2137 size += 4 // m.Users
2138 size += 4 // m.UserMemory
2139 size += 4 // m.Sessions
2140 size += 4 // m.SessionMemory
2141 size += 4 // m.UserSessions
2142 size += 1 // m.Enable
2143 size += 1 // m.Flags
2146 func (m *Nat44EiPluginEnableDisable) Marshal(b []byte) ([]byte, error) {
2148 b = make([]byte, m.Size())
2150 buf := codec.NewBuffer(b)
2151 buf.EncodeUint32(m.InsideVrf)
2152 buf.EncodeUint32(m.OutsideVrf)
2153 buf.EncodeUint32(m.Users)
2154 buf.EncodeUint32(m.UserMemory)
2155 buf.EncodeUint32(m.Sessions)
2156 buf.EncodeUint32(m.SessionMemory)
2157 buf.EncodeUint32(m.UserSessions)
2158 buf.EncodeBool(m.Enable)
2159 buf.EncodeUint8(uint8(m.Flags))
2160 return buf.Bytes(), nil
2162 func (m *Nat44EiPluginEnableDisable) Unmarshal(b []byte) error {
2163 buf := codec.NewBuffer(b)
2164 m.InsideVrf = buf.DecodeUint32()
2165 m.OutsideVrf = buf.DecodeUint32()
2166 m.Users = buf.DecodeUint32()
2167 m.UserMemory = buf.DecodeUint32()
2168 m.Sessions = buf.DecodeUint32()
2169 m.SessionMemory = buf.DecodeUint32()
2170 m.UserSessions = buf.DecodeUint32()
2171 m.Enable = buf.DecodeBool()
2172 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
2176 // Nat44EiPluginEnableDisableReply defines message 'nat44_ei_plugin_enable_disable_reply'.
2177 // InProgress: the message form may change in the future versions
2178 type Nat44EiPluginEnableDisableReply struct {
2179 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
2182 func (m *Nat44EiPluginEnableDisableReply) Reset() { *m = Nat44EiPluginEnableDisableReply{} }
2183 func (*Nat44EiPluginEnableDisableReply) GetMessageName() string {
2184 return "nat44_ei_plugin_enable_disable_reply"
2186 func (*Nat44EiPluginEnableDisableReply) GetCrcString() string { return "e8d4e804" }
2187 func (*Nat44EiPluginEnableDisableReply) GetMessageType() api.MessageType {
2188 return api.ReplyMessage
2191 func (m *Nat44EiPluginEnableDisableReply) Size() (size int) {
2195 size += 4 // m.Retval
2198 func (m *Nat44EiPluginEnableDisableReply) Marshal(b []byte) ([]byte, error) {
2200 b = make([]byte, m.Size())
2202 buf := codec.NewBuffer(b)
2203 buf.EncodeInt32(m.Retval)
2204 return buf.Bytes(), nil
2206 func (m *Nat44EiPluginEnableDisableReply) Unmarshal(b []byte) error {
2207 buf := codec.NewBuffer(b)
2208 m.Retval = buf.DecodeInt32()
2212 // Nat44EiSetAddrAndPortAllocAlg defines message 'nat44_ei_set_addr_and_port_alloc_alg'.
2213 // InProgress: the message form may change in the future versions
2214 type Nat44EiSetAddrAndPortAllocAlg struct {
2215 Alg uint8 `binapi:"u8,name=alg" json:"alg,omitempty"`
2216 PsidOffset uint8 `binapi:"u8,name=psid_offset" json:"psid_offset,omitempty"`
2217 PsidLength uint8 `binapi:"u8,name=psid_length" json:"psid_length,omitempty"`
2218 Psid uint16 `binapi:"u16,name=psid" json:"psid,omitempty"`
2219 StartPort uint16 `binapi:"u16,name=start_port" json:"start_port,omitempty"`
2220 EndPort uint16 `binapi:"u16,name=end_port" json:"end_port,omitempty"`
2223 func (m *Nat44EiSetAddrAndPortAllocAlg) Reset() { *m = Nat44EiSetAddrAndPortAllocAlg{} }
2224 func (*Nat44EiSetAddrAndPortAllocAlg) GetMessageName() string {
2225 return "nat44_ei_set_addr_and_port_alloc_alg"
2227 func (*Nat44EiSetAddrAndPortAllocAlg) GetCrcString() string { return "deeb746f" }
2228 func (*Nat44EiSetAddrAndPortAllocAlg) GetMessageType() api.MessageType {
2229 return api.RequestMessage
2232 func (m *Nat44EiSetAddrAndPortAllocAlg) Size() (size int) {
2237 size += 1 // m.PsidOffset
2238 size += 1 // m.PsidLength
2240 size += 2 // m.StartPort
2241 size += 2 // m.EndPort
2244 func (m *Nat44EiSetAddrAndPortAllocAlg) Marshal(b []byte) ([]byte, error) {
2246 b = make([]byte, m.Size())
2248 buf := codec.NewBuffer(b)
2249 buf.EncodeUint8(m.Alg)
2250 buf.EncodeUint8(m.PsidOffset)
2251 buf.EncodeUint8(m.PsidLength)
2252 buf.EncodeUint16(m.Psid)
2253 buf.EncodeUint16(m.StartPort)
2254 buf.EncodeUint16(m.EndPort)
2255 return buf.Bytes(), nil
2257 func (m *Nat44EiSetAddrAndPortAllocAlg) Unmarshal(b []byte) error {
2258 buf := codec.NewBuffer(b)
2259 m.Alg = buf.DecodeUint8()
2260 m.PsidOffset = buf.DecodeUint8()
2261 m.PsidLength = buf.DecodeUint8()
2262 m.Psid = buf.DecodeUint16()
2263 m.StartPort = buf.DecodeUint16()
2264 m.EndPort = buf.DecodeUint16()
2268 // Nat44EiSetAddrAndPortAllocAlgReply defines message 'nat44_ei_set_addr_and_port_alloc_alg_reply'.
2269 // InProgress: the message form may change in the future versions
2270 type Nat44EiSetAddrAndPortAllocAlgReply struct {
2271 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
2274 func (m *Nat44EiSetAddrAndPortAllocAlgReply) Reset() { *m = Nat44EiSetAddrAndPortAllocAlgReply{} }
2275 func (*Nat44EiSetAddrAndPortAllocAlgReply) GetMessageName() string {
2276 return "nat44_ei_set_addr_and_port_alloc_alg_reply"
2278 func (*Nat44EiSetAddrAndPortAllocAlgReply) GetCrcString() string { return "e8d4e804" }
2279 func (*Nat44EiSetAddrAndPortAllocAlgReply) GetMessageType() api.MessageType {
2280 return api.ReplyMessage
2283 func (m *Nat44EiSetAddrAndPortAllocAlgReply) Size() (size int) {
2287 size += 4 // m.Retval
2290 func (m *Nat44EiSetAddrAndPortAllocAlgReply) Marshal(b []byte) ([]byte, error) {
2292 b = make([]byte, m.Size())
2294 buf := codec.NewBuffer(b)
2295 buf.EncodeInt32(m.Retval)
2296 return buf.Bytes(), nil
2298 func (m *Nat44EiSetAddrAndPortAllocAlgReply) Unmarshal(b []byte) error {
2299 buf := codec.NewBuffer(b)
2300 m.Retval = buf.DecodeInt32()
2304 // Nat44EiSetFqOptions defines message 'nat44_ei_set_fq_options'.
2305 // InProgress: the message form may change in the future versions
2306 type Nat44EiSetFqOptions struct {
2307 FrameQueueNelts uint32 `binapi:"u32,name=frame_queue_nelts" json:"frame_queue_nelts,omitempty"`
2310 func (m *Nat44EiSetFqOptions) Reset() { *m = Nat44EiSetFqOptions{} }
2311 func (*Nat44EiSetFqOptions) GetMessageName() string { return "nat44_ei_set_fq_options" }
2312 func (*Nat44EiSetFqOptions) GetCrcString() string { return "2399bd71" }
2313 func (*Nat44EiSetFqOptions) GetMessageType() api.MessageType {
2314 return api.RequestMessage
2317 func (m *Nat44EiSetFqOptions) Size() (size int) {
2321 size += 4 // m.FrameQueueNelts
2324 func (m *Nat44EiSetFqOptions) Marshal(b []byte) ([]byte, error) {
2326 b = make([]byte, m.Size())
2328 buf := codec.NewBuffer(b)
2329 buf.EncodeUint32(m.FrameQueueNelts)
2330 return buf.Bytes(), nil
2332 func (m *Nat44EiSetFqOptions) Unmarshal(b []byte) error {
2333 buf := codec.NewBuffer(b)
2334 m.FrameQueueNelts = buf.DecodeUint32()
2338 // Nat44EiSetFqOptionsReply defines message 'nat44_ei_set_fq_options_reply'.
2339 // InProgress: the message form may change in the future versions
2340 type Nat44EiSetFqOptionsReply struct {
2341 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
2344 func (m *Nat44EiSetFqOptionsReply) Reset() { *m = Nat44EiSetFqOptionsReply{} }
2345 func (*Nat44EiSetFqOptionsReply) GetMessageName() string { return "nat44_ei_set_fq_options_reply" }
2346 func (*Nat44EiSetFqOptionsReply) GetCrcString() string { return "e8d4e804" }
2347 func (*Nat44EiSetFqOptionsReply) GetMessageType() api.MessageType {
2348 return api.ReplyMessage
2351 func (m *Nat44EiSetFqOptionsReply) Size() (size int) {
2355 size += 4 // m.Retval
2358 func (m *Nat44EiSetFqOptionsReply) Marshal(b []byte) ([]byte, error) {
2360 b = make([]byte, m.Size())
2362 buf := codec.NewBuffer(b)
2363 buf.EncodeInt32(m.Retval)
2364 return buf.Bytes(), nil
2366 func (m *Nat44EiSetFqOptionsReply) Unmarshal(b []byte) error {
2367 buf := codec.NewBuffer(b)
2368 m.Retval = buf.DecodeInt32()
2372 // Nat44EiSetLogLevel defines message 'nat44_ei_set_log_level'.
2373 // Deprecated: the message will be removed in the future versions
2374 type Nat44EiSetLogLevel struct {
2375 LogLevel nat_types.NatLogLevel `binapi:"nat_log_level,name=log_level" json:"log_level,omitempty"`
2378 func (m *Nat44EiSetLogLevel) Reset() { *m = Nat44EiSetLogLevel{} }
2379 func (*Nat44EiSetLogLevel) GetMessageName() string { return "nat44_ei_set_log_level" }
2380 func (*Nat44EiSetLogLevel) GetCrcString() string { return "70076bfe" }
2381 func (*Nat44EiSetLogLevel) GetMessageType() api.MessageType {
2382 return api.RequestMessage
2385 func (m *Nat44EiSetLogLevel) Size() (size int) {
2389 size += 1 // m.LogLevel
2392 func (m *Nat44EiSetLogLevel) Marshal(b []byte) ([]byte, error) {
2394 b = make([]byte, m.Size())
2396 buf := codec.NewBuffer(b)
2397 buf.EncodeUint8(uint8(m.LogLevel))
2398 return buf.Bytes(), nil
2400 func (m *Nat44EiSetLogLevel) Unmarshal(b []byte) error {
2401 buf := codec.NewBuffer(b)
2402 m.LogLevel = nat_types.NatLogLevel(buf.DecodeUint8())
2406 // Nat44EiSetLogLevelReply defines message 'nat44_ei_set_log_level_reply'.
2407 // Deprecated: the message will be removed in the future versions
2408 type Nat44EiSetLogLevelReply struct {
2409 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
2412 func (m *Nat44EiSetLogLevelReply) Reset() { *m = Nat44EiSetLogLevelReply{} }
2413 func (*Nat44EiSetLogLevelReply) GetMessageName() string { return "nat44_ei_set_log_level_reply" }
2414 func (*Nat44EiSetLogLevelReply) GetCrcString() string { return "e8d4e804" }
2415 func (*Nat44EiSetLogLevelReply) GetMessageType() api.MessageType {
2416 return api.ReplyMessage
2419 func (m *Nat44EiSetLogLevelReply) Size() (size int) {
2423 size += 4 // m.Retval
2426 func (m *Nat44EiSetLogLevelReply) Marshal(b []byte) ([]byte, error) {
2428 b = make([]byte, m.Size())
2430 buf := codec.NewBuffer(b)
2431 buf.EncodeInt32(m.Retval)
2432 return buf.Bytes(), nil
2434 func (m *Nat44EiSetLogLevelReply) Unmarshal(b []byte) error {
2435 buf := codec.NewBuffer(b)
2436 m.Retval = buf.DecodeInt32()
2440 // Nat44EiSetMssClamping defines message 'nat44_ei_set_mss_clamping'.
2441 // InProgress: the message form may change in the future versions
2442 type Nat44EiSetMssClamping struct {
2443 MssValue uint16 `binapi:"u16,name=mss_value" json:"mss_value,omitempty"`
2444 Enable bool `binapi:"bool,name=enable" json:"enable,omitempty"`
2447 func (m *Nat44EiSetMssClamping) Reset() { *m = Nat44EiSetMssClamping{} }
2448 func (*Nat44EiSetMssClamping) GetMessageName() string { return "nat44_ei_set_mss_clamping" }
2449 func (*Nat44EiSetMssClamping) GetCrcString() string { return "25e90abb" }
2450 func (*Nat44EiSetMssClamping) GetMessageType() api.MessageType {
2451 return api.RequestMessage
2454 func (m *Nat44EiSetMssClamping) Size() (size int) {
2458 size += 2 // m.MssValue
2459 size += 1 // m.Enable
2462 func (m *Nat44EiSetMssClamping) Marshal(b []byte) ([]byte, error) {
2464 b = make([]byte, m.Size())
2466 buf := codec.NewBuffer(b)
2467 buf.EncodeUint16(m.MssValue)
2468 buf.EncodeBool(m.Enable)
2469 return buf.Bytes(), nil
2471 func (m *Nat44EiSetMssClamping) Unmarshal(b []byte) error {
2472 buf := codec.NewBuffer(b)
2473 m.MssValue = buf.DecodeUint16()
2474 m.Enable = buf.DecodeBool()
2478 // Nat44EiSetMssClampingReply defines message 'nat44_ei_set_mss_clamping_reply'.
2479 // InProgress: the message form may change in the future versions
2480 type Nat44EiSetMssClampingReply struct {
2481 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
2484 func (m *Nat44EiSetMssClampingReply) Reset() { *m = Nat44EiSetMssClampingReply{} }
2485 func (*Nat44EiSetMssClampingReply) GetMessageName() string { return "nat44_ei_set_mss_clamping_reply" }
2486 func (*Nat44EiSetMssClampingReply) GetCrcString() string { return "e8d4e804" }
2487 func (*Nat44EiSetMssClampingReply) GetMessageType() api.MessageType {
2488 return api.ReplyMessage
2491 func (m *Nat44EiSetMssClampingReply) Size() (size int) {
2495 size += 4 // m.Retval
2498 func (m *Nat44EiSetMssClampingReply) Marshal(b []byte) ([]byte, error) {
2500 b = make([]byte, m.Size())
2502 buf := codec.NewBuffer(b)
2503 buf.EncodeInt32(m.Retval)
2504 return buf.Bytes(), nil
2506 func (m *Nat44EiSetMssClampingReply) Unmarshal(b []byte) error {
2507 buf := codec.NewBuffer(b)
2508 m.Retval = buf.DecodeInt32()
2512 // Nat44EiSetTimeouts defines message 'nat44_ei_set_timeouts'.
2513 // InProgress: the message form may change in the future versions
2514 type Nat44EiSetTimeouts struct {
2515 UDP uint32 `binapi:"u32,name=udp" json:"udp,omitempty"`
2516 TCPEstablished uint32 `binapi:"u32,name=tcp_established" json:"tcp_established,omitempty"`
2517 TCPTransitory uint32 `binapi:"u32,name=tcp_transitory" json:"tcp_transitory,omitempty"`
2518 ICMP uint32 `binapi:"u32,name=icmp" json:"icmp,omitempty"`
2521 func (m *Nat44EiSetTimeouts) Reset() { *m = Nat44EiSetTimeouts{} }
2522 func (*Nat44EiSetTimeouts) GetMessageName() string { return "nat44_ei_set_timeouts" }
2523 func (*Nat44EiSetTimeouts) GetCrcString() string { return "d4746b16" }
2524 func (*Nat44EiSetTimeouts) GetMessageType() api.MessageType {
2525 return api.RequestMessage
2528 func (m *Nat44EiSetTimeouts) Size() (size int) {
2533 size += 4 // m.TCPEstablished
2534 size += 4 // m.TCPTransitory
2538 func (m *Nat44EiSetTimeouts) Marshal(b []byte) ([]byte, error) {
2540 b = make([]byte, m.Size())
2542 buf := codec.NewBuffer(b)
2543 buf.EncodeUint32(m.UDP)
2544 buf.EncodeUint32(m.TCPEstablished)
2545 buf.EncodeUint32(m.TCPTransitory)
2546 buf.EncodeUint32(m.ICMP)
2547 return buf.Bytes(), nil
2549 func (m *Nat44EiSetTimeouts) Unmarshal(b []byte) error {
2550 buf := codec.NewBuffer(b)
2551 m.UDP = buf.DecodeUint32()
2552 m.TCPEstablished = buf.DecodeUint32()
2553 m.TCPTransitory = buf.DecodeUint32()
2554 m.ICMP = buf.DecodeUint32()
2558 // Nat44EiSetTimeoutsReply defines message 'nat44_ei_set_timeouts_reply'.
2559 // InProgress: the message form may change in the future versions
2560 type Nat44EiSetTimeoutsReply struct {
2561 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
2564 func (m *Nat44EiSetTimeoutsReply) Reset() { *m = Nat44EiSetTimeoutsReply{} }
2565 func (*Nat44EiSetTimeoutsReply) GetMessageName() string { return "nat44_ei_set_timeouts_reply" }
2566 func (*Nat44EiSetTimeoutsReply) GetCrcString() string { return "e8d4e804" }
2567 func (*Nat44EiSetTimeoutsReply) GetMessageType() api.MessageType {
2568 return api.ReplyMessage
2571 func (m *Nat44EiSetTimeoutsReply) Size() (size int) {
2575 size += 4 // m.Retval
2578 func (m *Nat44EiSetTimeoutsReply) Marshal(b []byte) ([]byte, error) {
2580 b = make([]byte, m.Size())
2582 buf := codec.NewBuffer(b)
2583 buf.EncodeInt32(m.Retval)
2584 return buf.Bytes(), nil
2586 func (m *Nat44EiSetTimeoutsReply) Unmarshal(b []byte) error {
2587 buf := codec.NewBuffer(b)
2588 m.Retval = buf.DecodeInt32()
2592 // Nat44EiSetWorkers defines message 'nat44_ei_set_workers'.
2593 // InProgress: the message form may change in the future versions
2594 type Nat44EiSetWorkers struct {
2595 WorkerMask uint64 `binapi:"u64,name=worker_mask" json:"worker_mask,omitempty"`
2598 func (m *Nat44EiSetWorkers) Reset() { *m = Nat44EiSetWorkers{} }
2599 func (*Nat44EiSetWorkers) GetMessageName() string { return "nat44_ei_set_workers" }
2600 func (*Nat44EiSetWorkers) GetCrcString() string { return "da926638" }
2601 func (*Nat44EiSetWorkers) GetMessageType() api.MessageType {
2602 return api.RequestMessage
2605 func (m *Nat44EiSetWorkers) Size() (size int) {
2609 size += 8 // m.WorkerMask
2612 func (m *Nat44EiSetWorkers) Marshal(b []byte) ([]byte, error) {
2614 b = make([]byte, m.Size())
2616 buf := codec.NewBuffer(b)
2617 buf.EncodeUint64(m.WorkerMask)
2618 return buf.Bytes(), nil
2620 func (m *Nat44EiSetWorkers) Unmarshal(b []byte) error {
2621 buf := codec.NewBuffer(b)
2622 m.WorkerMask = buf.DecodeUint64()
2626 // Nat44EiSetWorkersReply defines message 'nat44_ei_set_workers_reply'.
2627 // InProgress: the message form may change in the future versions
2628 type Nat44EiSetWorkersReply struct {
2629 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
2632 func (m *Nat44EiSetWorkersReply) Reset() { *m = Nat44EiSetWorkersReply{} }
2633 func (*Nat44EiSetWorkersReply) GetMessageName() string { return "nat44_ei_set_workers_reply" }
2634 func (*Nat44EiSetWorkersReply) GetCrcString() string { return "e8d4e804" }
2635 func (*Nat44EiSetWorkersReply) GetMessageType() api.MessageType {
2636 return api.ReplyMessage
2639 func (m *Nat44EiSetWorkersReply) Size() (size int) {
2643 size += 4 // m.Retval
2646 func (m *Nat44EiSetWorkersReply) Marshal(b []byte) ([]byte, error) {
2648 b = make([]byte, m.Size())
2650 buf := codec.NewBuffer(b)
2651 buf.EncodeInt32(m.Retval)
2652 return buf.Bytes(), nil
2654 func (m *Nat44EiSetWorkersReply) Unmarshal(b []byte) error {
2655 buf := codec.NewBuffer(b)
2656 m.Retval = buf.DecodeInt32()
2660 // Nat44EiShowFqOptions defines message 'nat44_ei_show_fq_options'.
2661 // InProgress: the message form may change in the future versions
2662 type Nat44EiShowFqOptions struct{}
2664 func (m *Nat44EiShowFqOptions) Reset() { *m = Nat44EiShowFqOptions{} }
2665 func (*Nat44EiShowFqOptions) GetMessageName() string { return "nat44_ei_show_fq_options" }
2666 func (*Nat44EiShowFqOptions) GetCrcString() string { return "51077d14" }
2667 func (*Nat44EiShowFqOptions) GetMessageType() api.MessageType {
2668 return api.RequestMessage
2671 func (m *Nat44EiShowFqOptions) Size() (size int) {
2677 func (m *Nat44EiShowFqOptions) Marshal(b []byte) ([]byte, error) {
2679 b = make([]byte, m.Size())
2681 buf := codec.NewBuffer(b)
2682 return buf.Bytes(), nil
2684 func (m *Nat44EiShowFqOptions) Unmarshal(b []byte) error {
2688 // Nat44EiShowFqOptionsReply defines message 'nat44_ei_show_fq_options_reply'.
2689 // InProgress: the message form may change in the future versions
2690 type Nat44EiShowFqOptionsReply struct {
2691 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
2692 FrameQueueNelts uint32 `binapi:"u32,name=frame_queue_nelts" json:"frame_queue_nelts,omitempty"`
2695 func (m *Nat44EiShowFqOptionsReply) Reset() { *m = Nat44EiShowFqOptionsReply{} }
2696 func (*Nat44EiShowFqOptionsReply) GetMessageName() string { return "nat44_ei_show_fq_options_reply" }
2697 func (*Nat44EiShowFqOptionsReply) GetCrcString() string { return "7213b545" }
2698 func (*Nat44EiShowFqOptionsReply) GetMessageType() api.MessageType {
2699 return api.ReplyMessage
2702 func (m *Nat44EiShowFqOptionsReply) Size() (size int) {
2706 size += 4 // m.Retval
2707 size += 4 // m.FrameQueueNelts
2710 func (m *Nat44EiShowFqOptionsReply) Marshal(b []byte) ([]byte, error) {
2712 b = make([]byte, m.Size())
2714 buf := codec.NewBuffer(b)
2715 buf.EncodeInt32(m.Retval)
2716 buf.EncodeUint32(m.FrameQueueNelts)
2717 return buf.Bytes(), nil
2719 func (m *Nat44EiShowFqOptionsReply) Unmarshal(b []byte) error {
2720 buf := codec.NewBuffer(b)
2721 m.Retval = buf.DecodeInt32()
2722 m.FrameQueueNelts = buf.DecodeUint32()
2726 // Nat44EiShowRunningConfig defines message 'nat44_ei_show_running_config'.
2727 // InProgress: the message form may change in the future versions
2728 type Nat44EiShowRunningConfig struct{}
2730 func (m *Nat44EiShowRunningConfig) Reset() { *m = Nat44EiShowRunningConfig{} }
2731 func (*Nat44EiShowRunningConfig) GetMessageName() string { return "nat44_ei_show_running_config" }
2732 func (*Nat44EiShowRunningConfig) GetCrcString() string { return "51077d14" }
2733 func (*Nat44EiShowRunningConfig) GetMessageType() api.MessageType {
2734 return api.RequestMessage
2737 func (m *Nat44EiShowRunningConfig) Size() (size int) {
2743 func (m *Nat44EiShowRunningConfig) Marshal(b []byte) ([]byte, error) {
2745 b = make([]byte, m.Size())
2747 buf := codec.NewBuffer(b)
2748 return buf.Bytes(), nil
2750 func (m *Nat44EiShowRunningConfig) Unmarshal(b []byte) error {
2754 // Nat44EiShowRunningConfigReply defines message 'nat44_ei_show_running_config_reply'.
2755 // InProgress: the message form may change in the future versions
2756 type Nat44EiShowRunningConfigReply struct {
2757 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
2758 InsideVrf uint32 `binapi:"u32,name=inside_vrf" json:"inside_vrf,omitempty"`
2759 OutsideVrf uint32 `binapi:"u32,name=outside_vrf" json:"outside_vrf,omitempty"`
2760 Users uint32 `binapi:"u32,name=users" json:"users,omitempty"`
2761 Sessions uint32 `binapi:"u32,name=sessions" json:"sessions,omitempty"`
2762 UserSessions uint32 `binapi:"u32,name=user_sessions" json:"user_sessions,omitempty"`
2763 UserBuckets uint32 `binapi:"u32,name=user_buckets" json:"user_buckets,omitempty"`
2764 TranslationBuckets uint32 `binapi:"u32,name=translation_buckets" json:"translation_buckets,omitempty"`
2765 ForwardingEnabled bool `binapi:"bool,name=forwarding_enabled" json:"forwarding_enabled,omitempty"`
2766 IpfixLoggingEnabled bool `binapi:"bool,name=ipfix_logging_enabled" json:"ipfix_logging_enabled,omitempty"`
2767 Timeouts nat_types.NatTimeouts `binapi:"nat_timeouts,name=timeouts" json:"timeouts,omitempty"`
2768 LogLevel nat_types.NatLogLevel `binapi:"nat_log_level,name=log_level" json:"log_level,omitempty"`
2769 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
2772 func (m *Nat44EiShowRunningConfigReply) Reset() { *m = Nat44EiShowRunningConfigReply{} }
2773 func (*Nat44EiShowRunningConfigReply) GetMessageName() string {
2774 return "nat44_ei_show_running_config_reply"
2776 func (*Nat44EiShowRunningConfigReply) GetCrcString() string { return "41b66a81" }
2777 func (*Nat44EiShowRunningConfigReply) GetMessageType() api.MessageType {
2778 return api.ReplyMessage
2781 func (m *Nat44EiShowRunningConfigReply) Size() (size int) {
2785 size += 4 // m.Retval
2786 size += 4 // m.InsideVrf
2787 size += 4 // m.OutsideVrf
2788 size += 4 // m.Users
2789 size += 4 // m.Sessions
2790 size += 4 // m.UserSessions
2791 size += 4 // m.UserBuckets
2792 size += 4 // m.TranslationBuckets
2793 size += 1 // m.ForwardingEnabled
2794 size += 1 // m.IpfixLoggingEnabled
2795 size += 4 // m.Timeouts.UDP
2796 size += 4 // m.Timeouts.TCPEstablished
2797 size += 4 // m.Timeouts.TCPTransitory
2798 size += 4 // m.Timeouts.ICMP
2799 size += 1 // m.LogLevel
2800 size += 1 // m.Flags
2803 func (m *Nat44EiShowRunningConfigReply) Marshal(b []byte) ([]byte, error) {
2805 b = make([]byte, m.Size())
2807 buf := codec.NewBuffer(b)
2808 buf.EncodeInt32(m.Retval)
2809 buf.EncodeUint32(m.InsideVrf)
2810 buf.EncodeUint32(m.OutsideVrf)
2811 buf.EncodeUint32(m.Users)
2812 buf.EncodeUint32(m.Sessions)
2813 buf.EncodeUint32(m.UserSessions)
2814 buf.EncodeUint32(m.UserBuckets)
2815 buf.EncodeUint32(m.TranslationBuckets)
2816 buf.EncodeBool(m.ForwardingEnabled)
2817 buf.EncodeBool(m.IpfixLoggingEnabled)
2818 buf.EncodeUint32(m.Timeouts.UDP)
2819 buf.EncodeUint32(m.Timeouts.TCPEstablished)
2820 buf.EncodeUint32(m.Timeouts.TCPTransitory)
2821 buf.EncodeUint32(m.Timeouts.ICMP)
2822 buf.EncodeUint8(uint8(m.LogLevel))
2823 buf.EncodeUint8(uint8(m.Flags))
2824 return buf.Bytes(), nil
2826 func (m *Nat44EiShowRunningConfigReply) Unmarshal(b []byte) error {
2827 buf := codec.NewBuffer(b)
2828 m.Retval = buf.DecodeInt32()
2829 m.InsideVrf = buf.DecodeUint32()
2830 m.OutsideVrf = buf.DecodeUint32()
2831 m.Users = buf.DecodeUint32()
2832 m.Sessions = buf.DecodeUint32()
2833 m.UserSessions = buf.DecodeUint32()
2834 m.UserBuckets = buf.DecodeUint32()
2835 m.TranslationBuckets = buf.DecodeUint32()
2836 m.ForwardingEnabled = buf.DecodeBool()
2837 m.IpfixLoggingEnabled = buf.DecodeBool()
2838 m.Timeouts.UDP = buf.DecodeUint32()
2839 m.Timeouts.TCPEstablished = buf.DecodeUint32()
2840 m.Timeouts.TCPTransitory = buf.DecodeUint32()
2841 m.Timeouts.ICMP = buf.DecodeUint32()
2842 m.LogLevel = nat_types.NatLogLevel(buf.DecodeUint8())
2843 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
2847 // Nat44EiStaticMappingDetails defines message 'nat44_ei_static_mapping_details'.
2848 // InProgress: the message form may change in the future versions
2849 type Nat44EiStaticMappingDetails struct {
2850 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
2851 LocalIPAddress ip_types.IP4Address `binapi:"ip4_address,name=local_ip_address" json:"local_ip_address,omitempty"`
2852 ExternalIPAddress ip_types.IP4Address `binapi:"ip4_address,name=external_ip_address" json:"external_ip_address,omitempty"`
2853 Protocol uint8 `binapi:"u8,name=protocol" json:"protocol,omitempty"`
2854 LocalPort uint16 `binapi:"u16,name=local_port" json:"local_port,omitempty"`
2855 ExternalPort uint16 `binapi:"u16,name=external_port" json:"external_port,omitempty"`
2856 ExternalSwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=external_sw_if_index" json:"external_sw_if_index,omitempty"`
2857 VrfID uint32 `binapi:"u32,name=vrf_id" json:"vrf_id,omitempty"`
2858 Tag string `binapi:"string[64],name=tag" json:"tag,omitempty"`
2861 func (m *Nat44EiStaticMappingDetails) Reset() { *m = Nat44EiStaticMappingDetails{} }
2862 func (*Nat44EiStaticMappingDetails) GetMessageName() string { return "nat44_ei_static_mapping_details" }
2863 func (*Nat44EiStaticMappingDetails) GetCrcString() string { return "6b51ca6e" }
2864 func (*Nat44EiStaticMappingDetails) GetMessageType() api.MessageType {
2865 return api.ReplyMessage
2868 func (m *Nat44EiStaticMappingDetails) Size() (size int) {
2872 size += 1 // m.Flags
2873 size += 1 * 4 // m.LocalIPAddress
2874 size += 1 * 4 // m.ExternalIPAddress
2875 size += 1 // m.Protocol
2876 size += 2 // m.LocalPort
2877 size += 2 // m.ExternalPort
2878 size += 4 // m.ExternalSwIfIndex
2879 size += 4 // m.VrfID
2883 func (m *Nat44EiStaticMappingDetails) Marshal(b []byte) ([]byte, error) {
2885 b = make([]byte, m.Size())
2887 buf := codec.NewBuffer(b)
2888 buf.EncodeUint8(uint8(m.Flags))
2889 buf.EncodeBytes(m.LocalIPAddress[:], 4)
2890 buf.EncodeBytes(m.ExternalIPAddress[:], 4)
2891 buf.EncodeUint8(m.Protocol)
2892 buf.EncodeUint16(m.LocalPort)
2893 buf.EncodeUint16(m.ExternalPort)
2894 buf.EncodeUint32(uint32(m.ExternalSwIfIndex))
2895 buf.EncodeUint32(m.VrfID)
2896 buf.EncodeString(m.Tag, 64)
2897 return buf.Bytes(), nil
2899 func (m *Nat44EiStaticMappingDetails) Unmarshal(b []byte) error {
2900 buf := codec.NewBuffer(b)
2901 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
2902 copy(m.LocalIPAddress[:], buf.DecodeBytes(4))
2903 copy(m.ExternalIPAddress[:], buf.DecodeBytes(4))
2904 m.Protocol = buf.DecodeUint8()
2905 m.LocalPort = buf.DecodeUint16()
2906 m.ExternalPort = buf.DecodeUint16()
2907 m.ExternalSwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
2908 m.VrfID = buf.DecodeUint32()
2909 m.Tag = buf.DecodeString(64)
2913 // Nat44EiStaticMappingDump defines message 'nat44_ei_static_mapping_dump'.
2914 // InProgress: the message form may change in the future versions
2915 type Nat44EiStaticMappingDump struct{}
2917 func (m *Nat44EiStaticMappingDump) Reset() { *m = Nat44EiStaticMappingDump{} }
2918 func (*Nat44EiStaticMappingDump) GetMessageName() string { return "nat44_ei_static_mapping_dump" }
2919 func (*Nat44EiStaticMappingDump) GetCrcString() string { return "51077d14" }
2920 func (*Nat44EiStaticMappingDump) GetMessageType() api.MessageType {
2921 return api.RequestMessage
2924 func (m *Nat44EiStaticMappingDump) Size() (size int) {
2930 func (m *Nat44EiStaticMappingDump) Marshal(b []byte) ([]byte, error) {
2932 b = make([]byte, m.Size())
2934 buf := codec.NewBuffer(b)
2935 return buf.Bytes(), nil
2937 func (m *Nat44EiStaticMappingDump) Unmarshal(b []byte) error {
2941 // Nat44EiUserDetails defines message 'nat44_ei_user_details'.
2942 // InProgress: the message form may change in the future versions
2943 type Nat44EiUserDetails struct {
2944 VrfID uint32 `binapi:"u32,name=vrf_id" json:"vrf_id,omitempty"`
2945 IPAddress ip_types.IP4Address `binapi:"ip4_address,name=ip_address" json:"ip_address,omitempty"`
2946 Nsessions uint32 `binapi:"u32,name=nsessions" json:"nsessions,omitempty"`
2947 Nstaticsessions uint32 `binapi:"u32,name=nstaticsessions" json:"nstaticsessions,omitempty"`
2950 func (m *Nat44EiUserDetails) Reset() { *m = Nat44EiUserDetails{} }
2951 func (*Nat44EiUserDetails) GetMessageName() string { return "nat44_ei_user_details" }
2952 func (*Nat44EiUserDetails) GetCrcString() string { return "355896c2" }
2953 func (*Nat44EiUserDetails) GetMessageType() api.MessageType {
2954 return api.ReplyMessage
2957 func (m *Nat44EiUserDetails) Size() (size int) {
2961 size += 4 // m.VrfID
2962 size += 1 * 4 // m.IPAddress
2963 size += 4 // m.Nsessions
2964 size += 4 // m.Nstaticsessions
2967 func (m *Nat44EiUserDetails) Marshal(b []byte) ([]byte, error) {
2969 b = make([]byte, m.Size())
2971 buf := codec.NewBuffer(b)
2972 buf.EncodeUint32(m.VrfID)
2973 buf.EncodeBytes(m.IPAddress[:], 4)
2974 buf.EncodeUint32(m.Nsessions)
2975 buf.EncodeUint32(m.Nstaticsessions)
2976 return buf.Bytes(), nil
2978 func (m *Nat44EiUserDetails) Unmarshal(b []byte) error {
2979 buf := codec.NewBuffer(b)
2980 m.VrfID = buf.DecodeUint32()
2981 copy(m.IPAddress[:], buf.DecodeBytes(4))
2982 m.Nsessions = buf.DecodeUint32()
2983 m.Nstaticsessions = buf.DecodeUint32()
2987 // Nat44EiUserDump defines message 'nat44_ei_user_dump'.
2988 // InProgress: the message form may change in the future versions
2989 type Nat44EiUserDump struct{}
2991 func (m *Nat44EiUserDump) Reset() { *m = Nat44EiUserDump{} }
2992 func (*Nat44EiUserDump) GetMessageName() string { return "nat44_ei_user_dump" }
2993 func (*Nat44EiUserDump) GetCrcString() string { return "51077d14" }
2994 func (*Nat44EiUserDump) GetMessageType() api.MessageType {
2995 return api.RequestMessage
2998 func (m *Nat44EiUserDump) Size() (size int) {
3004 func (m *Nat44EiUserDump) Marshal(b []byte) ([]byte, error) {
3006 b = make([]byte, m.Size())
3008 buf := codec.NewBuffer(b)
3009 return buf.Bytes(), nil
3011 func (m *Nat44EiUserDump) Unmarshal(b []byte) error {
3015 // Nat44EiUserSessionDetails defines message 'nat44_ei_user_session_details'.
3016 // InProgress: the message form may change in the future versions
3017 type Nat44EiUserSessionDetails struct {
3018 OutsideIPAddress ip_types.IP4Address `binapi:"ip4_address,name=outside_ip_address" json:"outside_ip_address,omitempty"`
3019 OutsidePort uint16 `binapi:"u16,name=outside_port" json:"outside_port,omitempty"`
3020 InsideIPAddress ip_types.IP4Address `binapi:"ip4_address,name=inside_ip_address" json:"inside_ip_address,omitempty"`
3021 InsidePort uint16 `binapi:"u16,name=inside_port" json:"inside_port,omitempty"`
3022 Protocol uint16 `binapi:"u16,name=protocol" json:"protocol,omitempty"`
3023 Flags Nat44EiConfigFlags `binapi:"nat44_ei_config_flags,name=flags" json:"flags,omitempty"`
3024 LastHeard uint64 `binapi:"u64,name=last_heard" json:"last_heard,omitempty"`
3025 TotalBytes uint64 `binapi:"u64,name=total_bytes" json:"total_bytes,omitempty"`
3026 TotalPkts uint32 `binapi:"u32,name=total_pkts" json:"total_pkts,omitempty"`
3027 ExtHostAddress ip_types.IP4Address `binapi:"ip4_address,name=ext_host_address" json:"ext_host_address,omitempty"`
3028 ExtHostPort uint16 `binapi:"u16,name=ext_host_port" json:"ext_host_port,omitempty"`
3031 func (m *Nat44EiUserSessionDetails) Reset() { *m = Nat44EiUserSessionDetails{} }
3032 func (*Nat44EiUserSessionDetails) GetMessageName() string { return "nat44_ei_user_session_details" }
3033 func (*Nat44EiUserSessionDetails) GetCrcString() string { return "19b7c0ac" }
3034 func (*Nat44EiUserSessionDetails) GetMessageType() api.MessageType {
3035 return api.ReplyMessage
3038 func (m *Nat44EiUserSessionDetails) Size() (size int) {
3042 size += 1 * 4 // m.OutsideIPAddress
3043 size += 2 // m.OutsidePort
3044 size += 1 * 4 // m.InsideIPAddress
3045 size += 2 // m.InsidePort
3046 size += 2 // m.Protocol
3047 size += 1 // m.Flags
3048 size += 8 // m.LastHeard
3049 size += 8 // m.TotalBytes
3050 size += 4 // m.TotalPkts
3051 size += 1 * 4 // m.ExtHostAddress
3052 size += 2 // m.ExtHostPort
3055 func (m *Nat44EiUserSessionDetails) Marshal(b []byte) ([]byte, error) {
3057 b = make([]byte, m.Size())
3059 buf := codec.NewBuffer(b)
3060 buf.EncodeBytes(m.OutsideIPAddress[:], 4)
3061 buf.EncodeUint16(m.OutsidePort)
3062 buf.EncodeBytes(m.InsideIPAddress[:], 4)
3063 buf.EncodeUint16(m.InsidePort)
3064 buf.EncodeUint16(m.Protocol)
3065 buf.EncodeUint8(uint8(m.Flags))
3066 buf.EncodeUint64(m.LastHeard)
3067 buf.EncodeUint64(m.TotalBytes)
3068 buf.EncodeUint32(m.TotalPkts)
3069 buf.EncodeBytes(m.ExtHostAddress[:], 4)
3070 buf.EncodeUint16(m.ExtHostPort)
3071 return buf.Bytes(), nil
3073 func (m *Nat44EiUserSessionDetails) Unmarshal(b []byte) error {
3074 buf := codec.NewBuffer(b)
3075 copy(m.OutsideIPAddress[:], buf.DecodeBytes(4))
3076 m.OutsidePort = buf.DecodeUint16()
3077 copy(m.InsideIPAddress[:], buf.DecodeBytes(4))
3078 m.InsidePort = buf.DecodeUint16()
3079 m.Protocol = buf.DecodeUint16()
3080 m.Flags = Nat44EiConfigFlags(buf.DecodeUint8())
3081 m.LastHeard = buf.DecodeUint64()
3082 m.TotalBytes = buf.DecodeUint64()
3083 m.TotalPkts = buf.DecodeUint32()
3084 copy(m.ExtHostAddress[:], buf.DecodeBytes(4))
3085 m.ExtHostPort = buf.DecodeUint16()
3089 // Nat44EiUserSessionDump defines message 'nat44_ei_user_session_dump'.
3090 // InProgress: the message form may change in the future versions
3091 type Nat44EiUserSessionDump struct {
3092 IPAddress ip_types.IP4Address `binapi:"ip4_address,name=ip_address" json:"ip_address,omitempty"`
3093 VrfID uint32 `binapi:"u32,name=vrf_id" json:"vrf_id,omitempty"`
3096 func (m *Nat44EiUserSessionDump) Reset() { *m = Nat44EiUserSessionDump{} }
3097 func (*Nat44EiUserSessionDump) GetMessageName() string { return "nat44_ei_user_session_dump" }
3098 func (*Nat44EiUserSessionDump) GetCrcString() string { return "e1899c98" }
3099 func (*Nat44EiUserSessionDump) GetMessageType() api.MessageType {
3100 return api.RequestMessage
3103 func (m *Nat44EiUserSessionDump) Size() (size int) {
3107 size += 1 * 4 // m.IPAddress
3108 size += 4 // m.VrfID
3111 func (m *Nat44EiUserSessionDump) Marshal(b []byte) ([]byte, error) {
3113 b = make([]byte, m.Size())
3115 buf := codec.NewBuffer(b)
3116 buf.EncodeBytes(m.IPAddress[:], 4)
3117 buf.EncodeUint32(m.VrfID)
3118 return buf.Bytes(), nil
3120 func (m *Nat44EiUserSessionDump) Unmarshal(b []byte) error {
3121 buf := codec.NewBuffer(b)
3122 copy(m.IPAddress[:], buf.DecodeBytes(4))
3123 m.VrfID = buf.DecodeUint32()
3127 // Nat44EiWorkerDetails defines message 'nat44_ei_worker_details'.
3128 // InProgress: the message form may change in the future versions
3129 type Nat44EiWorkerDetails struct {
3130 WorkerIndex uint32 `binapi:"u32,name=worker_index" json:"worker_index,omitempty"`
3131 LcoreID uint32 `binapi:"u32,name=lcore_id" json:"lcore_id,omitempty"`
3132 Name string `binapi:"string[64],name=name" json:"name,omitempty"`
3135 func (m *Nat44EiWorkerDetails) Reset() { *m = Nat44EiWorkerDetails{} }
3136 func (*Nat44EiWorkerDetails) GetMessageName() string { return "nat44_ei_worker_details" }
3137 func (*Nat44EiWorkerDetails) GetCrcString() string { return "84bf06fc" }
3138 func (*Nat44EiWorkerDetails) GetMessageType() api.MessageType {
3139 return api.ReplyMessage
3142 func (m *Nat44EiWorkerDetails) Size() (size int) {
3146 size += 4 // m.WorkerIndex
3147 size += 4 // m.LcoreID
3148 size += 64 // m.Name
3151 func (m *Nat44EiWorkerDetails) Marshal(b []byte) ([]byte, error) {
3153 b = make([]byte, m.Size())
3155 buf := codec.NewBuffer(b)
3156 buf.EncodeUint32(m.WorkerIndex)
3157 buf.EncodeUint32(m.LcoreID)
3158 buf.EncodeString(m.Name, 64)
3159 return buf.Bytes(), nil
3161 func (m *Nat44EiWorkerDetails) Unmarshal(b []byte) error {
3162 buf := codec.NewBuffer(b)
3163 m.WorkerIndex = buf.DecodeUint32()
3164 m.LcoreID = buf.DecodeUint32()
3165 m.Name = buf.DecodeString(64)
3169 // Nat44EiWorkerDump defines message 'nat44_ei_worker_dump'.
3170 // InProgress: the message form may change in the future versions
3171 type Nat44EiWorkerDump struct{}
3173 func (m *Nat44EiWorkerDump) Reset() { *m = Nat44EiWorkerDump{} }
3174 func (*Nat44EiWorkerDump) GetMessageName() string { return "nat44_ei_worker_dump" }
3175 func (*Nat44EiWorkerDump) GetCrcString() string { return "51077d14" }
3176 func (*Nat44EiWorkerDump) GetMessageType() api.MessageType {
3177 return api.RequestMessage
3180 func (m *Nat44EiWorkerDump) Size() (size int) {
3186 func (m *Nat44EiWorkerDump) Marshal(b []byte) ([]byte, error) {
3188 b = make([]byte, m.Size())
3190 buf := codec.NewBuffer(b)
3191 return buf.Bytes(), nil
3193 func (m *Nat44EiWorkerDump) Unmarshal(b []byte) error {
3197 func init() { file_nat44_ei_binapi_init() }
3198 func file_nat44_ei_binapi_init() {
3199 api.RegisterMessage((*Nat44EiAddDelAddressRange)(nil), "nat44_ei_add_del_address_range_35f21abc")
3200 api.RegisterMessage((*Nat44EiAddDelAddressRangeReply)(nil), "nat44_ei_add_del_address_range_reply_e8d4e804")
3201 api.RegisterMessage((*Nat44EiAddDelIdentityMapping)(nil), "nat44_ei_add_del_identity_mapping_cb8606b9")
3202 api.RegisterMessage((*Nat44EiAddDelIdentityMappingReply)(nil), "nat44_ei_add_del_identity_mapping_reply_e8d4e804")
3203 api.RegisterMessage((*Nat44EiAddDelInterfaceAddr)(nil), "nat44_ei_add_del_interface_addr_883abbcc")
3204 api.RegisterMessage((*Nat44EiAddDelInterfaceAddrReply)(nil), "nat44_ei_add_del_interface_addr_reply_e8d4e804")
3205 api.RegisterMessage((*Nat44EiAddDelOutputInterface)(nil), "nat44_ei_add_del_output_interface_47d6e753")
3206 api.RegisterMessage((*Nat44EiAddDelOutputInterfaceReply)(nil), "nat44_ei_add_del_output_interface_reply_e8d4e804")
3207 api.RegisterMessage((*Nat44EiAddDelStaticMapping)(nil), "nat44_ei_add_del_static_mapping_b404b7fe")
3208 api.RegisterMessage((*Nat44EiAddDelStaticMappingReply)(nil), "nat44_ei_add_del_static_mapping_reply_e8d4e804")
3209 api.RegisterMessage((*Nat44EiAddressDetails)(nil), "nat44_ei_address_details_318f1202")
3210 api.RegisterMessage((*Nat44EiAddressDump)(nil), "nat44_ei_address_dump_51077d14")
3211 api.RegisterMessage((*Nat44EiDelSession)(nil), "nat44_ei_del_session_74969ffe")
3212 api.RegisterMessage((*Nat44EiDelSessionReply)(nil), "nat44_ei_del_session_reply_e8d4e804")
3213 api.RegisterMessage((*Nat44EiDelUser)(nil), "nat44_ei_del_user_99a9f998")
3214 api.RegisterMessage((*Nat44EiDelUserReply)(nil), "nat44_ei_del_user_reply_e8d4e804")
3215 api.RegisterMessage((*Nat44EiForwardingEnableDisable)(nil), "nat44_ei_forwarding_enable_disable_b3e225d2")
3216 api.RegisterMessage((*Nat44EiForwardingEnableDisableReply)(nil), "nat44_ei_forwarding_enable_disable_reply_e8d4e804")
3217 api.RegisterMessage((*Nat44EiGetAddrAndPortAllocAlg)(nil), "nat44_ei_get_addr_and_port_alloc_alg_51077d14")
3218 api.RegisterMessage((*Nat44EiGetAddrAndPortAllocAlgReply)(nil), "nat44_ei_get_addr_and_port_alloc_alg_reply_3607a7d0")
3219 api.RegisterMessage((*Nat44EiGetMssClamping)(nil), "nat44_ei_get_mss_clamping_51077d14")
3220 api.RegisterMessage((*Nat44EiGetMssClampingReply)(nil), "nat44_ei_get_mss_clamping_reply_1c0b2a78")
3221 api.RegisterMessage((*Nat44EiHaFlush)(nil), "nat44_ei_ha_flush_51077d14")
3222 api.RegisterMessage((*Nat44EiHaFlushReply)(nil), "nat44_ei_ha_flush_reply_e8d4e804")
3223 api.RegisterMessage((*Nat44EiHaGetFailover)(nil), "nat44_ei_ha_get_failover_51077d14")
3224 api.RegisterMessage((*Nat44EiHaGetFailoverReply)(nil), "nat44_ei_ha_get_failover_reply_a67d8752")
3225 api.RegisterMessage((*Nat44EiHaGetListener)(nil), "nat44_ei_ha_get_listener_51077d14")
3226 api.RegisterMessage((*Nat44EiHaGetListenerReply)(nil), "nat44_ei_ha_get_listener_reply_123ea41f")
3227 api.RegisterMessage((*Nat44EiHaResync)(nil), "nat44_ei_ha_resync_c8ab9e03")
3228 api.RegisterMessage((*Nat44EiHaResyncCompletedEvent)(nil), "nat44_ei_ha_resync_completed_event_fdc598fb")
3229 api.RegisterMessage((*Nat44EiHaResyncReply)(nil), "nat44_ei_ha_resync_reply_e8d4e804")
3230 api.RegisterMessage((*Nat44EiHaSetFailover)(nil), "nat44_ei_ha_set_failover_718246af")
3231 api.RegisterMessage((*Nat44EiHaSetFailoverReply)(nil), "nat44_ei_ha_set_failover_reply_e8d4e804")
3232 api.RegisterMessage((*Nat44EiHaSetListener)(nil), "nat44_ei_ha_set_listener_e4a8cb4e")
3233 api.RegisterMessage((*Nat44EiHaSetListenerReply)(nil), "nat44_ei_ha_set_listener_reply_e8d4e804")
3234 api.RegisterMessage((*Nat44EiIdentityMappingDetails)(nil), "nat44_ei_identity_mapping_details_30d53e26")
3235 api.RegisterMessage((*Nat44EiIdentityMappingDump)(nil), "nat44_ei_identity_mapping_dump_51077d14")
3236 api.RegisterMessage((*Nat44EiInterfaceAddDelFeature)(nil), "nat44_ei_interface_add_del_feature_63a2db8b")
3237 api.RegisterMessage((*Nat44EiInterfaceAddDelFeatureReply)(nil), "nat44_ei_interface_add_del_feature_reply_e8d4e804")
3238 api.RegisterMessage((*Nat44EiInterfaceAddDelOutputFeature)(nil), "nat44_ei_interface_add_del_output_feature_63a2db8b")
3239 api.RegisterMessage((*Nat44EiInterfaceAddDelOutputFeatureReply)(nil), "nat44_ei_interface_add_del_output_feature_reply_e8d4e804")
3240 api.RegisterMessage((*Nat44EiInterfaceAddrDetails)(nil), "nat44_ei_interface_addr_details_0b45011c")
3241 api.RegisterMessage((*Nat44EiInterfaceAddrDump)(nil), "nat44_ei_interface_addr_dump_51077d14")
3242 api.RegisterMessage((*Nat44EiInterfaceDetails)(nil), "nat44_ei_interface_details_f446e508")
3243 api.RegisterMessage((*Nat44EiInterfaceDump)(nil), "nat44_ei_interface_dump_51077d14")
3244 api.RegisterMessage((*Nat44EiInterfaceOutputFeatureDetails)(nil), "nat44_ei_interface_output_feature_details_f446e508")
3245 api.RegisterMessage((*Nat44EiInterfaceOutputFeatureDump)(nil), "nat44_ei_interface_output_feature_dump_51077d14")
3246 api.RegisterMessage((*Nat44EiIpfixEnableDisable)(nil), "nat44_ei_ipfix_enable_disable_9af4a2d2")
3247 api.RegisterMessage((*Nat44EiIpfixEnableDisableReply)(nil), "nat44_ei_ipfix_enable_disable_reply_e8d4e804")
3248 api.RegisterMessage((*Nat44EiOutputInterfaceDetails)(nil), "nat44_ei_output_interface_details_0b45011c")
3249 api.RegisterMessage((*Nat44EiOutputInterfaceGet)(nil), "nat44_ei_output_interface_get_f75ba505")
3250 api.RegisterMessage((*Nat44EiOutputInterfaceGetReply)(nil), "nat44_ei_output_interface_get_reply_53b48f5d")
3251 api.RegisterMessage((*Nat44EiPluginEnableDisable)(nil), "nat44_ei_plugin_enable_disable_bf692144")
3252 api.RegisterMessage((*Nat44EiPluginEnableDisableReply)(nil), "nat44_ei_plugin_enable_disable_reply_e8d4e804")
3253 api.RegisterMessage((*Nat44EiSetAddrAndPortAllocAlg)(nil), "nat44_ei_set_addr_and_port_alloc_alg_deeb746f")
3254 api.RegisterMessage((*Nat44EiSetAddrAndPortAllocAlgReply)(nil), "nat44_ei_set_addr_and_port_alloc_alg_reply_e8d4e804")
3255 api.RegisterMessage((*Nat44EiSetFqOptions)(nil), "nat44_ei_set_fq_options_2399bd71")
3256 api.RegisterMessage((*Nat44EiSetFqOptionsReply)(nil), "nat44_ei_set_fq_options_reply_e8d4e804")
3257 api.RegisterMessage((*Nat44EiSetLogLevel)(nil), "nat44_ei_set_log_level_70076bfe")
3258 api.RegisterMessage((*Nat44EiSetLogLevelReply)(nil), "nat44_ei_set_log_level_reply_e8d4e804")
3259 api.RegisterMessage((*Nat44EiSetMssClamping)(nil), "nat44_ei_set_mss_clamping_25e90abb")
3260 api.RegisterMessage((*Nat44EiSetMssClampingReply)(nil), "nat44_ei_set_mss_clamping_reply_e8d4e804")
3261 api.RegisterMessage((*Nat44EiSetTimeouts)(nil), "nat44_ei_set_timeouts_d4746b16")
3262 api.RegisterMessage((*Nat44EiSetTimeoutsReply)(nil), "nat44_ei_set_timeouts_reply_e8d4e804")
3263 api.RegisterMessage((*Nat44EiSetWorkers)(nil), "nat44_ei_set_workers_da926638")
3264 api.RegisterMessage((*Nat44EiSetWorkersReply)(nil), "nat44_ei_set_workers_reply_e8d4e804")
3265 api.RegisterMessage((*Nat44EiShowFqOptions)(nil), "nat44_ei_show_fq_options_51077d14")
3266 api.RegisterMessage((*Nat44EiShowFqOptionsReply)(nil), "nat44_ei_show_fq_options_reply_7213b545")
3267 api.RegisterMessage((*Nat44EiShowRunningConfig)(nil), "nat44_ei_show_running_config_51077d14")
3268 api.RegisterMessage((*Nat44EiShowRunningConfigReply)(nil), "nat44_ei_show_running_config_reply_41b66a81")
3269 api.RegisterMessage((*Nat44EiStaticMappingDetails)(nil), "nat44_ei_static_mapping_details_6b51ca6e")
3270 api.RegisterMessage((*Nat44EiStaticMappingDump)(nil), "nat44_ei_static_mapping_dump_51077d14")
3271 api.RegisterMessage((*Nat44EiUserDetails)(nil), "nat44_ei_user_details_355896c2")
3272 api.RegisterMessage((*Nat44EiUserDump)(nil), "nat44_ei_user_dump_51077d14")
3273 api.RegisterMessage((*Nat44EiUserSessionDetails)(nil), "nat44_ei_user_session_details_19b7c0ac")
3274 api.RegisterMessage((*Nat44EiUserSessionDump)(nil), "nat44_ei_user_session_dump_e1899c98")
3275 api.RegisterMessage((*Nat44EiWorkerDetails)(nil), "nat44_ei_worker_details_84bf06fc")
3276 api.RegisterMessage((*Nat44EiWorkerDump)(nil), "nat44_ei_worker_dump_51077d14")
3279 // Messages returns list of all messages in this module.
3280 func AllMessages() []api.Message {
3281 return []api.Message{
3282 (*Nat44EiAddDelAddressRange)(nil),
3283 (*Nat44EiAddDelAddressRangeReply)(nil),
3284 (*Nat44EiAddDelIdentityMapping)(nil),
3285 (*Nat44EiAddDelIdentityMappingReply)(nil),
3286 (*Nat44EiAddDelInterfaceAddr)(nil),
3287 (*Nat44EiAddDelInterfaceAddrReply)(nil),
3288 (*Nat44EiAddDelOutputInterface)(nil),
3289 (*Nat44EiAddDelOutputInterfaceReply)(nil),
3290 (*Nat44EiAddDelStaticMapping)(nil),
3291 (*Nat44EiAddDelStaticMappingReply)(nil),
3292 (*Nat44EiAddressDetails)(nil),
3293 (*Nat44EiAddressDump)(nil),
3294 (*Nat44EiDelSession)(nil),
3295 (*Nat44EiDelSessionReply)(nil),
3296 (*Nat44EiDelUser)(nil),
3297 (*Nat44EiDelUserReply)(nil),
3298 (*Nat44EiForwardingEnableDisable)(nil),
3299 (*Nat44EiForwardingEnableDisableReply)(nil),
3300 (*Nat44EiGetAddrAndPortAllocAlg)(nil),
3301 (*Nat44EiGetAddrAndPortAllocAlgReply)(nil),
3302 (*Nat44EiGetMssClamping)(nil),
3303 (*Nat44EiGetMssClampingReply)(nil),
3304 (*Nat44EiHaFlush)(nil),
3305 (*Nat44EiHaFlushReply)(nil),
3306 (*Nat44EiHaGetFailover)(nil),
3307 (*Nat44EiHaGetFailoverReply)(nil),
3308 (*Nat44EiHaGetListener)(nil),
3309 (*Nat44EiHaGetListenerReply)(nil),
3310 (*Nat44EiHaResync)(nil),
3311 (*Nat44EiHaResyncCompletedEvent)(nil),
3312 (*Nat44EiHaResyncReply)(nil),
3313 (*Nat44EiHaSetFailover)(nil),
3314 (*Nat44EiHaSetFailoverReply)(nil),
3315 (*Nat44EiHaSetListener)(nil),
3316 (*Nat44EiHaSetListenerReply)(nil),
3317 (*Nat44EiIdentityMappingDetails)(nil),
3318 (*Nat44EiIdentityMappingDump)(nil),
3319 (*Nat44EiInterfaceAddDelFeature)(nil),
3320 (*Nat44EiInterfaceAddDelFeatureReply)(nil),
3321 (*Nat44EiInterfaceAddDelOutputFeature)(nil),
3322 (*Nat44EiInterfaceAddDelOutputFeatureReply)(nil),
3323 (*Nat44EiInterfaceAddrDetails)(nil),
3324 (*Nat44EiInterfaceAddrDump)(nil),
3325 (*Nat44EiInterfaceDetails)(nil),
3326 (*Nat44EiInterfaceDump)(nil),
3327 (*Nat44EiInterfaceOutputFeatureDetails)(nil),
3328 (*Nat44EiInterfaceOutputFeatureDump)(nil),
3329 (*Nat44EiIpfixEnableDisable)(nil),
3330 (*Nat44EiIpfixEnableDisableReply)(nil),
3331 (*Nat44EiOutputInterfaceDetails)(nil),
3332 (*Nat44EiOutputInterfaceGet)(nil),
3333 (*Nat44EiOutputInterfaceGetReply)(nil),
3334 (*Nat44EiPluginEnableDisable)(nil),
3335 (*Nat44EiPluginEnableDisableReply)(nil),
3336 (*Nat44EiSetAddrAndPortAllocAlg)(nil),
3337 (*Nat44EiSetAddrAndPortAllocAlgReply)(nil),
3338 (*Nat44EiSetFqOptions)(nil),
3339 (*Nat44EiSetFqOptionsReply)(nil),
3340 (*Nat44EiSetLogLevel)(nil),
3341 (*Nat44EiSetLogLevelReply)(nil),
3342 (*Nat44EiSetMssClamping)(nil),
3343 (*Nat44EiSetMssClampingReply)(nil),
3344 (*Nat44EiSetTimeouts)(nil),
3345 (*Nat44EiSetTimeoutsReply)(nil),
3346 (*Nat44EiSetWorkers)(nil),
3347 (*Nat44EiSetWorkersReply)(nil),
3348 (*Nat44EiShowFqOptions)(nil),
3349 (*Nat44EiShowFqOptionsReply)(nil),
3350 (*Nat44EiShowRunningConfig)(nil),
3351 (*Nat44EiShowRunningConfigReply)(nil),
3352 (*Nat44EiStaticMappingDetails)(nil),
3353 (*Nat44EiStaticMappingDump)(nil),
3354 (*Nat44EiUserDetails)(nil),
3355 (*Nat44EiUserDump)(nil),
3356 (*Nat44EiUserSessionDetails)(nil),
3357 (*Nat44EiUserSessionDump)(nil),
3358 (*Nat44EiWorkerDetails)(nil),
3359 (*Nat44EiWorkerDump)(nil),