regenerate binapi
[govpp.git] / binapi / vrrp / vrrp.ba.go
index 297fbd8..97e1d8a 100644 (file)
@@ -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.3.5-56-gc0da1f2-dirty
+//  VPP:              21.06-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 (
+       "strconv"
+
        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"
 )
 
 // 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,16 +172,15 @@ 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
 }
 
-func (m *VrrpVrAddDel) Size() int {
+func (m *VrrpVrAddDel) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 1 // m.IsAdd
        size += 4 // m.SwIfIndex
        size += 1 // m.VrID
@@ -200,26 +200,24 @@ func (m *VrrpVrAddDel) Size() int {
        return size
 }
 func (m *VrrpVrAddDel) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
-       buf.EncodeUint8(uint8(m.IsAdd))
+       buf := codec.NewBuffer(b)
+       buf.EncodeUint8(m.IsAdd)
        buf.EncodeUint32(uint32(m.SwIfIndex))
-       buf.EncodeUint8(uint8(m.VrID))
-       buf.EncodeUint8(uint8(m.Priority))
-       buf.EncodeUint16(uint16(m.Interval))
+       buf.EncodeUint8(m.VrID)
+       buf.EncodeUint8(m.Priority)
+       buf.EncodeUint16(m.Interval)
        buf.EncodeUint32(uint32(m.Flags))
        buf.EncodeUint8(uint8(len(m.Addrs)))
        for j0 := 0; j0 < len(m.Addrs); j0++ {
-               var v0 ip_types.Address
+               var v0 ip_types.Address // Addrs
                if j0 < len(m.Addrs) {
                        v0 = m.Addrs[j0]
                }
                buf.EncodeUint8(uint8(v0.Af))
-               buf.EncodeBytes(v0.Un.XXX_UnionData[:], 0)
+               buf.EncodeBytes(v0.Un.XXX_UnionData[:], 16)
        }
        return buf.Bytes(), nil
 }
@@ -232,7 +230,7 @@ func (m *VrrpVrAddDel) Unmarshal(b []byte) error {
        m.Interval = buf.DecodeUint16()
        m.Flags = VrrpVrFlags(buf.DecodeUint32())
        m.NAddrs = buf.DecodeUint8()
-       m.Addrs = make([]ip_types.Address, int(m.NAddrs))
+       m.Addrs = make([]ip_types.Address, m.NAddrs)
        for j0 := 0; j0 < len(m.Addrs); j0++ {
                m.Addrs[j0].Af = ip_types.AddressFamily(buf.DecodeUint8())
                copy(m.Addrs[j0].Un.XXX_UnionData[:], buf.DecodeBytes(16))
@@ -252,27 +250,24 @@ func (*VrrpVrAddDelReply) GetMessageType() api.MessageType {
        return api.ReplyMessage
 }
 
-func (m *VrrpVrAddDelReply) Size() int {
+func (m *VrrpVrAddDelReply) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.Retval
        return size
 }
 func (m *VrrpVrAddDelReply) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
-       buf.EncodeUint32(uint32(m.Retval))
+       buf := codec.NewBuffer(b)
+       buf.EncodeInt32(m.Retval)
        return buf.Bytes(), nil
 }
 func (m *VrrpVrAddDelReply) Unmarshal(b []byte) error {
        buf := codec.NewBuffer(b)
-       m.Retval = int32(buf.DecodeUint32())
+       m.Retval = buf.DecodeInt32()
        return nil
 }
 
@@ -286,16 +281,15 @@ 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
 }
 
