summaryrefslogtreecommitdiffstats
path: root/src/vnet/dhcp/dhcp_api.c
AgeCommit message (Expand)AuthorFilesLines
2017-03-07DHCP Multiple Servers (VPP-602, VPP-605)Neale Ranns1-19/+47
2017-03-02Clean up binary api message handler registration issuesDave Barach1-8/+0
2017-02-16Consolidate DHCP v4 and V6 implementation. No functional change intendedNeale Ranns1-51/+44
2017-02-21dhcp: multiple additionsNeale Ranns1-46/+66
2017-01-26API refactoring : dhcpPavel Kotucek1-0/+253
4'>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 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
// 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/abf.api.json

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

import (
	api "git.fd.io/govpp.git/api"
	fib_types "git.fd.io/govpp.git/binapi/fib_types"
	interface_types "git.fd.io/govpp.git/binapi/interface_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    = "abf"
	APIVersion = "1.0.0"
	VersionCrc = 0x460b09b9
)

// AbfItfAttach defines type 'abf_itf_attach'.
type AbfItfAttach struct {
	PolicyID  uint32                         `binapi:"u32,name=policy_id" json:"policy_id,omitempty"`
	SwIfIndex interface_types.InterfaceIndex `binapi:"interface_index,name=sw_if_index" json:"sw_if_index,omitempty"`
	Priority  uint32                         `binapi:"u32,name=priority" json:"priority,omitempty"`
	IsIPv6    bool                           `binapi:"bool,name=is_ipv6" json:"is_ipv6,omitempty"`
}

// AbfPolicy defines type 'abf_policy'.
type AbfPolicy struct {
	PolicyID uint32              `binapi:"u32,name=policy_id" json:"policy_id,omitempty"`
	ACLIndex uint32              `binapi:"u32,name=acl_index" json:"acl_index,omitempty"`
	NPaths   uint8               `binapi:"u8,name=n_paths" json:"-"`
	Paths    []fib_types.FibPath `binapi:"fib_path[n_paths],name=paths" json:"paths,omitempty"`
}

// AbfItfAttachAddDel defines message 'abf_itf_attach_add_del'.
type AbfItfAttachAddDel struct {
	IsAdd  bool         `binapi:"bool,name=is_add" json:"is_add,omitempty"`
	Attach AbfItfAttach `binapi:"abf_itf_attach,name=attach" json:"attach,omitempty"`
}

func (m *AbfItfAttachAddDel) Reset()               { *m = AbfItfAttachAddDel{} }
func (*AbfItfAttachAddDel) GetMessageName() string { return "abf_itf_attach_add_del" }
func (*AbfItfAttachAddDel) GetCrcString() string   { return "25c8621b" }
func (*AbfItfAttachAddDel) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *AbfItfAttachAddDel) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 1 // m.IsAdd
	size += 4 // m.Attach.PolicyID
	size += 4 // m.Attach.SwIfIndex
	size += 4 // m.Attach.Priority
	size += 1 // m.Attach.IsIPv6
	return size
}
func (m *AbfItfAttachAddDel) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeBool(m.IsAdd)
	buf.EncodeUint32(m.Attach.PolicyID)
	buf.EncodeUint32(uint32(m.Attach.SwIfIndex))
	buf.EncodeUint32(m.Attach.Priority)
	buf.EncodeBool(m.Attach.IsIPv6)
	return buf.Bytes(), nil
}
func (m *AbfItfAttachAddDel) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.IsAdd = buf.DecodeBool()
	m.Attach.PolicyID = buf.DecodeUint32()
	m.Attach.SwIfIndex = interface_types.InterfaceIndex(buf.DecodeUint32())
	m.Attach.Priority = buf.DecodeUint32()
	m.Attach.IsIPv6 = buf.DecodeBool()
	return nil
}

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

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

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

// AbfItfAttachDetails defines message 'abf_itf_attach_details'.
type AbfItfAttachDetails struct {
	Attach AbfItfAttach `binapi:"abf_itf_attach,name=attach" json:"attach,omitempty"`
}

func (m *AbfItfAttachDetails) Reset()               { *m = AbfItfAttachDetails{} }
func (*AbfItfAttachDetails) GetMessageName() string { return "abf_itf_attach_details" }
func (*AbfItfAttachDetails) GetCrcString() string   { return "7819523e" }
func (*AbfItfAttachDetails) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

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

// AbfItfAttachDump defines message 'abf_itf_attach_dump'.
type AbfItfAttachDump struct{}

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

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

// AbfPluginGetVersion defines message 'abf_plugin_get_version'.
type AbfPluginGetVersion struct{}

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

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

// AbfPluginGetVersionReply defines message 'abf_plugin_get_version_reply'.
type AbfPluginGetVersionReply struct {
	Major uint32 `binapi:"u32,name=major" json:"major,omitempty"`
	Minor uint32 `binapi:"u32,name=minor" json:"minor,omitempty"`
}

