Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
ErrClosed = errors.New("listener closed")
)
View Source
var (
ErrTimeout = &timeoutError{}
)
Functions ¶
func Listen ¶
func Listen(opts *ListenOpts) net.Listener
Listen creates a net.Listener that multiplexes connections over a connection obtained from the underlying opts.Listener.
func NewSmuxProtocol ¶
NewSmuxProtocol creates a new smux based Protocol using the smux configuration givien. If config is nil, the default smux configuration is used.
Types ¶
type DialFN ¶
DialFN is a function that dials like net.DialContext.
func Dialer ¶
func Dialer(opts *DialerOpts) DialFN
Dialer creates a DialFN that returns connections that multiplex themselves over a single connection obtained from the underlying opts.Dial function. It will continue to use that single connection until and unless it encounters an error creating a new multiplexed stream, at which point it will dial again.
type DialerOpts ¶
type ErrorMapperFn ¶
type ListenOpts ¶
Click to show internal directories.
Click to hide internal directories.