aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/nsh/nsh.ba.go
blob: 160f7bda5c13f1f204652e4cf9dcfef5b31e8dd3 (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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
// Code generated by GoVPP's binapi-generator. DO NOT EDIT.
// versions:
//  binapi-generator: v0.4.0-dev
//  VPP:              20.05-release

// Package nsh contains generated bindings for API file nsh.api.
//
// Contents:
//   8 messages
//
package nsh

import (
	api "git.fd.io/govpp.git/api"
	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    = "nsh"
	APIVersion = "1.0.0"
	VersionCrc = 0x43be6707
)

// NshAddDelEntry defines message 'nsh_add_del_entry'.
type NshAddDelEntry struct {
	IsAdd        bool   `binapi:"bool,name=is_add" json:"is_add,omitempty"`
	NspNsi       uint32 `binapi:"u32,name=nsp_nsi" json:"nsp_nsi,omitempty"`
	MdType       uint8  `binapi:"u8,name=md_type" json:"md_type,omitempty"`
	VerOC        uint8  `binapi:"u8,name=ver_o_c" json:"ver_o_c,omitempty"`
	TTL          uint8  `binapi:"u8,name=ttl" json:"ttl,omitempty"`
	Length       uint8  `binapi:"u8,name=length" json:"length,omitempty"`
	NextProtocol uint8  `binapi:"u8,name=next_protocol" json:"next_protocol,omitempty"`
	C1           uint32 `binapi:"u32,name=c1" json:"c1,omitempty"`
	C2           uint32 `binapi:"u32,name=c2" json:"c2,omitempty"`
	C3           uint32 `binapi:"u32,name=c3" json:"c3,omitempty"`
	C4           uint32 `binapi:"u32,name=c4" json:"c4,omitempty"`
	TlvLength    uint8  `binapi:"u8,name=tlv_length" json:"tlv_length,omitempty"`
	Tlv          []byte `binapi:"u8[248],name=tlv" json:"tlv,omitempty"`
}

func (m *NshAddDelEntry) Reset()               { *m = NshAddDelEntry{} }
func (*NshAddDelEntry) GetMessageName() string { return "nsh_add_del_entry" }
func (*NshAddDelEntry) GetCrcString() string   { return "7dea480b" }
func (*NshAddDelEntry) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *NshAddDelEntry) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 1       // m.IsAdd
	size += 4       // m.NspNsi
	size += 1       // m.MdType
	size += 1       // m.VerOC
	size += 1       // m.TTL
	size += 1       // m.Length
	size += 1       // m.NextProtocol
	size += 4       // m.C1
	size += 4       // m.C2
	size += 4       // m.C3
	size += 4       // m.C4
	size += 1       // m.TlvLength
	size += 1 * 248 // m.Tlv
	return size
}
func (m *NshAddDelEntry) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeBool(m.IsAdd)
	buf.EncodeUint32(m.NspNsi)
	buf.EncodeUint8(m.MdType)
	buf.EncodeUint8(m.VerOC)
	buf.EncodeUint8(m.TTL)
	buf.EncodeUint8(m.Length)
	buf.EncodeUint8(m.NextProtocol)
	buf.EncodeUint32(m.C1)
	buf.EncodeUint32(m.C2)
	buf.EncodeUint32(m.C3)
	buf.EncodeUint32(m.C4)
	buf.EncodeUint8(m.TlvLength)
	buf.EncodeBytes(m.Tlv, 248)
	return buf.Bytes(), nil
}
func (m *NshAddDelEntry) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.IsAdd = buf.DecodeBool()
	m.NspNsi = buf.DecodeUint32()
	m.MdType = buf.DecodeUint8()
	m.VerOC = buf.DecodeUint8()
	m.TTL = buf.DecodeUint8()
	m.Length = buf.DecodeUint8()
	m.NextProtocol = buf.DecodeUint8()
	m.C1 = buf.DecodeUint32()
	m.C2 = buf.DecodeUint32()
	m.C3 = buf.DecodeUint32()
	m.C4 = buf.DecodeUint32()
	m.TlvLength = buf.DecodeUint8()
	m.Tlv = make([]byte, 248)
	copy(m.Tlv, buf.DecodeBytes(len(m.Tlv)))
	return nil
}

// NshAddDelEntryReply defines message 'nsh_add_del_entry_reply'.
type NshAddDelEntryReply struct {
	Retval     int32  `binapi:"i32,name=retval" json:"retval,omitempty"`
	EntryIndex uint32 `binapi:"u32,name=entry_index" json:"entry_index,omitempty"`
}

func (m *NshAddDelEntryReply) Reset()               { *m = NshAddDelEntryReply{} }
func (*NshAddDelEntryReply) GetMessageName() string { return "nsh_add_del_entry_reply" }
func (*NshAddDelEntryReply) GetCrcString() string   { return "6296a9eb" }
func (*NshAddDelEntryReply) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

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