func (m *AbfPluginGetVersionReply) Reset()               { *m = AbfPluginGetVersionReply{} }
func (*AbfPluginGetVersionReply) GetMessageName() string { return "abf_plugin_get_version_reply" }
func (*AbfPluginGetVersionReply) GetCrcString() string   { return "9b32cf86" }
func (*AbfPluginGetVersionReply) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

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

// AbfPolicyAddDel defines message 'abf_policy_add_del'.
type AbfPolicyAddDel struct {
	IsAdd  bool      `binapi:"bool,name=is_add" json:"is_add,omitempty"`
	Policy AbfPolicy `binapi:"abf_policy,name=policy" json:"policy,omitempty"`
}

func (m *AbfPolicyAddDel) Reset()               { *m = AbfPolicyAddDel{} }
func (*AbfPolicyAddDel) GetMessageName() string { return "abf_policy_add_del" }
func (*AbfPolicyAddDel) GetCrcString() string   { return "ee66f93e" }
func (*AbfPolicyAddDel) GetMessageType() api.MessageType {
	return api.RequestMessage
}

func (m *AbfPolicyAddDel) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 1 // m.IsAdd
	size += 4 // m.Policy.PolicyID
	size += 4 // m.Policy.ACLIndex
	size += 1 // m.Policy.NPaths
	for j2 := 0; j2 < len(m.Policy.Paths); j2++ {
		var s2 fib_types.FibPath
		_ = s2
		if j2 < len(m.Policy.Paths) {
			s2 = m.Policy.Paths[j2]
		}
		size += 4      // s2.SwIfIndex
		size += 4      // s2.TableID
		size += 4      // s2.RpfID
		size += 1      // s2.Weight
		size += 1      // s2.Preference
		size += 4      // s2.Type
		size += 4      // s2.Flags
		size += 4      // s2.Proto
		size += 1 * 16 // s2.Nh.Address
		size += 4      // s2.Nh.ViaLabel
		size += 4      // s2.Nh.ObjID
		size += 4      // s2.Nh.ClassifyTableIndex
		size += 1      // s2.NLabels
		for j3 := 0; j3 < 16; j3++ {
			size += 1 // s2.LabelStack[j3].IsUniform
			size += 4 // s2.LabelStack[j3].Label
			size += 1 // s2.LabelStack[j3].TTL
			size += 1 // s2.LabelStack[j3].Exp
		}
	}
	return size
}
func (m *AbfPolicyAddDel) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeBool(m.IsAdd)
	buf.EncodeUint32(m.Policy.PolicyID)
	buf.EncodeUint32(m.Policy.ACLIndex)
	buf.EncodeUint8(uint8(len(m.Policy.Paths)))
	for j1 := 0; j1 < len(m.Policy.Paths); j1++ {
		var v1 fib_types.FibPath // Paths
		if j1 < len(m.Policy.Paths) {
			v1 = m.Policy.Paths[j1]
		}
		buf.EncodeUint32(v1.SwIfIndex)
		buf.EncodeUint32(v1.TableID)
		buf.EncodeUint32(v1.RpfID)
		buf.EncodeUint8(v1.Weight)
		buf.EncodeUint8(v1.Preference)
		buf.EncodeUint32(uint32(v1.Type))
		buf.EncodeUint32(uint32(v1.Flags))
		buf.EncodeUint32(uint32(v1.Proto))
		buf.EncodeBytes(v1.Nh.Address.XXX_UnionData[:], 16)
		buf.EncodeUint32(v1.Nh.ViaLabel)
		buf.EncodeUint32(v1.Nh.ObjID)
		buf.EncodeUint32(v1.Nh.ClassifyTableIndex)
		buf.EncodeUint8(v1.NLabels)
		for j2 := 0; j2 < 16; j2++ {
			buf.EncodeUint8(v1.LabelStack[j2].IsUniform)
			buf.EncodeUint32(v1.LabelStack[j2].Label)
			buf.EncodeUint8(v1.LabelStack[j2].TTL)
			buf.EncodeUint8(v1.LabelStack[j2].Exp)
		}
	}
	return buf.Bytes(), nil
}
func (m *AbfPolicyAddDel) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.IsAdd = buf.DecodeBool()
	m.Policy.PolicyID = buf.DecodeUint32()
	m.Policy.ACLIndex = buf.DecodeUint32()
	m.Policy.NPaths = buf.DecodeUint8()
	m.Policy.Paths = make([]fib_types.FibPath, m.Policy.NPaths)
	for j1 := 0; j1 < len(m.Policy.Paths); j1++ {
		m.Policy.Paths[j1].SwIfIndex = buf.DecodeUint32()
		m.Policy.Paths[j1].TableID = buf.DecodeUint32()
		m.Policy.Paths[j1].RpfID = buf.DecodeUint32()
		m.Policy.Paths[j1].Weight = buf.DecodeUint8()
		m.Policy.Paths[j1].Preference = buf.DecodeUint8()
		m.Policy.Paths[j1].Type = fib_types.FibPathType(buf.DecodeUint32())
		m.Policy.Paths[j1].Flags = fib_types.FibPathFlags(buf.DecodeUint32())
		m.Policy.Paths[j1].Proto = fib_types.FibPathNhProto(buf.DecodeUint32())
		copy(m.Policy.Paths[j1].Nh.Address.XXX_UnionData[:], buf.DecodeBytes(16))
		m.Policy.Paths[j1].Nh.ViaLabel = buf.DecodeUint32()
		m.Policy.Paths[j1].Nh.ObjID = buf.DecodeUint32()
		m.Policy.Paths[j1].Nh.ClassifyTableIndex = buf.DecodeUint32()
		m.Policy.Paths[j1].NLabels = buf.DecodeUint8()
		for j2 := 0; j2 < 16; j2++ {
			m.Policy.Paths[j1].LabelStack[j2].IsUniform = buf.DecodeUint8()
			m.Policy.Paths[j1].LabelStack[j2].Label = buf.DecodeUint32()
			m.Policy.Paths[j1].LabelStack[j2].TTL = buf.DecodeUint8()
			m.Policy.Paths[j1].LabelStack[j2].Exp = buf.DecodeUint8()
		}
	}
	return nil
}

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

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

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

