ioam_vxlan_gpe

package
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 17, 2022 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Overview

Package ioam_vxlan_gpe contains generated bindings for API file ioam_vxlan_gpe.api.

Contents:

 5 aliases
 4 enums
 6 structs
 1 union
12 messages

Index

Constants

View Source
const (
	APIFile    = "ioam_vxlan_gpe"
	APIVersion = "1.0.0"
	VersionCrc = 0xf80eb923
)

Variables

View Source
var (
	AddressFamily_name = map[uint32]string{
		0: "ADDRESS_IP4",
		1: "ADDRESS_IP6",
	}
	AddressFamily_value = map[string]uint32{
		"ADDRESS_IP4": 0,
		"ADDRESS_IP6": 1,
	}
)
View Source
var (
	IPDscp_name = map[uint8]string{
		0:  "IP_API_DSCP_CS0",
		8:  "IP_API_DSCP_CS1",
		10: "IP_API_DSCP_AF11",
		12: "IP_API_DSCP_AF12",
		14: "IP_API_DSCP_AF13",
		16: "IP_API_DSCP_CS2",
		18: "IP_API_DSCP_AF21",
		20: "IP_API_DSCP_AF22",
		22: "IP_API_DSCP_AF23",
		24: "IP_API_DSCP_CS3",
		26: "IP_API_DSCP_AF31",
		28: "IP_API_DSCP_AF32",
		30: "IP_API_DSCP_AF33",
		32: "IP_API_DSCP_CS4",
		34: "IP_API_DSCP_AF41",
		36: "IP_API_DSCP_AF42",
		38: "IP_API_DSCP_AF43",
		40: "IP_API_DSCP_CS5",
		46: "IP_API_DSCP_EF",
		48: "IP_API_DSCP_CS6",
		50: "IP_API_DSCP_CS7",
	}
	IPDscp_value = map[string]uint8{
		"IP_API_DSCP_CS0":  0,
		"IP_API_DSCP_CS1":  8,
		"IP_API_DSCP_AF11": 10,
		"IP_API_DSCP_AF12": 12,
		"IP_API_DSCP_AF13": 14,
		"IP_API_DSCP_CS2":  16,
		"IP_API_DSCP_AF21": 18,
		"IP_API_DSCP_AF22": 20,
		"IP_API_DSCP_AF23": 22,
		"IP_API_DSCP_CS3":  24,
		"IP_API_DSCP_AF31": 26,
		"IP_API_DSCP_AF32": 28,
		"IP_API_DSCP_AF33": 30,
		"IP_API_DSCP_CS4":  32,
		"IP_API_DSCP_AF41": 34,
		"IP_API_DSCP_AF42": 36,
		"IP_API_DSCP_AF43": 38,
		"IP_API_DSCP_CS5":  40,
		"IP_API_DSCP_EF":   46,
		"IP_API_DSCP_CS6":  48,
		"IP_API_DSCP_CS7":  50,
	}
)
View Source
var (
	IPEcn_name = map[uint8]string{
		0: "IP_API_ECN_NONE",
		1: "IP_API_ECN_ECT0",
		2: "IP_API_ECN_ECT1",
		3: "IP_API_ECN_CE",
	}
	IPEcn_value = map[string]uint8{
		"IP_API_ECN_NONE": 0,
		"IP_API_ECN_ECT0": 1,
		"IP_API_ECN_ECT1": 2,
		"IP_API_ECN_CE":   3,
	}
)
View Source
var (
	IPProto_name = map[uint32]string{
		0:   "IP_API_PROTO_HOPOPT",
		1:   "IP_API_PROTO_ICMP",
		2:   "IP_API_PROTO_IGMP",
		6:   "IP_API_PROTO_TCP",
		17:  "IP_API_PROTO_UDP",
		47:  "IP_API_PROTO_GRE",
		50:  "IP_API_PROTO_AH",
		51:  "IP_API_PROTO_ESP",
		88:  "IP_API_PROTO_EIGRP",
		89:  "IP_API_PROTO_OSPF",
		132: "IP_API_PROTO_SCTP",
		255: "IP_API_PROTO_RESERVED",
	}
	IPProto_value = map[string]uint32{
		"IP_API_PROTO_HOPOPT":   0,
		"IP_API_PROTO_ICMP":     1,
		"IP_API_PROTO_IGMP":     2,
		"IP_API_PROTO_TCP":      6,
		"IP_API_PROTO_UDP":      17,
		"IP_API_PROTO_GRE":      47,
		"IP_API_PROTO_AH":       50,
		"IP_API_PROTO_ESP":      51,
		"IP_API_PROTO_EIGRP":    88,
		"IP_API_PROTO_OSPF":     89,
		"IP_API_PROTO_SCTP":     132,
		"IP_API_PROTO_RESERVED": 255,
	}
)

