memif

package
v0.3.5 Latest Latest
Warning

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

Go to latest
Published: May 18, 2020 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Overview

Package memif is a generated VPP binary API for 'memif' module.

It consists of:

 8 enums
 2 aliases
10 messages
 5 services

Index

Constants

View Source
const (
	// ModuleName is the name of this module.
	ModuleName = "memif"
	// APIVersion is the API version of this module.
	APIVersion = "3.0.0"
	// VersionCrc is the CRC of this module.
	VersionCrc = 0x88dc56c9
)

Variables

View Source
var MemifMode_name = map[uint32]string{
	0: "MEMIF_MODE_API_ETHERNET",
	1: "MEMIF_MODE_API_IP",
	2: "MEMIF_MODE_API_PUNT_INJECT",
}
View Source
var MemifMode_value = map[string]uint32{
	"MEMIF_MODE_API_ETHERNET":    0,
	"MEMIF_MODE_API_IP":          1,
	"MEMIF_MODE_API_PUNT_INJECT": 2,
}
View Source
var MemifRole_name = map[uint32]string{
	0: "MEMIF_ROLE_API_MASTER",
	1: "MEMIF_ROLE_API_SLAVE",
}
View Source
var MemifRole_value = map[string]uint32{
	"MEMIF_ROLE_API_MASTER": 0,
	"MEMIF_ROLE_API_SLAVE":  1,
}

Functions

func AllMessages

func AllMessages() []api.Message

Messages returns list of all messages in this module.

Types

type IfStatusFlags added in v0.3.0

type IfStatusFlags = interface_types.IfStatusFlags

type IfType added in v0.3.0

type IfType = interface_types.IfType

type InterfaceIndex added in v0.3.0

type InterfaceIndex = interface_types.InterfaceIndex

type LinkDuplex added in v0.3.0

type LinkDuplex = interface_types.LinkDuplex

type MacAddress added in v0.3.0

type MacAddress = ethernet_types.MacAddress

type MemifCreate

type MemifCreate struct {
	Role       MemifRole
	Mode       MemifMode
	RxQueues   uint8
	TxQueues   uint8
	ID         uint32
	SocketID   uint32
	RingSize   uint32
	BufferSize uint16
	NoZeroCopy bool
	HwAddr     MacAddress
	Secret     string `struc:"[24]byte"`
}

MemifCreate represents VPP binary API message 'memif_create'.

func (*MemifCreate) GetCrcString

func (*MemifCreate) GetCrcString() string

func (*MemifCreate) GetMessageName

func (*MemifCreate) GetMessageName() string

func (*MemifCreate) GetMessageType

func (*MemifCreate) GetMessageType() api.MessageType

func (*MemifCreate) Reset added in v0.3.0

func (m *MemifCreate) Reset()

type MemifCreateReply

type MemifCreateReply struct {
	Retval    int32
	SwIfIndex InterfaceIndex
}

MemifCreateReply represents VPP binary API message 'memif_create_reply'.

func (*MemifCreateReply) GetCrcString

func (*MemifCreateReply) GetCrcString() string

func (*MemifCreateReply) GetMessageName

func (*MemifCreateReply) GetMessageName() string

func (*MemifCreateReply) GetMessageType

func (*MemifCreateReply) GetMessageType() api.MessageType

func (*MemifCreateReply) Reset added in v0.3.0

func (m *MemifCreateReply) Reset()

type MemifDelete

type MemifDelete struct {
	SwIfIndex InterfaceIndex
}

MemifDelete represents VPP binary API message 'memif_delete'.

func (*MemifDelete) GetCrcString

func (*MemifDelete) GetCrcString() string

func (*MemifDelete) GetMessageName

func (*MemifDelete) GetMessageName() string

func (*MemifDelete) GetMessageType

func (*MemifDelete) GetMessageType() api.MessageType

func (*MemifDelete) Reset added in v0.3.0

func (m *MemifDelete) Reset()

type MemifDeleteReply

type MemifDeleteReply struct {
	Retval int32
}

MemifDeleteReply represents VPP binary API message 'memif_delete_reply'.

func (*MemifDeleteReply) GetCrcString

func (*MemifDeleteReply) GetCrcString() string

func (*MemifDeleteReply) GetMessageName

func (*MemifDeleteReply) GetMessageName() string

func (*MemifDeleteReply) GetMessageType

func (*MemifDeleteReply) GetMessageType() api.MessageType

func (*MemifDeleteReply) Reset added in v0.3.0

func (m *MemifDeleteReply) Reset()

type MemifDetails

type MemifDetails struct {
	SwIfIndex  InterfaceIndex
	HwAddr     MacAddress
	ID         uint32
	Role       MemifRole
	Mode       MemifMode
	ZeroCopy   bool
	SocketID   uint32
	RingSize   uint32
	BufferSize uint16
	Flags      IfStatusFlags
	IfName     string `struc:"[64]byte"`
}

MemifDetails represents VPP binary API message 'memif_details'.

func (*MemifDetails) GetCrcString

func (*MemifDetails) GetCrcString() string

func (*MemifDetails) GetMessageName

func (*MemifDetails) GetMessageName() string

func (*MemifDetails) GetMessageType

func (*MemifDetails) GetMessageType() api.MessageType

func (*MemifDetails) Reset added in v0.3.0

func (m *MemifDetails) Reset()

type MemifDump

type MemifDump struct{}

MemifDump represents VPP binary API message 'memif_dump'.

func (*MemifDump) GetCrcString

