Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for AF_UNIX (0.12 sec)

  1. src/internal/syscall/windows/version_windows_test.go

    		t.Fatal(err)
    	}
    	defer syscall.WSACleanup()
    
    	// Test that SupportUnixSocket returns true if WSASocket succeeds with AF_UNIX.
    	got := windows.SupportUnixSocket()
    	s, err := windows.WSASocket(syscall.AF_UNIX, syscall.SOCK_STREAM, 0, nil, 0, windows.WSA_FLAG_NO_HANDLE_INHERIT)
    	if err == nil {
    		syscall.Closesocket(s)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:24:57 UTC 2024
    - 874 bytes
    - Viewed (0)
  2. pkg/util/filesystem/util_unix.go

    limitations under the License.
    */
    
    package filesystem
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    )
    
    // IsUnixDomainSocket returns whether a given file is a AF_UNIX socket file
    func IsUnixDomainSocket(filePath string) (bool, error) {
    	fi, err := os.Stat(filePath)
    	if err != nil {
    		return false, fmt.Errorf("stat file %s failed: %v", filePath, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. src/net/unixsock_posix.go

    			return nil, errMissingAddress
    		}
    	case "listen":
    	default:
    		return nil, errors.New("unknown mode: " + mode)
    	}
    
    	fd, err := socket(ctx, net, syscall.AF_UNIX, sotype, 0, false, laddr, raddr, ctxCtrlFn)
    	if err != nil {
    		return nil, err
    	}
    	return fd, nil
    }
    
    func sockaddrToUnix(sa syscall.Sockaddr) Addr {
    	if s, ok := sa.(*syscall.SockaddrUnix); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. src/internal/syscall/windows/version_windows.go

    	buf := make([]syscall.WSAProtocolInfo, n)
    	n, err := syscall.WSAEnumProtocols(nil, &buf[0], &size)
    	if err != nil {
    		return false
    	}
    	for i := int32(0); i < n; i++ {
    		if buf[i].AddressFamily == syscall.AF_UNIX {
    			return true
    		}
    	}
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. src/net/file_unix.go

    	rsa, _ := syscall.Getpeername(s)
    	switch lsa.(type) {
    	case *syscall.SockaddrInet4:
    		family = syscall.AF_INET
    	case *syscall.SockaddrInet6:
    		family = syscall.AF_INET6
    	case *syscall.SockaddrUnix:
    		family = syscall.AF_UNIX
    	default:
    		poll.CloseFunc(s)
    		return nil, syscall.EPROTONOSUPPORT
    	}
    	fd, err := newFD(s, family, sotype, "")
    	if err != nil {
    		poll.CloseFunc(s)
    		return nil, err
    	}
    	laddr := fd.addrFunc()(lsa)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. pkg/util/filesystem/util_windows.go

    	socketDialRetryPeriod = 1 * time.Second
    	// Overall timeout value to dial a Unix domain socket, including retries
    	socketDialTimeout = 4 * time.Second
    )
    
    // IsUnixDomainSocket returns whether a given file is a AF_UNIX socket file
    // Note that due to the retry logic inside, it could take up to 4 seconds
    // to determine whether or not the file path supplied is a Unix domain socket
    func IsUnixDomainSocket(filePath string) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/syscall/syscall_aix.go

    // Constant expected by package but not supported
    const (
    	_ = iota
    	TIOCSCTTY
    	SYS_EXECVE
    	SYS_FCNTL
    )
    
    const (
    	F_DUPFD_CLOEXEC = 0
    	// AF_LOCAL doesn't exist on AIX
    	AF_LOCAL = AF_UNIX
    
    	_F_DUP2FD_CLOEXEC = 0
    )
    
    func (ts *StTimespec_t) Unix() (sec int64, nsec int64) {
    	return int64(ts.Sec), int64(ts.Nsec)
    }
    
    func (ts *StTimespec_t) Nano() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	AF_INTF                         = 20
    	AF_IUCV                         = 17
    	AF_LAT                          = 14
    	AF_LINK                         = 18
    	AF_LOCAL                        = AF_UNIX // AF_LOCAL is an alias for AF_UNIX
    	AF_MAX                          = 30
    	AF_NBS                          = 7
    	AF_NDD                          = 23
    	AF_NETWARE                      = 22
    	AF_NS                           = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. src/syscall/syscall_solaris.go

    }
    
    func (sa *SockaddrUnix) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	name := sa.Name
    	n := len(name)
    	if n >= len(sa.raw.Path) {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Family = AF_UNIX
    	for i := 0; i < n; i++ {
    		sa.raw.Path[i] = int8(name[i])
    	}
    	// length is family (uint16), name, NUL.
    	sl := _Socklen(2)
    	if n > 0 {
    		sl += _Socklen(n) + 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/syscall/types_windows.go

    	StandardDate Systemtime
    	StandardBias int32
    	DaylightName [32]uint16
    	DaylightDate Systemtime
    	DaylightBias int32
    }
    
    // Socket related.
    
    const (
    	AF_UNSPEC  = 0
    	AF_UNIX    = 1
    	AF_INET    = 2
    	AF_INET6   = 23
    	AF_NETBIOS = 17
    
    	SOCK_STREAM    = 1
    	SOCK_DGRAM     = 2
    	SOCK_RAW       = 3
    	SOCK_SEQPACKET = 5
    
    	IPPROTO_IP   = 0
    	IPPROTO_IPV6 = 0x29
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top