net

package
v0.5.0 Latest Latest
Warning

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

Go to latest
Published: Apr 11, 2024 License: Apache-2.0 Imports: 17 Imported by: 91

Documentation

Index

Constants

View Source
const (
	DefaultAfterHookPriority = 10
)

Variables

This section is empty.

Functions

func Dial added in v0.5.0

func Dial(addr string, opts ...DialOption) (c net.Conn, err error)

func DialContext added in v0.5.0

func DialContext(ctx context.Context, addr string, opts ...DialOption) (c net.Conn, err error)

Types

type AfterHook added in v0.5.0

type AfterHook struct {
	// smaller value will be called first, 0 is reserved for private use.
	// If caller set this 0, use DefaultAfterHookPriority instead.
	Priority uint64
	Hook     AfterHookFunc
}

type AfterHookFunc added in v0.5.0

type AfterHookFunc func(ctx context.Context, c net.Conn, addr string) (context.Context, net.Conn, error)

type BeforeHook added in v0.5.0

type BeforeHook struct {
	Hook BeforeHookFunc
}

type BeforeHookFunc added in v0.5.0

type BeforeHookFunc func(ctx context.Context, addr string) context.Context

type DialMetas added in v0.5.0

type DialMetas map[interface{}]interface{}

func GetDialMetasFromContext added in v0.5.0

func GetDialMetasFromContext(ctx context.Context) DialMetas

func (DialMetas) Value added in v0.5.0

func (m DialMetas) Value(key interface{}) interface{}

type DialOption added in v0.5.0

type DialOption interface {
	// contains filtered or unexported methods
}

func WithAfterHook added in v0.5.0

func WithAfterHook(hook AfterHook) DialOption

func WithKeepAlive added in v0.5.0

func WithKeepAlive(keepAlive time.Duration) DialOption

func WithLocalAddr added in v0.5.0

func WithLocalAddr(laddr string) DialOption

func WithProtocol added in v0.5.0

func WithProtocol(protocol string) DialOption

func WithProxy added in v0.5.0

func WithProxy(proxyType string, address string) DialOption

func WithProxyAuth added in v0.5.0

func WithProxyAuth(auth *ProxyAuth) DialOption

func WithTLSConfig added in v0.5.0

func WithTLSConfig(tlsConfig *tls.Config) DialOption

func WithTLSConfigAndPriority added in v0.5.0

func WithTLSConfigAndPriority(priority uint64, tlsConfig *tls.Config) DialOption

func WithTimeout added in v0.5.0

func WithTimeout(timeout time.Duration) DialOption

type ProxyAuth

type ProxyAuth struct {
	Username string
	Passwd   string
}

func ParseProxyURL added in v0.5.0

func ParseProxyURL(proxyURL string) (proxyType string, address string, auth *ProxyAuth, err error)

type SharedConn

type SharedConn struct {
	net.Conn
	// contains filtered or unexported fields
}

func NewSharedConn

func NewSharedConn(conn net.Conn) (*SharedConn, io.Reader)

the bytes you read in io.Reader, will be reserved in SharedConn

func NewSharedConnSize

func NewSharedConnSize(conn net.Conn, bufSize int) (*SharedConn, io.Reader)

func (*SharedConn) Read

func (sc *SharedConn) Read(p []byte) (n int, err error)

Not thread safety.

func (*SharedConn) ResetBuf

func (sc *SharedConn) ResetBuf(buffer []byte) (err error)

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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