aboutsummaryrefslogtreecommitdiffstats
path: root/binapi/teib/teib.ba.go
blob: d37f391379972e880f51b946d5ae523eb6442368 (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
// 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/core/teib.api.json

// Package teib contains generated bindings for API file teib.api.
//
// Contents:
//   1 struct
//   4 messages
//
package teib

import (
	api "git.fd.io/govpp.git/api"
	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"
)

// 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    = "teib"
	APIVersion = "1.0.0"
	VersionCrc = 0xaac93c17
)

// TeibEntry defines type 'teib_entry'.
type TeibEntry struct {
	SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
	Peer      ip_types.Address               `binapi:"address,name=peer" json:"peer,omitempty"`
	Nh        ip_types.Address               `binapi:"address,name=nh" json:"nh,omitempty"`
	NhTableID uint32                         `binapi:"u32,name=nh_table_id" json:"nh_table_id,omitempty"`
}

// TeibDetails defines message 'teib_details'.
type TeibDetails struct {
	Entry TeibEntry `binapi:"teib_entry,name=entry" json:"entry,omitempty"`
}

func (m *TeibDetails) Reset()               { *m = TeibDetails{} }
func (*TeibDetails) GetMessageName() string { return "teib_details" }
func (*TeibDetails) GetCrcString() string   { return "e3b6a503" }
func (*TeibDetails) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

func (m *TeibDetails) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 4      // m.Entry.SwIfIndex
	size += 1      // m.Entry.Peer.Af
	size += 1 * 16 // m.Entry.Peer.Un
	size += 1      // m.Entry.Nh.Af
	size += 1 * 16 // m.Entry.Nh.Un
	size += 4      // m.Entry.NhTableID
	return size
}
func (m *TeibDetails) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeUint32(uint32(m.Entry.SwIfIndex))
	buf.EncodeUint8(uint8(m.Entry.Peer.Af))
	buf.EncodeBytes(m.Entry.Peer.Un.XXX_UnionData[:], 16)
	buf.EncodeUint8(uint8(m.Entry.Nh.Af))
	buf.EncodeBytes(m.Entry.Nh.Un.XXX_UnionData[:], 16)
	buf.EncodeUint32(m.Entry.NhTableID)
	return buf.Bytes(), nil
}
func (m *TeibDetails) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.Entry.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
	m.Entry.Peer.Af = ip_types.AddressFamily(buf.DecodeUint8())
	copy(m.Entry.Peer.Un.XXX_UnionData[:], buf.DecodeBytes(16))
	m.Entry.Nh.Af = ip_types.AddressFamily(buf.DecodeUint8())
	copy(m.Entry.Nh.Un.XXX_UnionData[:], buf.DecodeBytes(16))
	m.Entry.NhTableID = buf.DecodeUint32()
	return nil
}

// TeibDump defines message 'teib_dump'.
type TeibDump struct{}

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

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

// TeibEntryAddDel defines message 'teib_entry_add_del'.
type TeibEntryAddDel struct {
	IsAdd uint8     `binapi:"u8,name=is_add" json:"is_add,omitempty"`
	Entry TeibEntry `binapi:"teib_entry,name=entry" json:"entry,omitempty"`
}

func (m *TeibEntryAddDel) Reset()               { *m = TeibEntryAddDel{} }
func (*TeibEntryAddDel) GetMessageName() string { return "teib_entry_add_del" }
func (*TeibEntryAddDel) GetCrcString() string   { return "5aa0a538" }
func (*TeibEntryAddDel) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *TeibEntryAddDel) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 1      // m.IsAdd
	size += 4      // m.Entry.SwIfIndex
	size += 1      // m.Entry.Peer.Af
	size += 1 * 16 // m.Entry.Peer.Un
	size += 1      // m.Entry.Nh.Af
	size += 1 * 16 // m.Entry.Nh.Un
	size += 4      // m.Entry.NhTableID
	return size
}
func (m *TeibEntryAddDel) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeUint8(m.IsAdd)
	buf.EncodeUint32(uint32(m.Entry.SwIfIndex))
	buf.EncodeUint8(uint8(m.Entry.Peer.Af))
	buf.EncodeBytes(m.Entry.Peer.Un.XXX_UnionData[:], 16)
	buf.EncodeUint8(uint8(m.Entry.Nh.Af))
	buf.EncodeBytes(m.Entry.Nh.Un.XXX_UnionData[:], 16)
	buf.EncodeUint32(m.Entry.NhTableID)
	return buf.Bytes(), nil
}
func (m *TeibEntryAddDel) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.IsAdd = buf.DecodeUint8()
	m.Entry.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
	m.Entry.Peer.Af = ip_types.AddressFamily(buf.DecodeUint8())
	copy(m.Entry.Peer.Un.XXX_UnionData[:], buf.DecodeBytes(16))
	m.Entry.Nh.Af = ip_types.AddressFamily(buf.DecodeUint8())
	copy(m.Entry.Nh.Un.XXX_UnionData[:], buf.DecodeBytes(16))
	m.Entry.NhTableID = buf.DecodeUint32()
	return nil
}

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

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

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

func init() { file_teib_binapi_init() }
func file_teib_binapi_init() {
	api.RegisterMessage((*TeibDetails)(nil), "teib_details_e3b6a503")
	api.RegisterMessage((*TeibDump)(nil), "teib_dump_51077d14")
	api.RegisterMessage((*TeibEntryAddDel)(nil), "teib_entry_add_del_5aa0a538")
	api.RegisterMessage((*TeibEntryAddDelReply)(nil), "teib_entry_add_del_reply_e8d4e804")
}

// Messages returns list of all messages in this module.
func AllMessages() []api.Message {
	return []api.Message{
		(*TeibDetails)(nil),
		(*TeibDump)(nil),
		(*TeibEntryAddDel)(nil),
		(*TeibEntryAddDelReply)(nil),
	}
}