Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for EADDRNOTAVAIL (0.28 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	_HIDIOCGRAWNAME                  = 0x80804804
    	_HIDIOCGRAWPHYS                  = 0x80404805
    	_HIDIOCGRAWUNIQ                  = 0x80404808
    )
    
    // Errors
    const (
    	EADDRINUSE      = syscall.Errno(0x62)
    	EADDRNOTAVAIL   = syscall.Errno(0x63)
    	EADV            = syscall.Errno(0x44)
    	EAFNOSUPPORT    = syscall.Errno(0x61)
    	EALREADY        = syscall.Errno(0x72)
    	EBADE           = syscall.Errno(0x34)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	_HIDIOCGRAWNAME                  = 0x80804804
    	_HIDIOCGRAWPHYS                  = 0x80404805
    	_HIDIOCGRAWUNIQ                  = 0x80404808
    )
    
    // Errors
    const (
    	EADDRINUSE      = syscall.Errno(0x62)
    	EADDRNOTAVAIL   = syscall.Errno(0x63)
    	EADV            = syscall.Errno(0x44)
    	EAFNOSUPPORT    = syscall.Errno(0x61)
    	EALREADY        = syscall.Errno(0x72)
    	EBADE           = syscall.Errno(0x34)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	_HIDIOCGRAWNAME                  = 0x80804804
    	_HIDIOCGRAWPHYS                  = 0x80404805
    	_HIDIOCGRAWUNIQ                  = 0x80404808
    )
    
    // Errors
    const (
    	EADDRINUSE      = syscall.Errno(0x62)
    	EADDRNOTAVAIL   = syscall.Errno(0x63)
    	EADV            = syscall.Errno(0x44)
    	EAFNOSUPPORT    = syscall.Errno(0x61)
    	EALREADY        = syscall.Errno(0x72)
    	EBADE           = syscall.Errno(0x34)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	EPROTONOSUPPORT    = Errno(1110)
    	ESOCKTNOSUPPORT    = Errno(1111)
    	EOPNOTSUPP         = Errno(1112)
    	EPFNOSUPPORT       = Errno(1113)
    	EAFNOSUPPORT       = Errno(1114)
    	EADDRINUSE         = Errno(1115)
    	EADDRNOTAVAIL      = Errno(1116)
    	ENETDOWN           = Errno(1117)
    	ENETUNREACH        = Errno(1118)
    	ENETRESET          = Errno(1119)
    	ECONNABORTED       = Errno(1120)
    	ECONNRESET         = Errno(1121)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  6. src/syscall/zerrors_solaris_amd64.go

    	WTRAPPED                      = 0x2
    	WUNTRACED                     = 0x4
    )
    
    // Errors
    const (
    	E2BIG           = Errno(0x7)
    	EACCES          = Errno(0xd)
    	EADDRINUSE      = Errno(0x7d)
    	EADDRNOTAVAIL   = Errno(0x7e)
    	EADV            = Errno(0x44)
    	EAFNOSUPPORT    = Errno(0x7c)
    	EAGAIN          = Errno(0xb)
    	EALREADY        = Errno(0x95)
    	EBADE           = Errno(0x32)
    	EBADF           = Errno(0x9)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
Back to top