# Functions
DialContextTCP creates a new TCP Conn connected to the specified address with the option of adding cancellation and timeouts.
DialTCP creates a new TCP Conn connected to the specified address.
DialUDP creates a new UDPConn.
NewConn creates a new Conn.
NewListener creates a new Listener.
NewPacketConn creates a new PacketConn.
# Structs
A Conn is a wrapper around a tcpip.Endpoint that implements the net.Conn interface.
A Listener is a wrapper around a tcpip endpoint that implements net.Listener.
A PacketConn is a wrapper around a tcpip endpoint that implements net.PacketConn.