Versions in this module Expand all Collapse all v1 v1.5.2 Dec 13, 2024 v1.5.1 Dec 2, 2024 Changes in this version + type NetterUDP interface + DialUDP func(network string, laddr *net.UDPAddr, raddr *net.UDPAddr) (UDPConnInterface, error) + ListenUDP func(network string, laddr *net.UDPAddr) (UDPConnInterface, error) + ResolveUDPAddr func(network string, address string) (*net.UDPAddr, error) + type UDPConnInterface interface + Close func() error + File func() (f *os.File, err error) + LocalAddr func() net.Addr + Read func(b []byte) (int, error) + ReadFrom func(b []byte) (int, net.Addr, error) + ReadFromUDP func(b []byte) (n int, addr *net.UDPAddr, err error) + ReadFromUDPAddrPort func(b []byte) (n int, addr netip.AddrPort, err error) + ReadMsgUDP func(b []byte, oob []byte) (n int, oobn int, flags int, addr *net.UDPAddr, err error) + ReadMsgUDPAddrPort func(b []byte, oob []byte) (n int, oobn int, flags int, addr netip.AddrPort, err error) + RemoteAddr func() net.Addr + SetDeadline func(t time.Time) error + SetReadBuffer func(bytes int) error + SetReadDeadline func(t time.Time) error + SetWriteBuffer func(bytes int) error + SetWriteDeadline func(t time.Time) error + SyscallConn func() (syscall.RawConn, error) + Write func(b []byte) (int, error) + WriteMsgUDP func(b []byte, oob []byte, addr *net.UDPAddr) (n int, oobn int, err error) + WriteMsgUDPAddrPort func(b []byte, oob []byte, addr netip.AddrPort) (n int, oobn int, err error) + WriteTo func(b []byte, addr net.Addr) (int, error) + WriteToUDP func(b []byte, addr *net.UDPAddr) (int, error) + WriteToUDPAddrPort func(b []byte, addr netip.AddrPort) (int, error)