Lines Matching refs:network
6 Package net provides a portable interface for network I/O, including
99 // Addr represents a network end point address.
101 // The two methods Network and String conventionally return strings
105 Network() string // name of the network (for example, "tcp", "udp")
109 // Conn is a generic stream-oriented network connection.
127 // LocalAddr returns the local network address.
130 // RemoteAddr returns the remote network address.
207 // LocalAddr returns the local network address.
217 // RemoteAddr returns the remote network address.
301 // PacketConn is a generic packet-oriented network connection.
325 // LocalAddr returns the local network address.
360 // A Listener is a generic network listener for stream-oriented protocols.
371 // Addr returns the listener's network address.
375 // An Error represents a network error.
412 // package. It describes the operation, network type, and address of
419 // Net is the network type on which this error occurred,
423 // For operations involving a remote network connection, like
425 // network address.
428 // Addr is the network address for which this error occurred.
431 // For operations involving a remote network connection, like
500 // A ParseError is the error type of literal network address parsers.
533 func (e UnknownNetworkError) Error() string { return "unknown network " + string(e) }