netx
packageThis package is not in the latest version of its module.
Details
Validgo.mod file
The Go module system was introduced in Go 1.11 and is the official dependency management solution for Go.
Redistributable license
Redistributable licenses place minimal restrictions on how software can be used, modified, and redistributed.
Tagged version
Modules with tagged versions give importers more predictable builds.
Stable version
When a project reaches major version v1 it is considered stable.
- Learn more about best practices
Repository
Links
Documentation¶
Overview¶
Package netx contains types to describe and abstract over how dialing andlistening are performed.
Index¶
Constants¶
This section is empty.
Variables¶
This section is empty.
Functions¶
This section is empty.
Types¶
typeDialFunc¶
DialFunc is a function that dials a network address.
It's the type implemented by net.Dialer.DialContext or requiredby net/http.Transport.DialContext, etc.
typeNetwork¶
type Network interface {NewLocalTCPListener()net.ListenerListen(network, addressstring) (net.Listener,error)Dial(ctxcontext.Context, network, addressstring) (net.Conn,error)}Network describes a network that can listen and dial. The two commonimplementations areRealNetwork, using the net package to use the realnetwork, or [memnet.Network], using an in-memory network (typically for testing)
funcRealNetwork¶
func RealNetwork()Network
RealNetwork returns a Network implementation that uses the realnet package.