aboutsummaryrefslogtreecommitdiffstats
path: root/internal/testbinapi/binapi2001/netmap/netmap.ba.go
blob: 0934ce6fc74281e4fe831e3edada190135db5b07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
// versions:
//  binapi-generator: v0.4.0-dev
//  VPP:              20.01
// source: .vppapi/core/netmap.api.json

// Package netmap contains generated bindings for API file netmap.api.
//
// Contents:
//   4 messages
//
package netmap

import (
	api "git.fd.io/govpp.git/api"
	codec "git.fd.io/govpp.git/codec"
)

// This is a compile-time assertion to ensure that this generated file
// is compatible with the GoVPP api package it is being compiled against.
// A compilation error at this line likely means your copy of the
// GoVPP api package needs to be updated.
const _ = api.GoVppAPIPackageIsVersion2

const (
	APIFile    = "netmap"
	APIVersion = "1.0.0"
	VersionCrc = 0x40e7a84f
)

// NetmapCreate defines message 'netmap_create'.
type NetmapCreate struct {
	NetmapIfName    []byte `binapi:"u8[64],name=netmap_if_name" json:"netmap_if_name,omitempty"`
	HwAddr          []byte `binapi:"u8[6],name=hw_addr" json:"hw_addr,omitempty"`
	UseRandomHwAddr uint8  `binapi:"u8,name=use_random_hw_addr" json:"use_random_hw_addr,omitempty"`
	IsPipe          uint8  `binapi:"u8,name=is_pipe" json:"is_pipe,omitempty"`
	IsMaster        uint8  `binapi:"u8,name=is_master" json:"is_master,omitempty"`
}

func (m *NetmapCreate) Reset()               { *m = NetmapCreate{} }
func (*NetmapCreate) GetMessageName() string { return "netmap_create" }
func (*NetmapCreate) GetCrcString() string   { return "5299044e" }
func (*NetmapCreate) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *NetmapCreate) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 1 * 64 // m.NetmapIfName
	size += 1 * 6  // m.HwAddr
	size += 1      // m.UseRandomHwAddr
	size += 1      // m.IsPipe
	size += 1      // m.IsMaster
	return size
}
func (m *NetmapCreate) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeBytes(m.NetmapIfName, 64)
	buf.EncodeBytes(m.HwAddr, 6)
	buf.EncodeUint8(m.UseRandomHwAddr)
	buf.EncodeUint8(m.IsPipe)
	buf.EncodeUint8(m.IsMaster)
	return buf.Bytes(), nil
}
func (m *NetmapCreate) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.NetmapIfName = make([]byte, 64)
	copy(m.NetmapIfName, buf.DecodeBytes(len(m.NetmapIfName)))
	m.HwAddr = make([]byte, 6)
	copy(m.HwAddr, buf.DecodeBytes(len(m.HwAddr)))
	m.UseRandomHwAddr = buf.DecodeUint8()
	m.IsPipe = buf.DecodeUint8()
	m.IsMaster = buf.DecodeUint8()
	return nil
}

// NetmapCreateReply defines message 'netmap_create_reply'.
type NetmapCreateReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

func (m *NetmapCreateReply) Reset()               { *m = NetmapCreateReply{} }
func (*NetmapCreateReply) GetMessageName() string { return "netmap_create_reply" }
func (*NetmapCreateReply) GetCrcString() string   { return "e8d4e804" }
func (*NetmapCreateReply) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

func (m *NetmapCreateReply) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 4 // m.Retval
	return size
}
func (m *NetmapCreateReply) 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 *NetmapCreateReply) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.Retval = buf.DecodeInt32()
	return nil
}

// NetmapDelete defines message 'netmap_delete'.
type NetmapDelete struct {
	NetmapIfName []byte `binapi:"u8[64],name=netmap_if_name" json:"netmap_if_name,omitempty"`
}

func (m *NetmapDelete) Reset()               { *m = NetmapDelete{} }
func (*NetmapDelete) GetMessageName() string { return "netmap_delete" }
func (*NetmapDelete) GetCrcString() string   { return "a8b6c201" }
func (*NetmapDelete) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *NetmapDelete) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 1 * 64 // m.NetmapIfName
	return size
}
func (m *NetmapDelete) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeBytes(m.NetmapIfName, 64)
	return buf.Bytes(), nil
}
func (m *NetmapDelete) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.NetmapIfName = make([]byte, 64)
	copy(m.NetmapIfName, buf.DecodeBytes(len(m.NetmapIfName)))
	return nil
}

// NetmapDeleteReply defines message 'netmap_delete_reply'.
type NetmapDeleteReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

func (m *NetmapDeleteReply) Reset()               { *m = NetmapDeleteReply{} }
func (*NetmapDeleteReply) GetMessageName() string { return "netmap_delete_reply" }
func (*NetmapDeleteReply) GetCrcString() string   { return "e8d4e804" }
func (*NetmapDeleteReply) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

func (m *NetmapDeleteReply) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 4 // m.Retval
	return size
}
func (m *NetmapDeleteReply) 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 *NetmapDeleteReply) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.Retval = buf.DecodeInt32()
	return nil
}

func init() { file_netmap_binapi_init() }
func file_netmap_binapi_init() {
	api.RegisterMessage((*NetmapCreate)(nil), "netmap_create_5299044e")
	api.RegisterMessage((*NetmapCreateReply)(nil), "netmap_create_reply_e8d4e804")
	api.RegisterMessage((*NetmapDelete)(nil), "netmap_delete_a8b6c201")
	api.RegisterMessage((*NetmapDeleteReply)(nil), "netmap_delete_reply_e8d4e804")
}

// Messages returns list of all messages in this module.
func AllMessages() []api.Message {
	return []api.Message{
		(*NetmapCreate)(nil),
		(*NetmapCreateReply)(nil),
		(*NetmapDelete)(nil),
		(*NetmapDeleteReply)(nil),
	}
}