// NshAddDelMap defines message 'nsh_add_del_map'.
type NshAddDelMap struct {
	IsAdd        bool                           `binapi:"bool,name=is_add" json:"is_add,omitempty"`
	NspNsi       uint32                         `binapi:"u32,name=nsp_nsi" json:"nsp_nsi,omitempty"`
	MappedNspNsi uint32                         `binapi:"u32,name=mapped_nsp_nsi" json:"mapped_nsp_nsi,omitempty"`
	NshAction    uint32                         `binapi:"u32,name=nsh_action" json:"nsh_action,omitempty"`
	SwIfIndex    interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
	RxSwIfIndex  interface_types.InterfaceIndex `binapi:"interface_index,name=rx_sw_if_index" json:"rx_sw_if_index,omitempty"`
	NextNode     uint32                         `binapi:"u32,name=next_node" json:"next_node,omitempty"`
}

func (m *NshAddDelMap) Reset()               { *m = NshAddDelMap{} }
func (*NshAddDelMap) GetMessageName() string { return "nsh_add_del_map" }
func (*NshAddDelMap) GetCrcString() string   { return "898d857d" }
func (*NshAddDelMap) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *NshAddDelMap) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 1 // m.IsAdd
	size += 4 // m.NspNsi
	size += 4 // m.MappedNspNsi
	size += 4 // m.NshAction
	size += 4 // m.SwIfIndex
	size += 4 // m.RxSwIfIndex
	size += 4 // m.NextNode
	return size
}
func (m *NshAddDelMap) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeBool(m.IsAdd)
	buf.EncodeUint32(m.NspNsi)
	buf.EncodeUint32(m.MappedNspNsi)
	buf.EncodeUint32(m.NshAction)
	buf.EncodeUint32(uint32(m.SwIfIndex))
	buf.EncodeUint32(uint32(m.RxSwIfIndex))
	buf.EncodeUint32(m.NextNode)
	return buf.Bytes(), nil
}
func (m *NshAddDelMap) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.IsAdd = buf.DecodeBool()
	m.NspNsi = buf.DecodeUint32()
	m.MappedNspNsi = buf.DecodeUint32()
	m.NshAction = buf.DecodeUint32()
	m.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
	m.RxSwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
	m.NextNode = buf.DecodeUint32()
	return nil
}

// NshAddDelMapReply defines message 'nsh_add_del_map_reply'.
type NshAddDelMapReply struct {
	Retval   int32  `binapi:"i32,name=retval" json:"retval,omitempty"`
	MapIndex uint32 `binapi:"u32,name=map_index" json:"map_index,omitempty"`
}

func (m *NshAddDelMapReply) Reset()               { *m = NshAddDelMapReply{} }
func (*NshAddDelMapReply) GetMessageName() string { return "nsh_add_del_map_reply" }
func (*NshAddDelMapReply) GetCrcString() string   { return "b2b127ef" }
func (*NshAddDelMapReply) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

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

// NshEntryDetails defines message 'nsh_entry_details'.
type NshEntryDetails struct {
	EntryIndex   uint32 `binapi:"u32,name=entry_index" json:"entry_index,omitempty"`
	NspNsi       uint32 `binapi:"u32,name=nsp_nsi" json:"nsp_nsi,omitempty"`
	MdType       uint8  `binapi:"u8,name=md_type" json:"md_type,omitempty"`
	VerOC        uint8  `binapi:"u8,name=ver_o_c" json:"ver_o_c,omitempty"`
	TTL          uint8  `binapi:"u8,name=ttl" json:"ttl,omitempty"`
	Length       uint8  `binapi:"u8,name=length" json:"length,omitempty"`
	NextProtocol uint8  `binapi:"u8,name=next_protocol" json:"next_protocol,omitempty"`
	C1           uint32 `binapi:"u32,name=c1" json:"c1,omitempty"`
	C2           uint32 `binapi:"u32,name=c2" json:"c2,omitempty"`
	C3           uint32 `binapi:"u32,name=c3" json:"c3,omitempty"`
	C4           uint32 `binapi:"u32,name=c4" json:"c4,omitempty"`
	TlvLength    uint8  `binapi:"u8,name=tlv_length" json:"tlv_length,omitempty"`
	Tlv          []byte `binapi:"u8[248],name=tlv" json:"tlv,omitempty"`
}

func (m *NshEntryDetails) Reset()               { *m = NshEntryDetails{} }
func (*NshEntryDetails) GetMessageName() string { return "nsh_entry_details" }
func (*NshEntryDetails) GetCrcString() string   { return "046fb556" }
func (*NshEntryDetails) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