Functions

func AllMessages

func AllMessages() []api.Message

Messages returns list of all messages in this module.

Types

type Address

type Address struct {
	Af AddressFamily `binapi:"address_family,name=af" json:"af,omitempty"`
	Un AddressUnion  `binapi:"address_union,name=un" json:"un,omitempty"`
}

Address defines type 'address'.

func ParseAddress

func ParseAddress(s string) (Address, error)

func (*Address) MarshalText

func (x *Address) MarshalText() ([]byte, error)

func (Address) String

func (x Address) String() string

func (Address) ToIP

func (x Address) ToIP() net.IP

func (*Address) UnmarshalText

func (x *Address) UnmarshalText(text []byte) error

type AddressFamily

type AddressFamily uint32

AddressFamily defines enum 'address_family'.

const (
	ADDRESS_IP4 AddressFamily = 0
	ADDRESS_IP6 AddressFamily = 1
)

func (AddressFamily) String

func (x AddressFamily) String() string

type AddressUnion

type AddressUnion struct {
	// IP4 *IP4Address
	// IP6 *IP6Address
	XXX_UnionData [16]byte
}

AddressUnion defines union 'address_union'.

func AddressUnionIP4

func AddressUnionIP4(a IP4Address) (u AddressUnion)

func AddressUnionIP6

func AddressUnionIP6(a IP6Address) (u AddressUnion)

func (*AddressUnion) GetIP4

func (u *AddressUnion) GetIP4() (a IP4Address)

func (*AddressUnion) GetIP6

func (u *AddressUnion) GetIP6() (a IP6Address)

func (*AddressUnion) SetIP4

func (u *AddressUnion) SetIP4(a IP4Address)

func (*AddressUnion) SetIP6

func (u *AddressUnion) SetIP6(a IP6Address)

type AddressWithPrefix

type AddressWithPrefix Prefix

AddressWithPrefix defines alias 'address_with_prefix'.

func ParseAddressWithPrefix

func ParseAddressWithPrefix(s string) (AddressWithPrefix, error)

func (*AddressWithPrefix) MarshalText

func (x *AddressWithPrefix) MarshalText() ([]byte, error)

func (AddressWithPrefix) String

func (x AddressWithPrefix) String() string

func (*AddressWithPrefix) UnmarshalText

func (x *AddressWithPrefix) UnmarshalText(text []byte) error

type IP4Address

type IP4Address [4]uint8

IP4Address defines alias 'ip4_address'.

func ParseIP4Address

func ParseIP4Address(s string) (IP4Address, error)

func (*IP4Address) MarshalText

func (x *IP4Address) MarshalText() ([]byte, error)

func (IP4Address) String

func (x IP4Address) String() string

func (IP4Address) ToIP

func (x IP4Address) ToIP() net.IP

func (*IP4Address) UnmarshalText

func (x *IP4Address) UnmarshalText(text []byte) error

type IP4AddressWithPrefix

type IP4AddressWithPrefix IP4Prefix

IP4AddressWithPrefix defines alias 'ip4_address_with_prefix'.

type IP4Prefix

type IP4Prefix struct {
	Address IP4Address `binapi:"ip4_address,name=address" json:"address,omitempty"`
	Len     uint8      `binapi:"u8,name=len" json:"len,omitempty"`
}

IP4Prefix defines type 'ip4_prefix'.

func ParseIP4Prefix

func ParseIP4Prefix(s string) (prefix IP4Prefix, err error)

func (*IP4Prefix) MarshalText

func (x *IP4Prefix) MarshalText() ([]byte, error)

func (IP4Prefix) String

func (x IP4Prefix) String() string

func (IP4Prefix) ToIPNet

func (x IP4Prefix) ToIPNet() *net.IPNet

func (*IP4Prefix) UnmarshalText

func (x *IP4Prefix) UnmarshalText(text []byte) error

type IP6Address