// AbfPolicyDetails defines message 'abf_policy_details'.
type AbfPolicyDetails struct {
	Policy AbfPolicy `binapi:"abf_policy,name=policy" json:"policy,omitempty"`
}

func (m *AbfPolicyDetails) Reset()               { *m = AbfPolicyDetails{} }
func (*AbfPolicyDetails) GetMessageName() string { return "abf_policy_details" }
func (*AbfPolicyDetails) GetCrcString() string   { return "6769e504" }
func (*AbfPolicyDetails) GetMessageType() api.MessageType {
	return api.ReplyMessage
}

func (m *AbfPolicyDetails) Size() (size int) {
	if m == nil {
		return 0
	}
	size += 4 // m.Policy.PolicyID
	size += 4 // m.Policy.ACLIndex
	size += 1 // m.Policy.NPaths
	for j2 := 0; j2 < len(m.Policy.Paths); j2++ {
		var s2 fib_types.FibPath
		_ = s2
		if j2 < len(m.Policy.Paths) {
			s2 = m.Policy.Paths[j2]
		}
		size += 4      // s2.SwIfIndex
		size += 4      // s2.TableID
		size += 4      // s2.RpfID
		size += 1      // s2.Weight
		size += 1      // s2.Preference
		size += 4      // s2.Type
		size += 4      // s2.Flags
		size += 4      // s2.Proto
		size += 1 * 16 // s2.Nh.Address
		size += 4      // s2.Nh.ViaLabel
		size += 4      // s2.Nh.ObjID
		size += 4      // s2.Nh.ClassifyTableIndex
		size += 1      // s2.NLabels
		for j3 := 0; j3 < 16; j3++ {
			size += 1 // s2.LabelStack[j3].IsUniform
			size += 4 // s2.LabelStack[j3].Label
			size += 1 // s2.LabelStack[j3].TTL
			size += 1 // s2.LabelStack[j3].Exp
		}
	}
	return size
}
func (m *AbfPolicyDetails) Marshal(b []byte) ([]byte, error) {
	if b == nil {
		b = make([]byte, m.Size())
	}
	buf := codec.NewBuffer(b)
	buf.EncodeUint32(m.Policy.PolicyID)
	buf.EncodeUint32(m.Policy.ACLIndex)
	buf.EncodeUint8(uint8(len(m.Policy.Paths)))
	for j1 := 0; j1 < len(m.Policy.Paths); j1++ {
		var v1 fib_types.FibPath // Paths
		if j1 < len(m.Policy.Paths) {
			v1 = m.Policy.Paths[j1]
		}
		buf.EncodeUint32(v1.SwIfIndex)
		buf.EncodeUint32(v1.TableID)
		buf.EncodeUint32(v1.RpfID)
		buf.EncodeUint8(v1.Weight)
		buf.EncodeUint8(v1.Preference)
		buf.EncodeUint32(uint32(v1.Type))
		buf.EncodeUint32(uint32(v1.Flags))
		buf.EncodeUint32(uint32(v1.Proto))
		buf.EncodeBytes(v1.Nh.Address.XXX_UnionData[:], 16)
		buf.EncodeUint32(v1.Nh.ViaLabel)
		buf.EncodeUint32(v1.Nh.ObjID)
		buf.EncodeUint32(v1.Nh.ClassifyTableIndex)
		buf.EncodeUint8(v1.NLabels)
		for j2 := 0; j2 < 16; j2++ {
			buf.EncodeUint8(v1.LabelStack[j2].IsUniform)
			buf.EncodeUint32(v1.LabelStack[j2].Label)
			buf.EncodeUint8(v1.LabelStack[j2].TTL)
			buf.EncodeUint8(v1.LabelStack[j2].Exp)
		}
	}
	return buf.Bytes(), nil
}
func (m *AbfPolicyDetails) Unmarshal(b []byte) error {
	buf := codec.NewBuffer(b)
	m.Policy.PolicyID = buf.DecodeUint32()
	m.Policy.ACLIndex = buf.DecodeUint32()
	m.Policy.NPaths = buf.DecodeUint8()
	m.Policy.Paths = make([]fib_types.FibPath, m.Policy.NPaths)
	for j1 := 0; j1 < len(m.Policy.Paths); j1++ {
		m.Policy.Paths[j1].SwIfIndex = buf.DecodeUint32()
		m.Policy.Paths[j1].TableID = buf.DecodeUint32()
		m.Policy.Paths[j1].RpfID = buf.DecodeUint32()
		m.Policy.Paths[j1].Weight = buf.DecodeUint8()
		m.Policy.Paths[j1].Preference = buf.DecodeUint8()
		m.Policy.Paths[j1].Type = fib_types.FibPathType(buf.DecodeUint32())
		m.Policy.Paths[j1].Flags = fib_types.FibPathFlags(buf.DecodeUint32())
		m.Policy.Paths[j1].Proto = fib_types.FibPathNhProto(buf.DecodeUint32())
		copy(m.Policy.Paths[j1].Nh.Address.XXX_UnionData[:], buf.DecodeBytes(16))
		m.Policy.Paths[j1].Nh.ViaLabel = buf.DecodeUint32()
		m.Policy.Paths[j1].Nh.ObjID = buf.DecodeUint32()
		m.Policy.Paths[j1].Nh.ClassifyTableIndex = buf.DecodeUint32()
		m.Policy.Paths[j1].NLabels = buf.DecodeUint8()
		for j2 := 0; j2 < 16; j2++ {
			m.Policy.Paths[j1].LabelStack[j2].IsUniform = buf.DecodeUint8()
			m.Policy.Paths[j1].LabelStack[j2].Label = buf.DecodeUint32()
			m.Policy.Paths[j1].LabelStack[j2].TTL = buf.DecodeUint8()
			m.Policy.Paths[j1].LabelStack[j2].Exp = buf.DecodeUint8()
		}
	}
	return nil
}

