nettype

package
v1.66.1 Latest Latest
Warning

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

Go to latest
Published: May 9, 2024 License: BSD-3-Clause Imports: 5 Imported by: 32

Documentation

Overview

Package nettype defines an interface that doesn't exist in the Go net package.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ConnPacketConn added in v1.38.0

type ConnPacketConn interface {
	net.Conn
	net.PacketConn
}

ConnPacketConn is the interface that's a superset of net.Conn and net.PacketConn.

type PacketConn added in v1.30.0

type PacketConn interface {
	WriteToUDPAddrPort([]byte, netip.AddrPort) (int, error)
	ReadFromUDPAddrPort([]byte) (int, netip.AddrPort, error)
	io.Closer
	LocalAddr() net.Addr
	SetDeadline(time.Time) error
	SetReadDeadline(time.Time) error
	SetWriteDeadline(time.Time) error
}

PacketConn is like a net.PacketConn but uses the newer netip.AddrPort write/read methods.

type PacketListener

type PacketListener interface {
	ListenPacket(ctx context.Context, network, address string) (net.PacketConn, error)
}

PacketListener defines the ListenPacket method as implemented by net.ListenConfig, net.ListenPacket, and tstest/natlab.

type PacketListenerWithNetIP added in v1.30.0

type PacketListenerWithNetIP interface {
	ListenPacket(ctx context.Context, network, address string) (PacketConn, error)
}

func MakePacketListenerWithNetIP added in v1.30.0

func MakePacketListenerWithNetIP(ln PacketListener) PacketListenerWithNetIP

type Std

type Std struct{}

Std implements PacketListener using the Go net package's ListenPacket func.

func (Std) ListenPacket

func (Std) ListenPacket(ctx context.Context, network, address string) (net.PacketConn, error)

Jump to

Keyboard shortcuts

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