-func (m *VrrpVrDetails) Size() int {
+func (m *VrrpVrDetails) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4     // m.Config.SwIfIndex
        size += 1     // m.Config.VrID
        size += 1     // m.Config.Priority
@@ -321,32 +315,30 @@ func (m *VrrpVrDetails) Size() int {
        return size
 }
 func (m *VrrpVrDetails) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
+       buf := codec.NewBuffer(b)
        buf.EncodeUint32(uint32(m.Config.SwIfIndex))
-       buf.EncodeUint8(uint8(m.Config.VrID))
-       buf.EncodeUint8(uint8(m.Config.Priority))
-       buf.EncodeUint16(uint16(m.Config.Interval))
+       buf.EncodeUint8(m.Config.VrID)
+       buf.EncodeUint8(m.Config.Priority)
+       buf.EncodeUint16(m.Config.Interval)
        buf.EncodeUint32(uint32(m.Config.Flags))
        buf.EncodeUint32(uint32(m.Runtime.State))
-       buf.EncodeUint16(uint16(m.Runtime.MasterAdvInt))
-       buf.EncodeUint16(uint16(m.Runtime.Skew))
-       buf.EncodeUint16(uint16(m.Runtime.MasterDownInt))
+       buf.EncodeUint16(m.Runtime.MasterAdvInt)
+       buf.EncodeUint16(m.Runtime.Skew)
+       buf.EncodeUint16(m.Runtime.MasterDownInt)
        buf.EncodeBytes(m.Runtime.Mac[:], 6)
-       buf.EncodeUint32(uint32(m.Runtime.Tracking.InterfacesDec))
-       buf.EncodeUint8(uint8(m.Runtime.Tracking.Priority))
+       buf.EncodeUint32(m.Runtime.Tracking.InterfacesDec)
+       buf.EncodeUint8(m.Runtime.Tracking.Priority)
        buf.EncodeUint8(uint8(len(m.Addrs)))
        for j0 := 0; j0 < len(m.Addrs); j0++ {
-               var v0 ip_types.Address
+               var v0 ip_types.Address // Addrs
                if j0 < len(m.Addrs) {
                        v0 = m.Addrs[j0]
                }
                buf.EncodeUint8(uint8(v0.Af))
-               buf.EncodeBytes(v0.Un.XXX_UnionData[:], 0)
+               buf.EncodeBytes(v0.Un.XXX_UnionData[:], 16)
        }
        return buf.Bytes(), nil
 }
@@ -365,7 +357,7 @@ func (m *VrrpVrDetails) Unmarshal(b []byte) error {
        m.Runtime.Tracking.InterfacesDec = buf.DecodeUint32()
        m.Runtime.Tracking.Priority = buf.DecodeUint8()
        m.NAddrs = buf.DecodeUint8()
-       m.Addrs = make([]ip_types.Address, int(m.NAddrs))
+       m.Addrs = make([]ip_types.Address, m.NAddrs)
        for j0 := 0; j0 < len(m.Addrs); j0++ {
                m.Addrs[j0].Af = ip_types.AddressFamily(buf.DecodeUint8())
                copy(m.Addrs[j0].Un.XXX_UnionData[:], buf.DecodeBytes(16))
@@ -385,21 +377,18 @@ func (*VrrpVrDump) GetMessageType() api.MessageType {
        return api.RequestMessage
 }
 
-func (m *VrrpVrDump) Size() int {
+func (m *VrrpVrDump) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.SwIfIndex
        return size
 }
 func (m *VrrpVrDump) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
+       buf := codec.NewBuffer(b)
        buf.EncodeUint32(uint32(m.SwIfIndex))
        return buf.Bytes(), nil
 }
@@ -409,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"`
@@ -420,16 +460,15 @@ 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
 }
 
-func (m *VrrpVrPeerDetails) Size() int {
+func (m *VrrpVrPeerDetails) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.SwIfIndex
        size += 1 // m.VrID
        size += 1 // m.IsIPv6
@@ -446,23 +485,21 @@ func (m *VrrpVrPeerDetails) Size() int {
        return size
 }
 func (m *VrrpVrPeerDetails) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
+       buf := codec.NewBuffer(b)
        buf.EncodeUint32(uint32(m.SwIfIndex))
-       buf.EncodeUint8(uint8(m.VrID))
-       buf.EncodeUint8(uint8(m.IsIPv6))
+       buf.EncodeUint8(m.VrID)
+       buf.EncodeUint8(m.IsIPv6)
        buf.EncodeUint8(uint8(len(m.PeerAddrs)))
        for j0 := 0; j0 < len(m.PeerAddrs); j0++ {
-               var v0 ip_types.Address
+               var v0 ip_types.Address // PeerAddrs
                if j0 < len(m.PeerAddrs) {
                        v0 = m.PeerAddrs[j0]
                }
                buf.EncodeUint8(uint8(v0.Af))
-               buf.EncodeBytes(v0.Un.XXX_UnionData[:], 0)
+               buf.EncodeBytes(v0.Un.XXX_UnionData[:], 16)
        }
        return buf.Bytes(), nil
 }
