aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/vmxnet3/vmxnet3.ba.go
blob: 77937fa1d7d38e3dd009232a0eee82a759873534 (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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
// versions:
//  binapi-generator: v0.4.0-dev
//  VPP:              20.05-release
// source: /usr/share/vpp/api/plugins/vmxnet3.api.json

// Package vmxnet3 contains generated bindings for API file vmxnet3.api.
//
// Contents:
//   2 structs
//   6 messages
//
package vmxnet3

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"
	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    = "vmxnet3"
	APIVersion = "1.1.0"
	VersionCrc = 0x38928311
)

// Vmxnet3RxList defines type 'vmxnet3_rx_list'.
type Vmxnet3RxList struct {
	RxQsize   uint16   `binapi:"u16,name=rx_qsize" json:"rx_qsize,omitempty"`
	RxFill    []uint16 `binapi:"u16[2],name=rx_fill" json:"rx_fill,omitempty"`
	RxNext    uint16   `binapi:"u16,name=rx_next" json:"rx_next,omitempty"`
	RxProduce []uint16 `binapi:"u16[2],name=rx_produce" json:"rx_produce,omitempty"`
	RxConsume []uint16 `binapi:"u16[2],name=rx_consume" json:"rx_consume,omitempty"`
}

// Vmxnet3TxList defines type 'vmxnet3_tx_list'.
type Vmxnet3TxList struct {
	TxQsize   uint16 `binapi:"u16,name=tx_qsize" json:"tx_qsize,omitempty"`
	TxNext    uint16 `binapi:"u16,name=tx_next" json:"tx_next,omitempty"`
	TxProduce uint16 `binapi:"u16,name=tx_produce" json:"tx_produce,omitempty"`
	TxConsume uint16 `binapi:"u16,name=tx_consume" json:"tx_consume,omitempty"`
}

// Vmxnet3Create defines message 'vmxnet3_create'.
type Vmxnet3Create struct {
	PciAddr    uint32 `binapi:"u32,name=pci_addr" json:"pci_addr,omitempty"`
	EnableElog int32  `binapi:"i32,name=enable_elog" json:"enable_elog,omitempty"`
	RxqSize    uint16 `binapi:"u16,name=rxq_size" json:"rxq_size,omitempty"`
	RxqNum     uint16 `binapi:"u16,name=rxq_num" json:"rxq_num,omitempty"`
	TxqSize    uint16 `binapi:"u16,name=txq_size" json:"txq_size,omitempty"`
	TxqNum     uint16 `binapi:"u16,name=txq_num" json:"txq_num,omitempty"`
	Bind       uint8  `binapi:"u8,name=bind" json:"bind,omitempty"`
	EnableGso  bool   `binapi:"bool,name=enable_gso" json:"enable_gso,omitempty"`
}

func (m *Vmxnet3Create) Reset()               { *m = Vmxnet3Create{} }
func (*Vmxnet3Create) GetMessageName() string { return "vmxnet3_create" }
func (*Vmxnet3Create) GetCrcString() string   { return "71a07314" }
func (*Vmxnet3Create) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *Vmxnet3Create) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 4 // m.PciAddr
	size += 4 // m.EnableElog
	size += 2 // m.RxqSize
	size += 2 // m.RxqNum
	size += 2 // m.TxqSize
	size += 2 // m.TxqNum
	size += 1 // m.Bind
	size += 1 // m.EnableGso
	return size
}
func (m *Vmxnet3Create) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeUint32(m.PciAddr)
	buf.EncodeInt32(m.EnableElog)
	buf.EncodeUint16(m.RxqSize)
	buf.EncodeUint16(m.RxqNum)
	buf.EncodeUint16(m.TxqSize)
	buf.EncodeUint16(m.TxqNum)
	buf.EncodeUint8(m.Bind)
	buf.EncodeBool(m.EnableGso)
	return buf.Bytes(), nil
}
func (m *Vmxnet3Create) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.PciAddr = buf.DecodeUint32()
	m.EnableElog = buf.DecodeInt32()
	m.RxqSize = buf.DecodeUint16()
	m.RxqNum = buf.DecodeUint16()
	m.TxqSize = buf.DecodeUint16()
	m.TxqNum = buf.DecodeUint16()
	m.Bind = buf.DecodeUint8()
	m.EnableGso = buf.DecodeBool()
	return nil
}

// Vmxnet3CreateReply defines message 'vmxnet3_create_reply'.
type Vmxnet3CreateReply struct {
	Retval    int32                          `binapi:"i32,name=retval" json:"retval,omitempty"`
	SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
}

