Versions in this module Expand all Collapse all v1 v1.0.0 Feb 15, 2024 Changes in this version + type Conn struct + func (conn *Conn) Close() error + func (conn *Conn) LocalAddr() net.Addr + func (conn *Conn) Read(b []byte) (n int, err error) + func (conn *Conn) RemoteAddr() net.Addr + func (conn *Conn) SetDeadline(t time.Time) error + func (conn *Conn) SetReadDeadline(t time.Time) error + func (conn *Conn) SetWriteDeadline(time.Time) error + func (conn *Conn) Write(b []byte) (n int, err error) + type Listener struct + func Listen(network string, addr string) (*Listener, error) + func (lst *Listener) Accept() (net.Conn, error) + func (lst *Listener) Addr() net.Addr + func (lst *Listener) Close() error