type IP6Address [16]uint8

IP6Address defines alias 'ip6_address'.

func ParseIP6Address

func ParseIP6Address(s string) (IP6Address, error)

func (*IP6Address) MarshalText

func (x *IP6Address) MarshalText() ([]byte, error)

func (IP6Address) String

func (x IP6Address) String() string

func (IP6Address) ToIP

func (x IP6Address) ToIP() net.IP

func (*IP6Address) UnmarshalText

func (x *IP6Address) UnmarshalText(text []byte) error

type IP6AddressWithPrefix

type IP6AddressWithPrefix IP6Prefix

IP6AddressWithPrefix defines alias 'ip6_address_with_prefix'.

type IP6Prefix

type IP6Prefix struct {
	Address IP6Address `binapi:"ip6_address,name=address" json:"address,omitempty"`
	Len     uint8      `binapi:"u8,name=len" json:"len,omitempty"`
}

IP6Prefix defines type 'ip6_prefix'.

func ParseIP6Prefix

func ParseIP6Prefix(s string) (prefix IP6Prefix, err error)

func (*IP6Prefix) MarshalText

func (x *IP6Prefix) MarshalText() ([]byte, error)

func (IP6Prefix) String

func (x IP6Prefix) String() string

func (IP6Prefix) ToIPNet

func (x IP6Prefix) ToIPNet() *net.IPNet

func (*IP6Prefix) UnmarshalText

func (x *IP6Prefix) UnmarshalText(text []byte) error

type IPDscp

type IPDscp uint8

IPDscp defines enum 'ip_dscp'.

const (
	IP_API_DSCP_CS0  IPDscp = 0
	IP_API_DSCP_CS1  IPDscp = 8
	IP_API_DSCP_AF11 IPDscp = 10
	IP_API_DSCP_AF12 IPDscp = 12
	IP_API_DSCP_AF13 IPDscp = 14
	IP_API_DSCP_CS2  IPDscp = 16
	IP_API_DSCP_AF21 IPDscp = 18
	IP_API_DSCP_AF22 IPDscp = 20
	IP_API_DSCP_AF23 IPDscp = 22
	IP_API_DSCP_CS3  IPDscp = 24
	IP_API_DSCP_AF31 IPDscp = 26
	IP_API_DSCP_AF32 IPDscp = 28
	IP_API_DSCP_AF33 IPDscp = 30
	IP_API_DSCP_CS4  IPDscp = 32
	IP_API_DSCP_AF41 IPDscp = 34
	IP_API_DSCP_AF42 IPDscp = 36
	IP_API_DSCP_AF43 IPDscp = 38
	IP_API_DSCP_CS5  IPDscp = 40
	IP_API_DSCP_EF   IPDscp = 46
	IP_API_DSCP_CS6  IPDscp = 48
	IP_API_DSCP_CS7  IPDscp = 50
)

func (IPDscp) String

func (x IPDscp) String() string

type IPEcn

type IPEcn uint8

IPEcn defines enum 'ip_ecn'.

const (
	IP_API_ECN_NONE IPEcn = 0
	IP_API_ECN_ECT0 IPEcn = 1
	IP_API_ECN_ECT1 IPEcn = 2
	IP_API_ECN_CE   IPEcn = 3
)

func (IPEcn) String

func (x IPEcn) String() string

type IPProto

type IPProto uint32

IPProto defines enum 'ip_proto'.

const (
	IP_API_PROTO_HOPOPT   IPProto = 0
	IP_API_PROTO_ICMP     IPProto = 1
	IP_API_PROTO_IGMP     IPProto = 2
	IP_API_PROTO_TCP      IPProto = 6
	IP_API_PROTO_UDP      IPProto = 17
	IP_API_PROTO_GRE      IPProto = 47
	IP_API_PROTO_AH       IPProto = 50
	IP_API_PROTO_ESP      IPProto = 51
	IP_API_PROTO_EIGRP    IPProto = 88
	IP_API_PROTO_OSPF     IPProto = 89
	IP_API_PROTO_SCTP     IPProto = 132
	IP_API_PROTO_RESERVED IPProto = 255
)

func (IPProto) String

func (x IPProto) String() string

type Mprefix