func (m *Vmxnet3CreateReply) Reset()               { *m = Vmxnet3CreateReply{} }
func (*Vmxnet3CreateReply) GetMessageName() string { return "vmxnet3_create_reply" }
func (*Vmxnet3CreateReply) GetCrcString() string   { return "5383d31f" }
func (*Vmxnet3CreateReply) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

func (m *Vmxnet3CreateReply) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 4 // m.Retval
	size += 4 // m.SwIfIndex
	return size
}
func (m *Vmxnet3CreateReply) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeInt32(m.Retval)
	buf.EncodeUint32(uint32(m.SwIfIndex))
	return buf.Bytes(), nil
}
func (m *Vmxnet3CreateReply) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.Retval = buf.DecodeInt32()
	m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
	return nil
}

// Vmxnet3Delete defines message 'vmxnet3_delete'.
type Vmxnet3Delete struct {
	SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
}

func (m *Vmxnet3Delete) Reset()               { *m = Vmxnet3Delete{} }
func (*Vmxnet3Delete) GetMessageName() string { return "vmxnet3_delete" }
func (*Vmxnet3Delete) GetCrcString() string   { return "f9e6675e" }
func (*Vmxnet3Delete) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *Vmxnet3Delete) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 4 // m.SwIfIndex
	return size
}
func (m *Vmxnet3Delete) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeUint32(uint32(m.SwIfIndex))
	return buf.Bytes(), nil
}
func (m *Vmxnet3Delete) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
	return nil
}

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

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

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

// Vmxnet3Details defines message 'vmxnet3_details'.
type Vmxnet3Details struct {
	SwIfIndex   interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
	IfName      string                         `binapi:"string[64],name=if_name" json:"if_name,omitempty"`
	HwAddr      ethernet_types.MacAddress      `binapi:"mac_address,name=hw_addr" json:"hw_addr,omitempty"`
	PciAddr     uint32                         `binapi:"u32,name=pci_addr" json:"pci_addr,omitempty"`
	Version     uint8                          `binapi:"u8,name=version" json:"version,omitempty"`
	AdminUpDown bool                           `binapi:"bool,name=admin_up_down" json:"admin_up_down,omitempty"`
	RxCount     uint8                          `binapi:"u8,name=rx_count" json:"rx_count,omitempty"`
	RxList      [16]Vmxnet3RxList              `binapi:"vmxnet3_rx_list[16],name=rx_list" json:"rx_list,omitempty"`
	TxCount     uint8                          `binapi:"u8,name=tx_count" json:"tx_count,omitempty"`
	TxList      [8]Vmxnet3TxList               `binapi:"vmxnet3_tx_list[8],name=tx_list" json:"tx_list,omitempty"`
}

func (m *Vmxnet3Details) Reset()               { *m = Vmxnet3Details{} }
func (*Vmxnet3Details) GetMessageName() string { return "vmxnet3_details" }
func (*Vmxnet3Details) GetCrcString() string   { return "829ba055" }
func (*Vmxnet3Details) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

