Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for EADDRNOTAVAIL (0.24 sec)

  1. src/syscall/tables_wasip1.go

    package syscall
    
    import "runtime"
    
    // TODO: Auto-generate some day. (Hard-coded in binaries so not likely to change.)
    const (
    	E2BIG           Errno = 1
    	EACCES          Errno = 2
    	EADDRINUSE      Errno = 3
    	EADDRNOTAVAIL   Errno = 4
    	EAFNOSUPPORT    Errno = 5
    	EAGAIN          Errno = 6
    	EALREADY        Errno = 7
    	EBADF           Errno = 8
    	EBADMSG         Errno = 9
    	EBUSY           Errno = 10
    	ECANCELED       Errno = 11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  2. src/net/tcpsock_posix.go

    	//
    	// The opposite can also happen: if we ask the kernel to pick an appropriate
    	// originating local address, sometimes it picks one that is already in use.
    	// So if the error is EADDRNOTAVAIL, we have to try again too, just for
    	// a different reason.
    	//
    	// The kernel socket code is no doubt enjoying watching us squirm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top