@@ -472,7 +509,7 @@ func (m *VrrpVrPeerDetails) Unmarshal(b []byte) error {
        m.VrID = buf.DecodeUint8()
        m.IsIPv6 = buf.DecodeUint8()
        m.NPeerAddrs = buf.DecodeUint8()
-       m.PeerAddrs = make([]ip_types.Address, int(m.NPeerAddrs))
+       m.PeerAddrs = make([]ip_types.Address, m.NPeerAddrs)
        for j0 := 0; j0 < len(m.PeerAddrs); j0++ {
                m.PeerAddrs[j0].Af = ip_types.AddressFamily(buf.DecodeUint8())
                copy(m.PeerAddrs[j0].Un.XXX_UnionData[:], buf.DecodeBytes(16))
@@ -494,26 +531,23 @@ func (*VrrpVrPeerDump) GetMessageType() api.MessageType {
        return api.RequestMessage
 }
 
-func (m *VrrpVrPeerDump) Size() int {
+func (m *VrrpVrPeerDump) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.SwIfIndex
        size += 1 // m.IsIPv6
        size += 1 // m.VrID
        return size
 }
 func (m *VrrpVrPeerDump) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
+       buf := codec.NewBuffer(b)
        buf.EncodeUint32(uint32(m.SwIfIndex))
-       buf.EncodeUint8(uint8(m.IsIPv6))
-       buf.EncodeUint8(uint8(m.VrID))
+       buf.EncodeUint8(m.IsIPv6)
+       buf.EncodeUint8(m.VrID)
        return buf.Bytes(), nil
 }
 func (m *VrrpVrPeerDump) Unmarshal(b []byte) error {
@@ -535,16 +569,15 @@ 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
 }
 
-func (m *VrrpVrSetPeers) Size() int {
+func (m *VrrpVrSetPeers) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.SwIfIndex
        size += 1 // m.VrID
        size += 1 // m.IsIPv6
@@ -561,23 +594,21 @@ func (m *VrrpVrSetPeers) Size() int {
        return size
 }
 func (m *VrrpVrSetPeers) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
+       buf := codec.NewBuffer(b)
        buf.EncodeUint32(uint32(m.SwIfIndex))
-       buf.EncodeUint8(uint8(m.VrID))
-       buf.EncodeUint8(uint8(m.IsIPv6))
+       buf.EncodeUint8(m.VrID)
+       buf.EncodeUint8(m.IsIPv6)
        buf.EncodeUint8(uint8(len(m.Addrs)))
        for j0 := 0; j0 < len(m.Addrs); j0++ {
-               var v0 ip_types.Address
+               var v0 ip_types.Address // Addrs
                if j0 < len(m.Addrs) {
                        v0 = m.Addrs[j0]
                }
                buf.EncodeUint8(uint8(v0.Af))
-               buf.EncodeBytes(v0.Un.XXX_UnionData[:], 0)
+               buf.EncodeBytes(v0.Un.XXX_UnionData[:], 16)
        }
        return buf.Bytes(), nil
 }
@@ -587,7 +618,7 @@ func (m *VrrpVrSetPeers) Unmarshal(b []byte) error {
        m.VrID = buf.DecodeUint8()
        m.IsIPv6 = buf.DecodeUint8()
        m.NAddrs = buf.DecodeUint8()
-       m.Addrs = make([]ip_types.Address, int(m.NAddrs))
+       m.Addrs = make([]ip_types.Address, m.NAddrs)
        for j0 := 0; j0 < len(m.Addrs); j0++ {
                m.Addrs[j0].Af = ip_types.AddressFamily(buf.DecodeUint8())
                copy(m.Addrs[j0].Un.XXX_UnionData[:], buf.DecodeBytes(16))
@@ -607,27 +638,24 @@ func (*VrrpVrSetPeersReply) GetMessageType() api.MessageType {
        return api.ReplyMessage
 }
 
-func (m *VrrpVrSetPeersReply) Size() int {
+func (m *VrrpVrSetPeersReply) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.Retval
        return size
 }
 func (m *VrrpVrSetPeersReply) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
-       buf.EncodeUint32(uint32(m.Retval))
+       buf := codec.NewBuffer(b)
+       buf.EncodeInt32(m.Retval)
        return buf.Bytes(), nil
 }
 func (m *VrrpVrSetPeersReply) Unmarshal(b []byte) error {
        buf := codec.NewBuffer(b)
-       m.Retval = int32(buf.DecodeUint32())
+       m.Retval = buf.DecodeInt32()
        return nil
 }
 
@@ -646,11 +674,10 @@ func (*VrrpVrStartStop) GetMessageType() api.MessageType {
        return api.RequestMessage
 }
 
-func (m *VrrpVrStartStop) Size() int {
+func (m *VrrpVrStartStop) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.SwIfIndex
        size += 1 // m.VrID
        size += 1 // m.IsIPv6
@@ -658,16 +685,14 @@ func (m *VrrpVrStartStop) Size() int {
        return size
 }
 func (m *VrrpVrStartStop) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
+       buf := codec.NewBuffer(b)
        buf.EncodeUint32(uint32(m.SwIfIndex))
-       buf.EncodeUint8(uint8(m.VrID))
-       buf.EncodeUint8(uint8(m.IsIPv6))
-       buf.EncodeUint8(uint8(m.IsStart))
+       buf.EncodeUint8(m.VrID)
+       buf.EncodeUint8(m.IsIPv6)
+       buf.EncodeUint8(m.IsStart)
        return buf.Bytes(), nil
 }
 func (m *VrrpVrStartStop) Unmarshal(b []byte) error {
@@ -691,27 +716,24 @@ func (*VrrpVrStartStopReply) GetMessageType() api.MessageType {
        return api.ReplyMessage
 }
 
-func (m *VrrpVrStartStopReply) Size() int {
+func (m *VrrpVrStartStopReply) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.Retval
        return size
 }
 func (m *VrrpVrStartStopReply) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
-       buf.EncodeUint32(uint32(m.Retval))
+       buf := codec.NewBuffer(b)
+       buf.EncodeInt32(m.Retval)
        return buf.Bytes(), nil
 }
 func (m *VrrpVrStartStopReply) Unmarshal(b []byte) error {
        buf := codec.NewBuffer(b)
-       m.Retval = int32(buf.DecodeUint32())
+       m.Retval = buf.DecodeInt32()
        return nil
 }
 
@@ -727,16 +749,15 @@ 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
 }
 
-func (m *VrrpVrTrackIfAddDel) Size() int {
+func (m *VrrpVrTrackIfAddDel) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.SwIfIndex
        size += 1 // m.IsIPv6
        size += 1 // m.VrID
@@ -754,24 +775,22 @@ func (m *VrrpVrTrackIfAddDel) Size() int {
        return size
 }
 func (m *VrrpVrTrackIfAddDel) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
+       buf := codec.NewBuffer(b)
        buf.EncodeUint32(uint32(m.SwIfIndex))
-       buf.EncodeUint8(uint8(m.IsIPv6))
-       buf.EncodeUint8(uint8(m.VrID))
-       buf.EncodeUint8(uint8(m.IsAdd))
+       buf.EncodeUint8(m.IsIPv6)
+       buf.EncodeUint8(m.VrID)
+       buf.EncodeUint8(m.IsAdd)
        buf.EncodeUint8(uint8(len(m.Ifs)))
        for j0 := 0; j0 < len(m.Ifs); j0++ {
-               var v0 VrrpVrTrackIf
+               var v0 VrrpVrTrackIf // Ifs
                if j0 < len(m.Ifs) {
                        v0 = m.Ifs[j0]
                }
                buf.EncodeUint32(uint32(v0.SwIfIndex))
-               buf.EncodeUint8(uint8(v0.Priority))
+               buf.EncodeUint8(v0.Priority)
        }
        return buf.Bytes(), nil
 }
@@ -782,7 +801,7 @@ func (m *VrrpVrTrackIfAddDel) Unmarshal(b []byte) error {
        m.VrID = buf.DecodeUint8()
        m.IsAdd = buf.DecodeUint8()
        m.NIfs = buf.DecodeUint8()
-       m.Ifs = make([]VrrpVrTrackIf, int(m.NIfs))
+       m.Ifs = make([]VrrpVrTrackIf, m.NIfs)
        for j0 := 0; j0 < len(m.Ifs); j0++ {
                m.Ifs[j0].SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
                m.Ifs[j0].Priority = buf.DecodeUint8()
@@ -802,27 +821,24 @@ func (*VrrpVrTrackIfAddDelReply) GetMessageType() api.MessageType {
        return api.ReplyMessage
 }
 
-func (m *VrrpVrTrackIfAddDelReply) Size() int {
+func (m *VrrpVrTrackIfAddDelReply) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.Retval
        return size
 }
 func (m *VrrpVrTrackIfAddDelReply) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
-       buf.EncodeUint32(uint32(m.Retval))
+       buf := codec.NewBuffer(b)
+       buf.EncodeInt32(m.Retval)
        return buf.Bytes(), nil
 }
 func (m *VrrpVrTrackIfAddDelReply) Unmarshal(b []byte) error {
        buf := codec.NewBuffer(b)
-       m.Retval = int32(buf.DecodeUint32())
+       m.Retval = buf.DecodeInt32()
        return nil
 }
 
@@ -837,16 +853,15 @@ 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
 }
 
-func (m *VrrpVrTrackIfDetails) Size() int {
+func (m *VrrpVrTrackIfDetails) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.SwIfIndex
        size += 1 // m.VrID
        size += 1 // m.IsIPv6
@@ -863,23 +878,21 @@ func (m *VrrpVrTrackIfDetails) Size() int {
        return size
 }
 func (m *VrrpVrTrackIfDetails) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
+       buf := codec.NewBuffer(b)
        buf.EncodeUint32(uint32(m.SwIfIndex))
-       buf.EncodeUint8(uint8(m.VrID))
-       buf.EncodeUint8(uint8(m.IsIPv6))
+       buf.EncodeUint8(m.VrID)
+       buf.EncodeUint8(m.IsIPv6)
        buf.EncodeUint8(uint8(len(m.Ifs)))
        for j0 := 0; j0 < len(m.Ifs); j0++ {
-               var v0 VrrpVrTrackIf
+               var v0 VrrpVrTrackIf // Ifs
                if j0 < len(m.Ifs) {
                        v0 = m.Ifs[j0]
                }
                buf.EncodeUint32(uint32(v0.SwIfIndex))
-               buf.EncodeUint8(uint8(v0.Priority))
+               buf.EncodeUint8(v0.Priority)
        }
        return buf.Bytes(), nil
 }
@@ -889,7 +902,7 @@ func (m *VrrpVrTrackIfDetails) Unmarshal(b []byte) error {
        m.VrID = buf.DecodeUint8()
        m.IsIPv6 = buf.DecodeUint8()
        m.NIfs = buf.DecodeUint8()
-       m.Ifs = make([]VrrpVrTrackIf, int(m.NIfs))
+       m.Ifs = make([]VrrpVrTrackIf, m.NIfs)
        for j0 := 0; j0 < len(m.Ifs); j0++ {
                m.Ifs[j0].SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
                m.Ifs[j0].Priority = buf.DecodeUint8()
@@ -912,11 +925,10 @@ func (*VrrpVrTrackIfDump) GetMessageType() api.MessageType {
        return api.RequestMessage
 }
 
-func (m *VrrpVrTrackIfDump) Size() int {
+func (m *VrrpVrTrackIfDump) Size() (size int) {
        if m == nil {
                return 0
        }
-       var size int
        size += 4 // m.SwIfIndex
        size += 1 // m.IsIPv6
        size += 1 // m.VrID
@@ -924,16 +936,14 @@ func (m *VrrpVrTrackIfDump) Size() int {
        return size
 }
 func (m *VrrpVrTrackIfDump) Marshal(b []byte) ([]byte, error) {
-       var buf *codec.Buffer
        if b == nil {
-               buf = codec.NewBuffer(make([]byte, m.Size()))
-       } else {
-               buf = codec.NewBuffer(b)
+               b = make([]byte, m.Size())
        }
+       buf := codec.NewBuffer(b)
        buf.EncodeUint32(uint32(m.SwIfIndex))
-       buf.EncodeUint8(uint8(m.IsIPv6))
-       buf.EncodeUint8(uint8(m.VrID))
-       buf.EncodeUint8(uint8(m.DumpAll))
+       buf.EncodeUint8(m.IsIPv6)
+       buf.EncodeUint8(m.VrID)
+       buf.EncodeUint8(m.DumpAll)
        return buf.Bytes(), nil
 }
 func (m *VrrpVrTrackIfDump) Unmarshal(b []byte) error {
@@ -945,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.
@@ -970,6 +1053,7 @@ func AllMessages() []api.Message {
                (*VrrpVrAddDelReply)(nil),
                (*VrrpVrDetails)(nil),
                (*VrrpVrDump)(nil),
+               (*VrrpVrEvent)(nil),
                (*VrrpVrPeerDetails)(nil),
                (*VrrpVrPeerDump)(nil),
                (*VrrpVrSetPeers)(nil),
@@ -980,5 +1064,7 @@ func AllMessages() []api.Message {
                (*VrrpVrTrackIfAddDelReply)(nil),
                (*VrrpVrTrackIfDetails)(nil),
                (*VrrpVrTrackIfDump)(nil),
+               (*WantVrrpVrEvents)(nil),
+               (*WantVrrpVrEventsReply)(nil),
        }
 }