github.com/edwarnicke/govpp@v0.0.0-20230130211138-14ef5d20b1d0/binapi/feature/feature.ba.go (about) 1 // Code generated by GoVPP's binapi-generator. DO NOT EDIT. 2 // versions: 3 // binapi-generator: v0.4.0-dev 4 // VPP: 23.02-rc0~189-g57127b32a 5 // source: /usr/share/vpp/api/core/feature.api.json 6 7 // Package feature contains generated bindings for API file feature.api. 8 // 9 // Contents: 10 // 2 messages 11 // 12 package feature 13 14 import ( 15 api "git.fd.io/govpp.git/api" 16 codec "git.fd.io/govpp.git/codec" 17 interface_types "github.com/edwarnicke/govpp/binapi/interface_types" 18 ) 19 20 // This is a compile-time assertion to ensure that this generated file 21 // is compatible with the GoVPP api package it is being compiled against. 22 // A compilation error at this line likely means your copy of the 23 // GoVPP api package needs to be updated. 24 const _ = api.GoVppAPIPackageIsVersion2 25 26 const ( 27 APIFile = "feature" 28 APIVersion = "1.0.2" 29 VersionCrc = 0x8a6e6da1 30 ) 31 32 // FeatureEnableDisable defines message 'feature_enable_disable'. 33 type FeatureEnableDisable struct { 34 SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"` 35 Enable bool `binapi:"bool,name=enable" json:"enable,omitempty"` 36 ArcName string `binapi:"string[64],name=arc_name" json:"arc_name,omitempty"` 37 FeatureName string `binapi:"string[64],name=feature_name" json:"feature_name,omitempty"` 38 } 39 40 func (m *FeatureEnableDisable) Reset() { *m = FeatureEnableDisable{} } 41 func (*FeatureEnableDisable) GetMessageName() string { return "feature_enable_disable" } 42 func (*FeatureEnableDisable) GetCrcString() string { return "7531c862" } 43 func (*FeatureEnableDisable) GetMessageType() api.MessageType { 44 return api.RequestMessage 45 } 46 47 func (m *FeatureEnableDisable) Size() (size int) { 48 if m == nil { 49 return 0 50 } 51 size += 4 // m.SwIfIndex 52 size += 1 // m.Enable 53 size += 64 // m.ArcName 54 size += 64 // m.FeatureName 55 return size 56 } 57 func (m *FeatureEnableDisable) Marshal(b []byte) ([]byte, error) { 58 if b == nil { 59 b = make([]byte, m.Size()) 60 } 61 buf := codec.NewBuffer(b) 62 buf.EncodeUint32(uint32(m.SwIfIndex)) 63 buf.EncodeBool(m.Enable) 64 buf.EncodeString(m.ArcName, 64) 65 buf.EncodeString(m.FeatureName, 64) 66 return buf.Bytes(), nil 67 } 68 func (m *FeatureEnableDisable) Unmarshal(b []byte) error { 69 buf := codec.NewBuffer(b) 70 m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32()) 71 m.Enable = buf.DecodeBool() 72 m.ArcName = buf.DecodeString(64) 73 m.FeatureName = buf.DecodeString(64) 74 return nil 75 } 76 77 // FeatureEnableDisableReply defines message 'feature_enable_disable_reply'. 78 type FeatureEnableDisableReply struct { 79 Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"` 80 } 81 82 func (m *FeatureEnableDisableReply) Reset() { *m = FeatureEnableDisableReply{} } 83 func (*FeatureEnableDisableReply) GetMessageName() string { return "feature_enable_disable_reply" } 84 func (*FeatureEnableDisableReply) GetCrcString() string { return "e8d4e804" } 85 func (*FeatureEnableDisableReply) GetMessageType() api.MessageType { 86 return api.ReplyMessage 87 } 88 89 func (m *FeatureEnableDisableReply) Size() (size int) { 90 if m == nil { 91 return 0 92 } 93 size += 4 // m.Retval 94 return size 95 } 96 func (m *FeatureEnableDisableReply) Marshal(b []byte) ([]byte, error) { 97 if b == nil { 98 b = make([]byte, m.Size()) 99 } 100 buf := codec.NewBuffer(b) 101 buf.EncodeInt32(m.Retval) 102 return buf.Bytes(), nil 103 } 104 func (m *FeatureEnableDisableReply) Unmarshal(b []byte) error { 105 buf := codec.NewBuffer(b) 106 m.Retval = buf.DecodeInt32() 107 return nil 108 } 109 110 func init() { file_feature_binapi_init() } 111 func file_feature_binapi_init() { 112 api.RegisterMessage((*FeatureEnableDisable)(nil), "feature_enable_disable_7531c862") 113 api.RegisterMessage((*FeatureEnableDisableReply)(nil), "feature_enable_disable_reply_e8d4e804") 114 } 115 116 // Messages returns list of all messages in this module. 117 func AllMessages() []api.Message { 118 return []api.Message{ 119 (*FeatureEnableDisable)(nil), 120 (*FeatureEnableDisableReply)(nil), 121 } 122 }