type net.UDPConn
22 uses
net (current package)
udpsock.go#L88: type UDPConn struct {
udpsock.go#L94: func (c *UDPConn) SyscallConn() (syscall.RawConn, error) {
udpsock.go#L102: func (c *UDPConn) ReadFromUDP(b []byte) (int, *UDPAddr, error) {
udpsock.go#L114: func (c *UDPConn) ReadFrom(b []byte) (int, Addr, error) {
udpsock.go#L135: func (c *UDPConn) ReadMsgUDP(b, oob []byte) (n, oobn, flags int, addr *UDPAddr, err error) {
udpsock.go#L147: func (c *UDPConn) WriteToUDP(b []byte, addr *UDPAddr) (int, error) {
udpsock.go#L159: func (c *UDPConn) WriteTo(b []byte, addr Addr) (int, error) {
udpsock.go#L182: func (c *UDPConn) WriteMsgUDP(b, oob []byte, addr *UDPAddr) (n, oobn int, err error) {
udpsock.go#L193: func newUDPConn(fd *netFD) *UDPConn { return &UDPConn{conn{fd}} }
udpsock.go#L202: func DialUDP(network string, laddr, raddr *UDPAddr) (*UDPConn, error) {
udpsock.go#L228: func ListenUDP(network string, laddr *UDPAddr) (*UDPConn, error) {
udpsock.go#L265: func ListenMulticastUDP(network string, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) {
udpsock_posix.go#L45: func (c *UDPConn) readFrom(b []byte) (int, *UDPAddr, error) {
udpsock_posix.go#L57: func (c *UDPConn) readMsg(b, oob []byte) (n, oobn, flags int, addr *UDPAddr, err error) {
udpsock_posix.go#L69: func (c *UDPConn) writeTo(b []byte, addr *UDPAddr) (int, error) {
udpsock_posix.go#L83: func (c *UDPConn) writeMsg(b, oob []byte, addr *UDPAddr) (n, oobn int, err error) {
udpsock_posix.go#L97: func (sd *sysDialer) dialUDP(ctx context.Context, laddr, raddr *UDPAddr) (*UDPConn, error) {
udpsock_posix.go#L105: func (sl *sysListener) listenUDP(ctx context.Context, laddr *UDPAddr) (*UDPConn, error) {
udpsock_posix.go#L113: func (sl *sysListener) listenMulticastUDP(ctx context.Context, ifi *Interface, gaddr *UDPAddr) (*UDPConn, error) {
udpsock_posix.go#L133: func listenIPv4MulticastUDP(c *UDPConn, ifi *Interface, ip IP) error {
udpsock_posix.go#L148: func listenIPv6MulticastUDP(c *UDPConn, ifi *Interface, ip IP) error {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |