Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EADDRNOTAVAIL (0.11 sec)

  1. src/net/error_posix_test.go

    	for _, tt := range []struct {
    		error
    		ok bool
    	}{
    		{syscall.EADDRNOTAVAIL, true},
    		{&os.SyscallError{Syscall: "syscall", Err: syscall.EADDRNOTAVAIL}, true},
    		{&OpError{Op: "op", Err: syscall.EADDRNOTAVAIL}, true},
    		{&OpError{Op: "op", Err: &os.SyscallError{Syscall: "syscall", Err: syscall.EADDRNOTAVAIL}}, true},
    
    		{syscall.EINVAL, false},
    		{&os.SyscallError{Syscall: "syscall", Err: syscall.EINVAL}, false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 981 bytes
    - Viewed (0)
  2. 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)
  3. 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