aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/vrrp/vrrp.ba.go
diff options
context:
space:
mode:
Diffstat (limited to 'binapi/vrrp/vrrp.ba.go')
-rw-r--r--binapi/vrrp/vrrp.ba.go170
1 files changed, 149 insertions, 21 deletions
diff --git a/binapi/vrrp/vrrp.ba.go b/binapi/vrrp/vrrp.ba.go
index ef34cdd..752a6f9 100644
--- a/binapi/vrrp/vrrp.ba.go
+++ b/binapi/vrrp/vrrp.ba.go
@@ -1,7 +1,7 @@
// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
// versions:
-// binapi-generator: v0.4.0-dev
-// VPP: 20.05-release
+// binapi-generator: v0.6.0-dev
+// VPP: 22.02-release
// source: /usr/share/vpp/api/plugins/vrrp.api.json
// Package vrrp contains generated bindings for API file vrrp.api.
@@ -9,17 +9,18 @@
// Contents:
// 2 enums
// 5 structs
-// 14 messages
+// 17 messages
//
package vrrp
import (
- api "git.fd.io/govpp.git/api"
- ethernet_types "git.fd.io/govpp.git/binapi/ethernet_types"
- interface_types "git.fd.io/govpp.git/binapi/interface_types"
- ip_types "git.fd.io/govpp.git/binapi/ip_types"
- codec "git.fd.io/govpp.git/codec"
"strconv"
+
+ api "go.fd.io/govpp/api"
+ ethernet_types "go.fd.io/govpp/binapi/ethernet_types"
+ interface_types "go.fd.io/govpp/binapi/interface_types"
+ ip_types "go.fd.io/govpp/binapi/ip_types"
+ codec "go.fd.io/govpp/codec"
)
// This is a compile-time assertion to ensure that this generated file
@@ -31,7 +32,7 @@ const _ = api.GoVppAPIPackageIsVersion2
const (
APIFile = "vrrp"
APIVersion = "1.0.1"
- VersionCrc = 0x1903f1f1
+ VersionCrc = 0x6a3c71cd
)
// VrrpVrFlags defines enum 'vrrp_vr_flags'.
@@ -171,7 +172,7 @@ type VrrpVrAddDel struct {
func (m *VrrpVrAddDel) Reset() { *m = VrrpVrAddDel{} }
func (*VrrpVrAddDel) GetMessageName() string { return "vrrp_vr_add_del" }
-func (*VrrpVrAddDel) GetCrcString() string { return "6dc4b881" }
+func (*VrrpVrAddDel) GetCrcString() string { return "c5cf15aa" }
func (*VrrpVrAddDel) GetMessageType() api.MessageType {
return api.RequestMessage
}
@@ -280,7 +281,7 @@ type VrrpVrDetails struct {
func (m *VrrpVrDetails) Reset() { *m = VrrpVrDetails{} }
func (*VrrpVrDetails) GetMessageName() string { return "vrrp_vr_details" }
-func (*VrrpVrDetails) GetCrcString() string { return "0412fa71" }
+func (*VrrpVrDetails) GetCrcString() string { return "46edcebd" }
func (*VrrpVrDetails) GetMessageType() api.MessageType {
return api.ReplyMessage
}
@@ -397,6 +398,57 @@ func (m *VrrpVrDump) Unmarshal(b []byte) error {
return nil
}
+// VrrpVrEvent defines message 'vrrp_vr_event'.
+type VrrpVrEvent struct {
+ PID uint32 `binapi:"u32,name=pid" json:"pid,omitempty"`
+ Vr VrrpVrKey `binapi:"vrrp_vr_key,name=vr" json:"vr,omitempty"`
+ OldState VrrpVrState `binapi:"vrrp_vr_state,name=old_state" json:"old_state,omitempty"`
+ NewState VrrpVrState `binapi:"vrrp_vr_state,name=new_state" json:"new_state,omitempty"`
+}
+
+func (m *VrrpVrEvent) Reset() { *m = VrrpVrEvent{} }
+func (*VrrpVrEvent) GetMessageName() string { return "vrrp_vr_event" }
+func (*VrrpVrEvent) GetCrcString() string { return "c1fea6a5" }
+func (*VrrpVrEvent) GetMessageType() api.MessageType {
+ return api.EventMessage
+}
+
+func (m *VrrpVrEvent) Size() (size int) {
+ if m == nil {
+ return 0
+ }
+ size += 4 // m.PID
+ size += 4 // m.Vr.SwIfIndex
+ size += 1 // m.Vr.VrID
+ size += 1 // m.Vr.IsIPv6
+ size += 4 // m.OldState
+ size += 4 // m.NewState
+ return size
+}
+func (m *VrrpVrEvent) Marshal(b []byte) ([]byte, error) {
+ if b == nil {
+ b = make([]byte, m.Size())
+ }
+ buf := codec.NewBuffer(b)
+ buf.EncodeUint32(m.PID)
+ buf.EncodeUint32(uint32(m.Vr.SwIfIndex))
+ buf.EncodeUint8(m.Vr.VrID)
+ buf.EncodeUint8(m.Vr.IsIPv6)
+ buf.EncodeUint32(uint32(m.OldState))
+ buf.EncodeUint32(uint32(m.NewState))
+ return buf.Bytes(), nil
+}
+func (m *VrrpVrEvent) Unmarshal(b []byte) error {
+ buf := codec.NewBuffer(b)
+ m.PID = buf.DecodeUint32()
+ m.Vr.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
+ m.Vr.VrID = buf.DecodeUint8()
+ m.Vr.IsIPv6 = buf.DecodeUint8()
+ m.OldState = VrrpVrState(buf.DecodeUint32())
+ m.NewState = VrrpVrState(buf.DecodeUint32())
+ return nil
+}
+
// VrrpVrPeerDetails defines message 'vrrp_vr_peer_details'.
type VrrpVrPeerDetails struct {
SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
@@ -408,7 +460,7 @@ type VrrpVrPeerDetails struct {
func (m *VrrpVrPeerDetails) Reset() { *m = VrrpVrPeerDetails{} }
func (*VrrpVrPeerDetails) GetMessageName() string { return "vrrp_vr_peer_details" }
-func (*VrrpVrPeerDetails) GetCrcString() string { return "abd9145e" }
+func (*VrrpVrPeerDetails) GetCrcString() string { return "3d99c108" }
func (*VrrpVrPeerDetails) GetMessageType() api.MessageType {
return api.RequestMessage
}
@@ -517,7 +569,7 @@ type VrrpVrSetPeers struct {
func (m *VrrpVrSetPeers) Reset() { *m = VrrpVrSetPeers{} }
func (*VrrpVrSetPeers) GetMessageName() string { return "vrrp_vr_set_peers" }
-func (*VrrpVrSetPeers) GetCrcString() string { return "baa2e52b" }
+func (*VrrpVrSetPeers) GetCrcString() string { return "20bec71f" }
func (*VrrpVrSetPeers) GetMessageType() api.MessageType {
return api.RequestMessage
}
@@ -697,7 +749,7 @@ type VrrpVrTrackIfAddDel struct {
func (m *VrrpVrTrackIfAddDel) Reset() { *m = VrrpVrTrackIfAddDel{} }
func (*VrrpVrTrackIfAddDel) GetMessageName() string { return "vrrp_vr_track_if_add_del" }
-func (*VrrpVrTrackIfAddDel) GetCrcString() string { return "337f4ba4" }
+func (*VrrpVrTrackIfAddDel) GetCrcString() string { return "d67df299" }
func (*VrrpVrTrackIfAddDel) GetMessageType() api.MessageType {
return api.RequestMessage
}
@@ -801,7 +853,7 @@ type VrrpVrTrackIfDetails struct {
func (m *VrrpVrTrackIfDetails) Reset() { *m = VrrpVrTrackIfDetails{} }
func (*VrrpVrTrackIfDetails) GetMessageName() string { return "vrrp_vr_track_if_details" }
-func (*VrrpVrTrackIfDetails) GetCrcString() string { return "99bcca9c" }
+func (*VrrpVrTrackIfDetails) GetCrcString() string { return "73c36f81" }
func (*VrrpVrTrackIfDetails) GetMessageType() api.MessageType {
return api.RequestMessage
}
@@ -903,22 +955,95 @@ func (m *VrrpVrTrackIfDump) Unmarshal(b []byte) error {
return nil
}
+// WantVrrpVrEvents defines message 'want_vrrp_vr_events'.
+type WantVrrpVrEvents struct {
+ EnableDisable bool `binapi:"bool,name=enable_disable" json:"enable_disable,omitempty"`
+ PID uint32 `binapi:"u32,name=pid" json:"pid,omitempty"`
+}
+
+func (m *WantVrrpVrEvents) Reset() { *m = WantVrrpVrEvents{} }
+func (*WantVrrpVrEvents) GetMessageName() string { return "want_vrrp_vr_events" }
+func (*WantVrrpVrEvents) GetCrcString() string { return "c5e2af94" }
+func (*WantVrrpVrEvents) GetMessageType() api.MessageType {
+ return api.RequestMessage
+}
+
+func (m *WantVrrpVrEvents) Size() (size int) {
+ if m == nil {
+ return 0
+ }
+ size += 1 // m.EnableDisable
+ size += 4 // m.PID
+ return size
+}
+func (m *WantVrrpVrEvents) Marshal(b []byte) ([]byte, error) {
+ if b == nil {
+ b = make([]byte, m.Size())
+ }
+ buf := codec.NewBuffer(b)
+ buf.EncodeBool(m.EnableDisable)
+ buf.EncodeUint32(m.PID)
+ return buf.Bytes(), nil
+}
+func (m *WantVrrpVrEvents) Unmarshal(b []byte) error {
+ buf := codec.NewBuffer(b)
+ m.EnableDisable = buf.DecodeBool()
+ m.PID = buf.DecodeUint32()
+ return nil
+}
+
+// WantVrrpVrEventsReply defines message 'want_vrrp_vr_events_reply'.
+type WantVrrpVrEventsReply struct {
+ Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
+}
+
+func (m *WantVrrpVrEventsReply) Reset() { *m = WantVrrpVrEventsReply{} }
+func (*WantVrrpVrEventsReply) GetMessageName() string { return "want_vrrp_vr_events_reply" }
+func (*WantVrrpVrEventsReply) GetCrcString() string { return "e8d4e804" }
+func (*WantVrrpVrEventsReply) GetMessageType() api.MessageType {
+ return api.ReplyMessage
+}
+
+func (m *WantVrrpVrEventsReply) Size() (size int) {
+ if m == nil {
+ return 0
+ }
+ size += 4 // m.Retval
+ return size
+}
+func (m *WantVrrpVrEventsReply) Marshal(b []byte) ([]byte, error) {
+ if b == nil {
+ b = make([]byte, m.Size())
+ }
+ buf := codec.NewBuffer(b)
+ buf.EncodeInt32(m.Retval)
+ return buf.Bytes(), nil
+}
+func (m *WantVrrpVrEventsReply) Unmarshal(b []byte) error {
+ buf := codec.NewBuffer(b)
+ m.Retval = buf.DecodeInt32()
+ return nil
+}
+
func init() { file_vrrp_binapi_init() }
func file_vrrp_binapi_init() {
- api.RegisterMessage((*VrrpVrAddDel)(nil), "vrrp_vr_add_del_6dc4b881")
+ api.RegisterMessage((*VrrpVrAddDel)(nil), "vrrp_vr_add_del_c5cf15aa")
api.RegisterMessage((*VrrpVrAddDelReply)(nil), "vrrp_vr_add_del_reply_e8d4e804")
- api.RegisterMessage((*VrrpVrDetails)(nil), "vrrp_vr_details_0412fa71")
+ api.RegisterMessage((*VrrpVrDetails)(nil), "vrrp_vr_details_46edcebd")
api.RegisterMessage((*VrrpVrDump)(nil), "vrrp_vr_dump_f9e6675e")
- api.RegisterMessage((*VrrpVrPeerDetails)(nil), "vrrp_vr_peer_details_abd9145e")
+ api.RegisterMessage((*VrrpVrEvent)(nil), "vrrp_vr_event_c1fea6a5")
+ api.RegisterMessage((*VrrpVrPeerDetails)(nil), "vrrp_vr_peer_details_3d99c108")
api.RegisterMessage((*VrrpVrPeerDump)(nil), "vrrp_vr_peer_dump_6fa3f7c4")
- api.RegisterMessage((*VrrpVrSetPeers)(nil), "vrrp_vr_set_peers_baa2e52b")
+ api.RegisterMessage((*VrrpVrSetPeers)(nil), "vrrp_vr_set_peers_20bec71f")
api.RegisterMessage((*VrrpVrSetPeersReply)(nil), "vrrp_vr_set_peers_reply_e8d4e804")
api.RegisterMessage((*VrrpVrStartStop)(nil), "vrrp_vr_start_stop_0662a3b7")
api.RegisterMessage((*VrrpVrStartStopReply)(nil), "vrrp_vr_start_stop_reply_e8d4e804")
- api.RegisterMessage((*VrrpVrTrackIfAddDel)(nil), "vrrp_vr_track_if_add_del_337f4ba4")
+ api.RegisterMessage((*VrrpVrTrackIfAddDel)(nil), "vrrp_vr_track_if_add_del_d67df299")
api.RegisterMessage((*VrrpVrTrackIfAddDelReply)(nil), "vrrp_vr_track_if_add_del_reply_e8d4e804")
- api.RegisterMessage((*VrrpVrTrackIfDetails)(nil), "vrrp_vr_track_if_details_99bcca9c")
+ api.RegisterMessage((*VrrpVrTrackIfDetails)(nil), "vrrp_vr_track_if_details_73c36f81")
api.RegisterMessage((*VrrpVrTrackIfDump)(nil), "vrrp_vr_track_if_dump_a34dfc6d")
+ api.RegisterMessage((*WantVrrpVrEvents)(nil), "want_vrrp_vr_events_c5e2af94")
+ api.RegisterMessage((*WantVrrpVrEventsReply)(nil), "want_vrrp_vr_events_reply_e8d4e804")
}
// Messages returns list of all messages in this module.
@@ -928,6 +1053,7 @@ func AllMessages() []api.Message {
(*VrrpVrAddDelReply)(nil),
(*VrrpVrDetails)(nil),
(*VrrpVrDump)(nil),
+ (*VrrpVrEvent)(nil),
(*VrrpVrPeerDetails)(nil),
(*VrrpVrPeerDump)(nil),
(*VrrpVrSetPeers)(nil),
@@ -938,5 +1064,7 @@ func AllMessages() []api.Message {
(*VrrpVrTrackIfAddDelReply)(nil),
(*VrrpVrTrackIfDetails)(nil),
(*VrrpVrTrackIfDump)(nil),
+ (*WantVrrpVrEvents)(nil),
+ (*WantVrrpVrEventsReply)(nil),
}
}