Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PacketConn (0.19 sec)

  1. src/net/net.go

    	if err != nil {
    		err = &OpError{Op: "file", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    	}
    	return
    }
    
    // PacketConn is a generic packet-oriented network connection.
    //
    // Multiple goroutines may invoke methods on a PacketConn simultaneously.
    type PacketConn interface {
    	// ReadFrom reads a packet from the connection,
    	// copying the payload into p. It returns the number of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/nettest/nettest.go

    // loopback IP address or local file system path.
    //
    // The provided network must be "udp", "udp4", "udp6" or "unixgram".
    func NewLocalPacketListener(network string) (net.PacketConn, error) {
    	stackOnce.Do(probeStack)
    	switch network {
    	case "udp":
    		if canListenTCP4OnLoopback {
    			if c, err := net.ListenPacket("udp4", "127.0.0.1:0"); err == nil {
    				return c, nil
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top