func (*MemifDump) GetCrcString() string

func (*MemifDump) GetMessageName

func (*MemifDump) GetMessageName() string

func (*MemifDump) GetMessageType

func (*MemifDump) GetMessageType() api.MessageType

func (*MemifDump) Reset added in v0.3.0

func (m *MemifDump) Reset()

type MemifMode added in v0.3.0

type MemifMode uint32

MemifMode represents VPP binary API enum 'memif_mode'.

const (
	MEMIF_MODE_API_ETHERNET    MemifMode = 0
	MEMIF_MODE_API_IP          MemifMode = 1
	MEMIF_MODE_API_PUNT_INJECT MemifMode = 2
)

func (MemifMode) String added in v0.3.0

func (x MemifMode) String() string

type MemifRole added in v0.3.0

type MemifRole uint32

MemifRole represents VPP binary API enum 'memif_role'.

const (
	MEMIF_ROLE_API_MASTER MemifRole = 0
	MEMIF_ROLE_API_SLAVE  MemifRole = 1
)

func (MemifRole) String added in v0.3.0

func (x MemifRole) String() string

type MemifSocketFilenameAddDel

type MemifSocketFilenameAddDel struct {
	IsAdd          bool
	SocketID       uint32
	SocketFilename string `struc:"[108]byte"`
}

MemifSocketFilenameAddDel represents VPP binary API message 'memif_socket_filename_add_del'.

func (*MemifSocketFilenameAddDel) GetCrcString

func (*MemifSocketFilenameAddDel) GetCrcString() string

func (*MemifSocketFilenameAddDel) GetMessageName

func (*MemifSocketFilenameAddDel) GetMessageName() string

func (*MemifSocketFilenameAddDel) GetMessageType

func (*MemifSocketFilenameAddDel) GetMessageType() api.MessageType

func (*MemifSocketFilenameAddDel) Reset added in v0.3.0

func (m *MemifSocketFilenameAddDel) Reset()

type MemifSocketFilenameAddDelReply

type MemifSocketFilenameAddDelReply struct {
	Retval int32
}

MemifSocketFilenameAddDelReply represents VPP binary API message 'memif_socket_filename_add_del_reply'.

func (*MemifSocketFilenameAddDelReply) GetCrcString

func (*MemifSocketFilenameAddDelReply) GetCrcString() string

func (*MemifSocketFilenameAddDelReply) GetMessageName

func (*MemifSocketFilenameAddDelReply) GetMessageName() string

func (*MemifSocketFilenameAddDelReply) GetMessageType

func (*MemifSocketFilenameAddDelReply) Reset added in v0.3.0

func (m *MemifSocketFilenameAddDelReply) Reset()

type MemifSocketFilenameDetails

type MemifSocketFilenameDetails struct {
	SocketID       uint32
	SocketFilename string `struc:"[108]byte"`
}

MemifSocketFilenameDetails represents VPP binary API message 'memif_socket_filename_details'.

func (*MemifSocketFilenameDetails) GetCrcString

func (*MemifSocketFilenameDetails) GetCrcString() string

func (*MemifSocketFilenameDetails) GetMessageName

func (*MemifSocketFilenameDetails) GetMessageName() string

func (*MemifSocketFilenameDetails) GetMessageType

func (*MemifSocketFilenameDetails) GetMessageType() api.MessageType

func (*MemifSocketFilenameDetails) Reset added in v0.3.0

func (m *MemifSocketFilenameDetails) Reset()

type MemifSocketFilenameDump

type MemifSocketFilenameDump struct{}

MemifSocketFilenameDump represents VPP binary API message 'memif_socket_filename_dump'.

func (*MemifSocketFilenameDump) GetCrcString

func (*MemifSocketFilenameDump) GetCrcString() string

func (*MemifSocketFilenameDump) GetMessageName

func (*MemifSocketFilenameDump) GetMessageName() string

func (*MemifSocketFilenameDump) GetMessageType

func (*MemifSocketFilenameDump) GetMessageType() api.MessageType

func (*MemifSocketFilenameDump) Reset added in v0.3.0

func (m *MemifSocketFilenameDump) Reset()

type MtuProto added in v0.3.0

type MtuProto = interface_types.MtuProto

type RPCService

type RPCService interface {
	DumpMemif(ctx context.Context, in *MemifDump) (RPCService_DumpMemifClient, error)
	DumpMemifSocketFilename(ctx context.Context, in *MemifSocketFilenameDump) (RPCService_DumpMemifSocketFilenameClient, error)
	MemifCreate(ctx context.Context, in *MemifCreate) (*MemifCreateReply, error)
	MemifDelete(ctx context.Context, in *MemifDelete) (*MemifDeleteReply, error)
	MemifSocketFilenameAddDel(ctx context.Context, in *MemifSocketFilenameAddDel) (*MemifSocketFilenameAddDelReply, error)
}

RPCService represents RPC service API for memif module.

func NewServiceClient

func NewServiceClient(ch api.Channel) RPCService

type RPCService_DumpMemifClient

type RPCService_DumpMemifClient interface {
	Recv() (*MemifDetails, error)
}

type RPCService_DumpMemifSocketFilenameClient

type RPCService_DumpMemifSocketFilenameClient interface {
	Recv() (*MemifSocketFilenameDetails, error)
}

type RxMode added in v0.3.0

type RxMode = interface_types.RxMode

type SubIfFlags added in v0.3.0

type SubIfFlags = interface_types.SubIfFlags

Jump to

Keyboard shortcuts

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