func (m *Vmxnet3Details) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 4     // m.SwIfIndex
	size += 64    // m.IfName
	size += 1 * 6 // m.HwAddr
	size += 4     // m.PciAddr
	size += 1     // m.Version
	size += 1     // m.AdminUpDown
	size += 1     // m.RxCount
	for j1 := 0; j1 < 16; j1++ {
		size += 2     // m.RxList[j1].RxQsize
		size += 2 * 2 // m.RxList[j1].RxFill
		size += 2     // m.RxList[j1].RxNext
		size += 2 * 2 // m.RxList[j1].RxProduce
		size += 2 * 2 // m.RxList[j1].RxConsume
	}
	size += 1 // m.TxCount
	for j1 := 0; j1 < 8; j1++ {
		size += 2 // m.TxList[j1].TxQsize
		size += 2 // m.TxList[j1].TxNext
		size += 2 // m.TxList[j1].TxProduce
		size += 2 // m.TxList[j1].TxConsume
	}
	return size
}
func (m *Vmxnet3Details) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeUint32(uint32(m.SwIfIndex))
	buf.EncodeString(m.IfName, 64)
	buf.EncodeBytes(m.HwAddr[:], 6)
	buf.EncodeUint32(m.PciAddr)
	buf.EncodeUint8(m.Version)
	buf.EncodeBool(m.AdminUpDown)
	buf.EncodeUint8(m.RxCount)
	for j0 := 0; j0 < 16; j0++ {
		buf.EncodeUint16(m.RxList[j0].RxQsize)
		for i := 0; i < 2; i++ {
			var x uint16
			if i < len(m.RxList[j0].RxFill) {
				x = uint16(m.RxList[j0].RxFill[i])
			}
			buf.EncodeUint16(x)
		}
		buf.EncodeUint16(m.RxList[j0].RxNext)
		for i := 0; i < 2; i++ {
			var x uint16
			if i < len(m.RxList[j0].RxProduce) {
				x = uint16(m.RxList[j0].RxProduce[i])
			}
			buf.EncodeUint16(x)
		}
		for i := 0; i < 2; i++ {
			var x uint16
			if i < len(m.RxList[j0].RxConsume) {
				x = uint16(m.RxList[j0].RxConsume[i])
			}
			buf.EncodeUint16(x)
		}
	}
	buf.EncodeUint8(m.TxCount)
	for j0 := 0; j0 < 8; j0++ {
		buf.EncodeUint16(m.TxList[j0].TxQsize)
		buf.EncodeUint16(m.TxList[j0].TxNext)
		buf.EncodeUint16(m.TxList[j0].TxProduce)
		buf.EncodeUint16(m.TxList[j0].TxConsume)
	}
	return buf.Bytes(), nil
}
func (m *Vmxnet3Details) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
	m.IfName = buf.DecodeString(64)
	copy(m.HwAddr[:], buf.DecodeBytes(6))
	m.PciAddr = buf.DecodeUint32()
	m.Version = buf.DecodeUint8()
	m.AdminUpDown = buf.DecodeBool()
	m.RxCount = buf.DecodeUint8()
	for j0 := 0; j0 < 16; j0++ {
		m.RxList[j0].RxQsize = buf.DecodeUint16()
		m.RxList[j0].RxFill = make([]uint16, 2)
		for i := 0; i < len(m.RxList[j0].RxFill); i++ {
			m.RxList[j0].RxFill[i] = buf.DecodeUint16()
		}
		m.RxList[j0].RxNext = buf.DecodeUint16()
		m.RxList[j0].RxProduce = make([]uint16, 2)
		for i := 0; i < len(m.RxList[j0].RxProduce); i++ {
			m.RxList[j0].RxProduce[i] = buf.DecodeUint16()
		}
		m.RxList[j0].RxConsume = make([]uint16, 2)
		for i := 0; i < len(m.RxList[j0].RxConsume); i++ {
			m.RxList[j0].RxConsume[i] = buf.DecodeUint16()
		}
	}
	m.TxCount = buf.DecodeUint8()
	for j0 := 0; j0 < 8; j0++ {
		m.TxList[j0].TxQsize = buf.DecodeUint16()
		m.TxList[j0].TxNext = buf.DecodeUint16()
		m.TxList[j0].TxProduce = buf.DecodeUint16()
		m.TxList[j0].TxConsume = buf.DecodeUint16()
	}
	return nil
}

// Vmxnet3Dump defines message 'vmxnet3_dump'.
type Vmxnet3Dump struct{}

func (m *Vmxnet3Dump) Reset()               { *m = Vmxnet3Dump{} }
func (*Vmxnet3Dump) GetMessageName() string { return "vmxnet3_dump" }
func (*Vmxnet3Dump) GetCrcString() string   { return "51077d14" }
func (*Vmxnet3Dump) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *Vmxnet3Dump) Size() (size int) {
	if m == nil {
		return 0
	}
	return size
}
func (m *Vmxnet3Dump) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	return buf.Bytes(), nil
}
func (m *Vmxnet3Dump) Unmarshal(b []byte) error {
	return nil
}

func init() { file_vmxnet3_binapi_init() }
func file_vmxnet3_binapi_init() {
	api.RegisterMessage((*Vmxnet3Create)(nil), "vmxnet3_create_71a07314")
	api.RegisterMessage((*Vmxnet3CreateReply)(nil), "vmxnet3_create_reply_5383d31f")
	api.RegisterMessage((*Vmxnet3Delete)(nil), "vmxnet3_delete_f9e6675e")
	api.RegisterMessage((*Vmxnet3DeleteReply)(nil), "vmxnet3_delete_reply_e8d4e804")
	api.RegisterMessage((*Vmxnet3Details)(nil), "vmxnet3_details_829ba055")
	api.RegisterMessage((*Vmxnet3Dump)(nil), "vmxnet3_dump_51077d14")
}

// Messages returns list of all messages in this module.
func AllMessages() []api.Message {
	return []api.Message{
		(*Vmxnet3Create)(nil),
		(*Vmxnet3CreateReply)(nil),
		(*Vmxnet3Delete)(nil),
		(*Vmxnet3DeleteReply)(nil),
		(*Vmxnet3Details)(nil),
		(*Vmxnet3Dump)(nil),
	}
}