type Mprefix struct {
	Af               AddressFamily `binapi:"address_family,name=af" json:"af,omitempty"`
	GrpAddressLength uint16        `binapi:"u16,name=grp_address_length" json:"grp_address_length,omitempty"`
	GrpAddress       AddressUnion  `binapi:"address_union,name=grp_address" json:"grp_address,omitempty"`
	SrcAddress       AddressUnion  `binapi:"address_union,name=src_address" json:"src_address,omitempty"`
}

Mprefix defines type 'mprefix'.

type Prefix

type Prefix struct {
	Address Address `binapi:"address,name=address" json:"address,omitempty"`
	Len     uint8   `binapi:"u8,name=len" json:"len,omitempty"`
}

Prefix defines type 'prefix'.

func ParsePrefix

func ParsePrefix(ip string) (prefix Prefix, err error)

func (*Prefix) MarshalText

func (x *Prefix) MarshalText() ([]byte, error)

func (Prefix) String

func (x Prefix) String() string

func (Prefix) ToIPNet

func (x Prefix) ToIPNet() *net.IPNet

func (*Prefix) UnmarshalText

func (x *Prefix) UnmarshalText(text []byte) error

type PrefixMatcher

type PrefixMatcher struct {
	Le uint8 `binapi:"u8,name=le" json:"le,omitempty"`
	Ge uint8 `binapi:"u8,name=ge" json:"ge,omitempty"`
}

PrefixMatcher defines type 'prefix_matcher'.

type RPCService

type RPCService interface {
	VxlanGpeIoamDisable(ctx context.Context, in *VxlanGpeIoamDisable) (*VxlanGpeIoamDisableReply, error)
	VxlanGpeIoamEnable(ctx context.Context, in *VxlanGpeIoamEnable) (*VxlanGpeIoamEnableReply, error)
	VxlanGpeIoamTransitDisable(ctx context.Context, in *VxlanGpeIoamTransitDisable) (*VxlanGpeIoamTransitDisableReply, error)
	VxlanGpeIoamTransitEnable(ctx context.Context, in *VxlanGpeIoamTransitEnable) (*VxlanGpeIoamTransitEnableReply, error)
	VxlanGpeIoamVniDisable(ctx context.Context, in *VxlanGpeIoamVniDisable) (*VxlanGpeIoamVniDisableReply, error)
	VxlanGpeIoamVniEnable(ctx context.Context, in *VxlanGpeIoamVniEnable) (*VxlanGpeIoamVniEnableReply, error)
}

RPCService defines RPC service ioam_vxlan_gpe.

func NewServiceClient

func NewServiceClient(conn api.Connection) RPCService

type VxlanGpeIoamDisable

type VxlanGpeIoamDisable struct {
	ID uint16 `binapi:"u16,name=id" json:"id,omitempty"`
}

VxlanGpeIoamDisable defines message 'vxlan_gpe_ioam_disable'.

func (*VxlanGpeIoamDisable) GetCrcString

func (*VxlanGpeIoamDisable) GetCrcString() string

func (*VxlanGpeIoamDisable) GetMessageName

func (*VxlanGpeIoamDisable) GetMessageName() string

func (*VxlanGpeIoamDisable) GetMessageType

func (*VxlanGpeIoamDisable) GetMessageType() api.MessageType

func (*VxlanGpeIoamDisable) Marshal

func (m *VxlanGpeIoamDisable) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamDisable) Reset

func (m *VxlanGpeIoamDisable) Reset()

func (*VxlanGpeIoamDisable) Size

func (m *VxlanGpeIoamDisable) Size() (size int)

func (*VxlanGpeIoamDisable) Unmarshal

func (m *VxlanGpeIoamDisable) Unmarshal(b []byte) error

type VxlanGpeIoamDisableReply

type VxlanGpeIoamDisableReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

VxlanGpeIoamDisableReply defines message 'vxlan_gpe_ioam_disable_reply'.

func (*VxlanGpeIoamDisableReply) GetCrcString

func (*VxlanGpeIoamDisableReply) GetCrcString() string

func (*VxlanGpeIoamDisableReply) GetMessageName

func (*VxlanGpeIoamDisableReply) GetMessageName() string

func (*VxlanGpeIoamDisableReply) GetMessageType

func (*VxlanGpeIoamDisableReply) GetMessageType() api.MessageType

func (*VxlanGpeIoamDisableReply) Marshal

func (m *VxlanGpeIoamDisableReply) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamDisableReply) Reset