func (m *NshEntryDetails) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 4       // m.EntryIndex
	size += 4       // m.NspNsi
	size += 1       // m.MdType
	size += 1       // m.VerOC
	size += 1       // m.TTL
	size += 1       // m.Length
	size += 1       // m.NextProtocol
	size += 4       // m.C1
	size += 4       // m.C2
	size += 4       // m.C3
	size += 4       // m.C4
	size += 1       // m.TlvLength
	size += 1 * 248 // m.Tlv
	return size
}
func (m *NshEntryDetails) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeUint32(m.EntryIndex)
	buf.EncodeUint32(m.NspNsi)
	buf.EncodeUint8(m.MdType)
	buf.EncodeUint8(m.VerOC)
	buf.EncodeUint8(m.TTL)
	buf.EncodeUint8(m.Length)
	buf.EncodeUint8(m.NextProtocol)
	buf.EncodeUint32(m.C1)
	buf.EncodeUint32(m.C2)
	buf.EncodeUint32(m.C3)
	buf.EncodeUint32(m.C4)
	buf.EncodeUint8(m.TlvLength)
	buf.EncodeBytes(m.Tlv, 248)
	return buf.Bytes(), nil
}
func (m *NshEntryDetails) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.EntryIndex = buf.DecodeUint32()
	m.NspNsi = buf.DecodeUint32()
	m.MdType = buf.DecodeUint8()
	m.VerOC = buf.DecodeUint8()
	m.TTL = buf.DecodeUint8()
	m.Length = buf.DecodeUint8()
	m.NextProtocol = buf.DecodeUint8()
	m.C1 = buf.DecodeUint32()
	m.C2 = buf.DecodeUint32()
	m.C3 = buf.DecodeUint32()
	m.C4 = buf.DecodeUint32()
	m.TlvLength = buf.DecodeUint8()
	m.Tlv = make([]byte, 248)
	copy(m.Tlv, buf.DecodeBytes(len(m.Tlv)))
	return nil
}

// NshEntryDump defines message 'nsh_entry_dump'.
type NshEntryDump struct {
	EntryIndex uint32 `binapi:"u32,name=entry_index" json:"entry_index,omitempty"`
}

func (m *NshEntryDump) Reset()               { *m = NshEntryDump{} }
func (*NshEntryDump) GetMessageName() string { return "nsh_entry_dump" }
func (*NshEntryDump) GetCrcString() string   { return "cdaf8ccb" }
func (*NshEntryDump) GetMessageType() api.MessageType {
	return api.RequestMessage
}

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

// NshMapDetails defines message 'nsh_map_details'.
type NshMapDetails struct {
	MapIndex     uint32                         `binapi:"u32,name=map_index" json:"map_index,omitempty"`
	NspNsi       uint32                         `binapi:"u32,name=nsp_nsi" json:"nsp_nsi,omitempty"`
	MappedNspNsi uint32                         `binapi:"u32,name=mapped_nsp_nsi" json:"mapped_nsp_nsi,omitempty"`
	NshAction    uint32                         `binapi:"u32,name=nsh_action" json:"nsh_action,omitempty"`
	SwIfIndex    interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
	RxSwIfIndex  interface_types.InterfaceIndex `binapi:"interface_index,name=rx_sw_if_index" json:"rx_sw_if_index,omitempty"`
	NextNode     uint32                         `binapi:"u32,name=next_node" json:"next_node,omitempty"`
}

func (m *NshMapDetails) Reset()               { *m = NshMapDetails{} }
func (*NshMapDetails) GetMessageName() string { return "nsh_map_details" }
func (*NshMapDetails) GetCrcString() string   { return "b34ac8a1" }
func (*NshMapDetails) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

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

// NshMapDump defines message 'nsh_map_dump'.
type NshMapDump struct {
	MapIndex uint32 `binapi:"u32,name=map_index" json:"map_index,omitempty"`
}

func (m *NshMapDump) Reset()               { *m = NshMapDump{} }
func (*NshMapDump) GetMessageName() string { return "nsh_map_dump" }
func (*NshMapDump) GetCrcString() string   { return "8fc06b82" }
func (*NshMapDump) GetMessageType() api.MessageType {
	return api.RequestMessage
}

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

func init() { file_nsh_binapi_init() }
func file_nsh_binapi_init() {
	api.RegisterMessage((*NshAddDelEntry)(nil), "nsh_add_del_entry_7dea480b")
	api.RegisterMessage((*NshAddDelEntryReply)(nil), "nsh_add_del_entry_reply_6296a9eb")
	api.RegisterMessage((*NshAddDelMap)(nil), "nsh_add_del_map_898d857d")
	api.RegisterMessage((*NshAddDelMapReply)(nil), "nsh_add_del_map_reply_b2b127ef")
	api.RegisterMessage((*NshEntryDetails)(nil), "nsh_entry_details_046fb556")
	api.RegisterMessage((*NshEntryDump)(nil), "nsh_entry_dump_cdaf8ccb")
	api.RegisterMessage((*NshMapDetails)(nil), "nsh_map_details_b34ac8a1")
	api.RegisterMessage((*NshMapDump)(nil), "nsh_map_dump_8fc06b82")
}

// Messages returns list of all messages in this module.
func AllMessages() []api.Message {
	return []api.Message{
		(*NshAddDelEntry)(nil),
		(*NshAddDelEntryReply)(nil),
		(*NshAddDelMap)(nil),
		(*NshAddDelMapReply)(nil),
		(*NshEntryDetails)(nil),
		(*NshEntryDump)(nil),
		(*NshMapDetails)(nil),
		(*NshMapDump)(nil),
	}
}