Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EISCONN (0.08 sec)

  1. src/syscall/tables_wasip1.go

    	EHOSTUNREACH    Errno = 23
    	EIDRM           Errno = 24
    	EILSEQ          Errno = 25
    	EINPROGRESS     Errno = 26
    	EINTR           Errno = 27
    	EINVAL          Errno = 28
    	EIO             Errno = 29
    	EISCONN         Errno = 30
    	EISDIR          Errno = 31
    	ELOOP           Errno = 32
    	EMFILE          Errno = 33
    	EMLINK          Errno = 34
    	EMSGSIZE        Errno = 35
    	EMULTIHOP       Errno = 36
    	ENAMETOOLONG    Errno = 37
    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/fd_unix.go

    	// because fd is not yet accessible to user,
    	// so no concurrent operations are possible.
    	switch err := connectFunc(fd.pfd.Sysfd, ra); err {
    	case syscall.EINPROGRESS, syscall.EALREADY, syscall.EINTR:
    	case nil, syscall.EISCONN:
    		select {
    		case <-ctx.Done():
    			return nil, mapErr(ctx.Err())
    		default:
    		}
    		if err := fd.pfd.Init(fd.net, true); err != nil {
    			return nil, err
    		}
    		runtime.KeepAlive(fd)
    		return nil, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 20:19:46 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. src/net/internal/socktest/sys_unix.go

    	if err = af.apply(so); err != nil {
    		return -1, err
    	}
    
    	if so.Err != nil {
    		return -1, so.Err
    	}
    	if opt == syscall.SO_ERROR && (so.SocketErr == syscall.Errno(0) || so.SocketErr == syscall.EISCONN) {
    		sw.smu.Lock()
    		sw.stats.getLocked(so.Cookie).Connected++
    		sw.smu.Unlock()
    	}
    	return soerr, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top