func (m *VxlanGpeIoamDisableReply) Reset()

func (*VxlanGpeIoamDisableReply) Size

func (m *VxlanGpeIoamDisableReply) Size() (size int)

func (*VxlanGpeIoamDisableReply) Unmarshal

func (m *VxlanGpeIoamDisableReply) Unmarshal(b []byte) error

type VxlanGpeIoamEnable

type VxlanGpeIoamEnable struct {
	ID          uint16 `binapi:"u16,name=id" json:"id,omitempty"`
	TracePpc    uint8  `binapi:"u8,name=trace_ppc" json:"trace_ppc,omitempty"`
	PowEnable   bool   `binapi:"bool,name=pow_enable" json:"pow_enable,omitempty"`
	TraceEnable bool   `binapi:"bool,name=trace_enable" json:"trace_enable,omitempty"`
}

VxlanGpeIoamEnable defines message 'vxlan_gpe_ioam_enable'.

func (*VxlanGpeIoamEnable) GetCrcString

func (*VxlanGpeIoamEnable) GetCrcString() string

func (*VxlanGpeIoamEnable) GetMessageName

func (*VxlanGpeIoamEnable) GetMessageName() string

func (*VxlanGpeIoamEnable) GetMessageType

func (*VxlanGpeIoamEnable) GetMessageType() api.MessageType

func (*VxlanGpeIoamEnable) Marshal

func (m *VxlanGpeIoamEnable) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamEnable) Reset

func (m *VxlanGpeIoamEnable) Reset()

func (*VxlanGpeIoamEnable) Size

func (m *VxlanGpeIoamEnable) Size() (size int)

func (*VxlanGpeIoamEnable) Unmarshal

func (m *VxlanGpeIoamEnable) Unmarshal(b []byte) error

type VxlanGpeIoamEnableReply

type VxlanGpeIoamEnableReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

VxlanGpeIoamEnableReply defines message 'vxlan_gpe_ioam_enable_reply'.

func (*VxlanGpeIoamEnableReply) GetCrcString

func (*VxlanGpeIoamEnableReply) GetCrcString() string

func (*VxlanGpeIoamEnableReply) GetMessageName

func (*VxlanGpeIoamEnableReply) GetMessageName() string

func (*VxlanGpeIoamEnableReply) GetMessageType

func (*VxlanGpeIoamEnableReply) GetMessageType() api.MessageType

func (*VxlanGpeIoamEnableReply) Marshal

func (m *VxlanGpeIoamEnableReply) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamEnableReply) Reset

func (m *VxlanGpeIoamEnableReply) Reset()

func (*VxlanGpeIoamEnableReply) Size

func (m *VxlanGpeIoamEnableReply) Size() (size int)

func (*VxlanGpeIoamEnableReply) Unmarshal

func (m *VxlanGpeIoamEnableReply) Unmarshal(b []byte) error

type VxlanGpeIoamTransitDisable

type VxlanGpeIoamTransitDisable struct {
	OuterFibIndex uint32  `binapi:"u32,name=outer_fib_index" json:"outer_fib_index,omitempty"`
	DstAddr       Address `binapi:"address,name=dst_addr" json:"dst_addr,omitempty"`
}

VxlanGpeIoamTransitDisable defines message 'vxlan_gpe_ioam_transit_disable'.

func (*VxlanGpeIoamTransitDisable) GetCrcString

func (*VxlanGpeIoamTransitDisable) GetCrcString() string

func (*VxlanGpeIoamTransitDisable) GetMessageName

func (*VxlanGpeIoamTransitDisable) GetMessageName() string

func (*VxlanGpeIoamTransitDisable) GetMessageType

func (*VxlanGpeIoamTransitDisable) GetMessageType() api.MessageType

func (*VxlanGpeIoamTransitDisable) Marshal

func (m *VxlanGpeIoamTransitDisable) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamTransitDisable) Reset

func (m *VxlanGpeIoamTransitDisable) Reset()

func (*VxlanGpeIoamTransitDisable) Size

func (m *VxlanGpeIoamTransitDisable) Size() (size int)

func (*VxlanGpeIoamTransitDisable) Unmarshal

func (m *VxlanGpeIoamTransitDisable) Unmarshal(b []byte) error

type VxlanGpeIoamTransitDisableReply

type VxlanGpeIoamTransitDisableReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

