Home | History | Annotate | Download | only in net

Lines Matching refs:network

6 Package net provides a portable interface for network I/O, including
104 // Addr represents a network end point address.
106 // The two methods Network and String conventionally return strings
110 Network() string // name of the network (for example, "tcp", "udp")
114 // Conn is a generic stream-oriented network connection.
132 // LocalAddr returns the local network address.
135 // RemoteAddr returns the remote network address.
212 // LocalAddr returns the local network address.
222 // RemoteAddr returns the remote network address.
304 // PacketConn is a generic packet-oriented network connection.
328 // LocalAddr returns the local network address.
363 // A Listener is a generic network listener for stream-oriented protocols.
374 // Addr returns the listener's network address.
378 // An Error represents a network error.
396 errClosing = errors.New("use of closed network connection")
417 // package. It describes the operation, network type, and address of
424 // Net is the network type on which this error occurred,
428 // For operations involving a remote network connection, like
430 // network address.
433 // Addr is the network address for which this error occurred.
436 // For operations involving a remote network connection, like
511 // A ParseError is the error type of literal network address parsers.
544 func (e UnknownNetworkError) Error() string { return "unknown network " + string(e) }