// AbfPolicyDump defines message 'abf_policy_dump'.
type AbfPolicyDump struct{}

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

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

func init() { file_abf_binapi_init() }
func file_abf_binapi_init() {
	api.RegisterMessage((*AbfItfAttachAddDel)(nil), "abf_itf_attach_add_del_25c8621b")
	api.RegisterMessage((*AbfItfAttachAddDelReply)(nil), "abf_itf_attach_add_del_reply_e8d4e804")
	api.RegisterMessage((*AbfItfAttachDetails)(nil), "abf_itf_attach_details_7819523e")
	api.RegisterMessage((*AbfItfAttachDump)(nil), "abf_itf_attach_dump_51077d14")
	api.RegisterMessage((*AbfPluginGetVersion)(nil), "abf_plugin_get_version_51077d14")
	api.RegisterMessage((*AbfPluginGetVersionReply)(nil), "abf_plugin_get_version_reply_9b32cf86")
	api.RegisterMessage((*AbfPolicyAddDel)(nil), "abf_policy_add_del_ee66f93e")
	api.RegisterMessage((*AbfPolicyAddDelReply)(nil), "abf_policy_add_del_reply_e8d4e804")
	api.RegisterMessage((*AbfPolicyDetails)(nil), "abf_policy_details_6769e504")
	api.RegisterMessage((*AbfPolicyDump)(nil), "abf_policy_dump_51077d14")
}

// Messages returns list of all messages in this module.
func AllMessages() []api.Message {
	return []api.Message{
		(*AbfItfAttachAddDel)(nil),
		(*AbfItfAttachAddDelReply)(nil),
		(*AbfItfAttachDetails)(nil),
		(*AbfItfAttachDump)(nil),
		(*AbfPluginGetVersion)(nil),
		(*AbfPluginGetVersionReply)(nil),
		(*AbfPolicyAddDel)(nil),
		(*AbfPolicyAddDelReply)(nil),
		(*AbfPolicyDetails)(nil),
		(*AbfPolicyDump)(nil),
	}
}