VxlanGpeIoamTransitDisableReply defines message 'vxlan_gpe_ioam_transit_disable_reply'.

func (*VxlanGpeIoamTransitDisableReply) GetCrcString

func (*VxlanGpeIoamTransitDisableReply) GetCrcString() string

func (*VxlanGpeIoamTransitDisableReply) GetMessageName

func (*VxlanGpeIoamTransitDisableReply) GetMessageName() string

func (*VxlanGpeIoamTransitDisableReply) GetMessageType

func (*VxlanGpeIoamTransitDisableReply) Marshal

func (m *VxlanGpeIoamTransitDisableReply) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamTransitDisableReply) Reset

func (*VxlanGpeIoamTransitDisableReply) Size

func (m *VxlanGpeIoamTransitDisableReply) Size() (size int)

func (*VxlanGpeIoamTransitDisableReply) Unmarshal

func (m *VxlanGpeIoamTransitDisableReply) Unmarshal(b []byte) error

type VxlanGpeIoamTransitEnable

type VxlanGpeIoamTransitEnable struct {
	OuterFibIndex uint32  `binapi:"u32,name=outer_fib_index" json:"outer_fib_index,omitempty"`
	DstAddr       Address `binapi:"address,name=dst_addr" json:"dst_addr,omitempty"`
}

VxlanGpeIoamTransitEnable defines message 'vxlan_gpe_ioam_transit_enable'.

func (*VxlanGpeIoamTransitEnable) GetCrcString

func (*VxlanGpeIoamTransitEnable) GetCrcString() string

func (*VxlanGpeIoamTransitEnable) GetMessageName

func (*VxlanGpeIoamTransitEnable) GetMessageName() string

func (*VxlanGpeIoamTransitEnable) GetMessageType

func (*VxlanGpeIoamTransitEnable) GetMessageType() api.MessageType

func (*VxlanGpeIoamTransitEnable) Marshal

func (m *VxlanGpeIoamTransitEnable) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamTransitEnable) Reset

func (m *VxlanGpeIoamTransitEnable) Reset()

func (*VxlanGpeIoamTransitEnable) Size

func (m *VxlanGpeIoamTransitEnable) Size() (size int)

func (*VxlanGpeIoamTransitEnable) Unmarshal

func (m *VxlanGpeIoamTransitEnable) Unmarshal(b []byte) error

type VxlanGpeIoamTransitEnableReply

type VxlanGpeIoamTransitEnableReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

VxlanGpeIoamTransitEnableReply defines message 'vxlan_gpe_ioam_transit_enable_reply'.

func (*VxlanGpeIoamTransitEnableReply) GetCrcString

func (*VxlanGpeIoamTransitEnableReply) GetCrcString() string

func (*VxlanGpeIoamTransitEnableReply) GetMessageName

func (*VxlanGpeIoamTransitEnableReply) GetMessageName() string

func (*VxlanGpeIoamTransitEnableReply) GetMessageType

func (*VxlanGpeIoamTransitEnableReply) Marshal

func (m *VxlanGpeIoamTransitEnableReply) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamTransitEnableReply) Reset

func (m *VxlanGpeIoamTransitEnableReply) Reset()

func (*VxlanGpeIoamTransitEnableReply) Size

func (m *VxlanGpeIoamTransitEnableReply) Size() (size int)

func (*VxlanGpeIoamTransitEnableReply) Unmarshal

func (m *VxlanGpeIoamTransitEnableReply) Unmarshal(b []byte) error

type VxlanGpeIoamVniDisable

type VxlanGpeIoamVniDisable struct {
	Vni    uint32  `binapi:"u32,name=vni" json:"vni,omitempty"`
	Local  Address `binapi:"address,name=local" json:"local,omitempty"`
	Remote Address `binapi:"address,name=remote" json:"remote,omitempty"`
}

VxlanGpeIoamVniDisable defines message 'vxlan_gpe_ioam_vni_disable'.

func (*VxlanGpeIoamVniDisable) GetCrcString

func (*VxlanGpeIoamVniDisable) GetCrcString() string

func (*VxlanGpeIoamVniDisable) GetMessageName

func (*VxlanGpeIoamVniDisable) GetMessageName() string

func (*VxlanGpeIoamVniDisable) GetMessageType

func (*VxlanGpeIoamVniDisable) GetMessageType() api.MessageType

