# Packages

No description provided by the author

# Functions

GetSocketPath returns a platform-appropriate path for the given socket name.
NewFileConn returns a connection that will operate on the given file descriptor.
NewUDPClient returns a new Socket that will attempt to connect to the server on the given IP and port.
NewUDPServer returns a new Server that will listen for clients on the given local port.
NewUnixClient returns a new connection to the server at the specified path, assuming there are no errors when connecting.
NewUnixgramClient returns a new connection to the server at the specified path, assuming there are no errors when connecting.
NewUnixgramServer returns a new server object listening for clients on the specified path, if no errors are encountered.
NewUnixPacketClient returns a new server object listening for clients on the specified path, if no errors are encountered.
NewUnixPacketServer returns a new connection to the server at the specified path, assuming there are no errors when connecting.
NewUnixServer returns a new server object listening for clients on the specified path, if no errors are encountered.

# Interfaces

Conn represents a connection between two specific network endpoints - a client will hold one Conn to the server it's connected to, a server will hold individual Conns for each client that's connected to it.
Server represents a running server waiting for connections.