Documentation ¶
Overview ¶
Package muxed provides a muxed link endpoints.
Index ¶
- type InjectableEndpoint
- func (*InjectableEndpoint) ARPHardwareType() header.ARPHardwareType
- func (*InjectableEndpoint) AddHeader(stack.PacketBufferPtr)
- func (m *InjectableEndpoint) Attach(dispatcher stack.NetworkDispatcher)
- func (m *InjectableEndpoint) Capabilities() stack.LinkEndpointCapabilities
- func (m *InjectableEndpoint) InjectInbound(protocol tcpip.NetworkProtocolNumber, pkt stack.PacketBufferPtr)
- func (m *InjectableEndpoint) InjectOutbound(dest tcpip.Address, packet *buffer.View) tcpip.Error
- func (m *InjectableEndpoint) IsAttached() bool
- func (m *InjectableEndpoint) LinkAddress() tcpip.LinkAddress
- func (m *InjectableEndpoint) MTU() uint32
- func (m *InjectableEndpoint) MaxHeaderLength() uint16
- func (*InjectableEndpoint) ParseHeader(stack.PacketBufferPtr) bool
- func (m *InjectableEndpoint) Wait()
- func (m *InjectableEndpoint) WritePackets(pkts stack.PacketBufferList) (int, tcpip.Error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type InjectableEndpoint ¶
type InjectableEndpoint struct {
// contains filtered or unexported fields
}
InjectableEndpoint is an injectable multi endpoint. The endpoint has trivial routing rules that determine which InjectableEndpoint a given packet will be written to. Note that HandleLocal works differently for this endpoint (see WritePacket).
func NewInjectableEndpoint ¶
func NewInjectableEndpoint(routes map[tcpip.Address]stack.InjectableLinkEndpoint) *InjectableEndpoint
NewInjectableEndpoint creates a new multi-endpoint injectable endpoint.
func (*InjectableEndpoint) ARPHardwareType ¶
func (*InjectableEndpoint) ARPHardwareType() header.ARPHardwareType
ARPHardwareType implements stack.LinkEndpoint.ARPHardwareType.
func (*InjectableEndpoint) AddHeader ¶
func (*InjectableEndpoint) AddHeader(stack.PacketBufferPtr)
AddHeader implements stack.LinkEndpoint.AddHeader.
func (*InjectableEndpoint) Attach ¶
func (m *InjectableEndpoint) Attach(dispatcher stack.NetworkDispatcher)
Attach implements stack.LinkEndpoint.
func (*InjectableEndpoint) Capabilities ¶
func (m *InjectableEndpoint) Capabilities() stack.LinkEndpointCapabilities
Capabilities implements stack.LinkEndpoint.
func (*InjectableEndpoint) InjectInbound ¶
func (m *InjectableEndpoint) InjectInbound(protocol tcpip.NetworkProtocolNumber, pkt stack.PacketBufferPtr)
InjectInbound implements stack.InjectableLinkEndpoint.
func (*InjectableEndpoint) InjectOutbound ¶
InjectOutbound writes outbound packets to the appropriate LinkInjectableEndpoint based on the dest address.
func (*InjectableEndpoint) IsAttached ¶
func (m *InjectableEndpoint) IsAttached() bool
IsAttached implements stack.LinkEndpoint.
func (*InjectableEndpoint) LinkAddress ¶
func (m *InjectableEndpoint) LinkAddress() tcpip.LinkAddress
LinkAddress implements stack.LinkEndpoint.
func (*InjectableEndpoint) MTU ¶
func (m *InjectableEndpoint) MTU() uint32
MTU implements stack.LinkEndpoint.
func (*InjectableEndpoint) MaxHeaderLength ¶
func (m *InjectableEndpoint) MaxHeaderLength() uint16
MaxHeaderLength implements stack.LinkEndpoint.
func (*InjectableEndpoint) ParseHeader ¶
func (*InjectableEndpoint) ParseHeader(stack.PacketBufferPtr) bool
ParseHeader implements stack.LinkEndpoint.ParseHeader.
func (*InjectableEndpoint) Wait ¶
func (m *InjectableEndpoint) Wait()
Wait implements stack.LinkEndpoint.Wait.
func (*InjectableEndpoint) WritePackets ¶
func (m *InjectableEndpoint) WritePackets(pkts stack.PacketBufferList) (int, tcpip.Error)
WritePackets writes outbound packets to the appropriate LinkInjectableEndpoint based on the RemoteAddress. HandleLocal only works if pkt.EgressRoute.RemoteAddress has a route registered in this endpoint.