func (*VxlanGpeIoamVniDisable) Marshal

func (m *VxlanGpeIoamVniDisable) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamVniDisable) Reset

func (m *VxlanGpeIoamVniDisable) Reset()

func (*VxlanGpeIoamVniDisable) Size

func (m *VxlanGpeIoamVniDisable) Size() (size int)

func (*VxlanGpeIoamVniDisable) Unmarshal

func (m *VxlanGpeIoamVniDisable) Unmarshal(b []byte) error

type VxlanGpeIoamVniDisableReply

type VxlanGpeIoamVniDisableReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

VxlanGpeIoamVniDisableReply defines message 'vxlan_gpe_ioam_vni_disable_reply'.

func (*VxlanGpeIoamVniDisableReply) GetCrcString

func (*VxlanGpeIoamVniDisableReply) GetCrcString() string

func (*VxlanGpeIoamVniDisableReply) GetMessageName

func (*VxlanGpeIoamVniDisableReply) GetMessageName() string

func (*VxlanGpeIoamVniDisableReply) GetMessageType

func (*VxlanGpeIoamVniDisableReply) GetMessageType() api.MessageType

func (*VxlanGpeIoamVniDisableReply) Marshal

func (m *VxlanGpeIoamVniDisableReply) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamVniDisableReply) Reset

func (m *VxlanGpeIoamVniDisableReply) Reset()

func (*VxlanGpeIoamVniDisableReply) Size

func (m *VxlanGpeIoamVniDisableReply) Size() (size int)

func (*VxlanGpeIoamVniDisableReply) Unmarshal

func (m *VxlanGpeIoamVniDisableReply) Unmarshal(b []byte) error

type VxlanGpeIoamVniEnable

type VxlanGpeIoamVniEnable struct {
	Vni    uint32  `binapi:"u32,name=vni" json:"vni,omitempty"`
	Local  Address `binapi:"address,name=local" json:"local,omitempty"`
	Remote Address `binapi:"address,name=remote" json:"remote,omitempty"`
}

VxlanGpeIoamVniEnable defines message 'vxlan_gpe_ioam_vni_enable'.

func (*VxlanGpeIoamVniEnable) GetCrcString

func (*VxlanGpeIoamVniEnable) GetCrcString() string

func (*VxlanGpeIoamVniEnable) GetMessageName

func (*VxlanGpeIoamVniEnable) GetMessageName() string

func (*VxlanGpeIoamVniEnable) GetMessageType

func (*VxlanGpeIoamVniEnable) GetMessageType() api.MessageType

func (*VxlanGpeIoamVniEnable) Marshal

func (m *VxlanGpeIoamVniEnable) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamVniEnable) Reset

func (m *VxlanGpeIoamVniEnable) Reset()

func (*VxlanGpeIoamVniEnable) Size

func (m *VxlanGpeIoamVniEnable) Size() (size int)

func (*VxlanGpeIoamVniEnable) Unmarshal

func (m *VxlanGpeIoamVniEnable) Unmarshal(b []byte) error

type VxlanGpeIoamVniEnableReply

type VxlanGpeIoamVniEnableReply struct {
	Retval int32 `binapi:"i32,name=retval" json:"retval,omitempty"`
}

VxlanGpeIoamVniEnableReply defines message 'vxlan_gpe_ioam_vni_enable_reply'.

func (*VxlanGpeIoamVniEnableReply) GetCrcString

func (*VxlanGpeIoamVniEnableReply) GetCrcString() string

func (*VxlanGpeIoamVniEnableReply) GetMessageName

func (*VxlanGpeIoamVniEnableReply) GetMessageName() string

func (*VxlanGpeIoamVniEnableReply) GetMessageType

func (*VxlanGpeIoamVniEnableReply) GetMessageType() api.MessageType

func (*VxlanGpeIoamVniEnableReply) Marshal

func (m *VxlanGpeIoamVniEnableReply) Marshal(b []byte) ([]byte, error)

func (*VxlanGpeIoamVniEnableReply) Reset

func (m *VxlanGpeIoamVniEnableReply) Reset()

func (*VxlanGpeIoamVniEnableReply) Size

func (m *VxlanGpeIoamVniEnableReply) Size() (size int)

func (*VxlanGpeIoamVniEnableReply) Unmarshal

func (m *VxlanGpeIoamVniEnableReply) Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL