$22 GRAYBYTE WORDPRESS FILE MANAGER $92

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/lib/golang/src/net/

HOME
Current File : /lib/golang/src/net//ipsock.go
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

package net

import (
	"context"
	"internal/bytealg"
	"runtime"
	"sync"
	_ "unsafe" // for linkname
)

// BUG(rsc,mikio): On DragonFly BSD and OpenBSD, listening on the
// "tcp" and "udp" networks does not listen for both IPv4 and IPv6
// connections. This is due to the fact that IPv4 traffic will not be
// routed to an IPv6 socket - two separate sockets are required if
// both address families are to be supported.
// See inet6(4) for details.

type ipStackCapabilities struct {
	sync.Once             // guards following
	ipv4Enabled           bool
	ipv6Enabled           bool
	ipv4MappedIPv6Enabled bool
}

var ipStackCaps ipStackCapabilities

// supportsIPv4 reports whether the platform supports IPv4 networking
// functionality.
func supportsIPv4() bool {
	ipStackCaps.Once.Do(ipStackCaps.probe)
	return ipStackCaps.ipv4Enabled
}

// supportsIPv6 reports whether the platform supports IPv6 networking
// functionality.
func supportsIPv6() bool {
	ipStackCaps.Once.Do(ipStackCaps.probe)
	return ipStackCaps.ipv6Enabled
}

// supportsIPv4map reports whether the platform supports mapping an
// IPv4 address inside an IPv6 address at transport layer
// protocols. See RFC 4291, RFC 4038 and RFC 3493.
func supportsIPv4map() bool {
	// Some operating systems provide no support for mapping IPv4
	// addresses to IPv6, and a runtime check is unnecessary.
	switch runtime.GOOS {
	case "dragonfly", "openbsd":
		return false
	}

	ipStackCaps.Once.Do(ipStackCaps.probe)
	return ipStackCaps.ipv4MappedIPv6Enabled
}

// An addrList represents a list of network endpoint addresses.
type addrList []Addr

// isIPv4 reports whether addr contains an IPv4 address.
func isIPv4(addr Addr) bool {
	switch addr := addr.(type) {
	case *TCPAddr:
		return addr.IP.To4() != nil
	case *UDPAddr:
		return addr.IP.To4() != nil
	case *IPAddr:
		return addr.IP.To4() != nil
	}
	return false
}

// isNotIPv4 reports whether addr does not contain an IPv4 address.
func isNotIPv4(addr Addr) bool { return !isIPv4(addr) }

// forResolve returns the most appropriate address in address for
// a call to ResolveTCPAddr, ResolveUDPAddr, or ResolveIPAddr.
// IPv4 is preferred, unless addr contains an IPv6 literal.
func (addrs addrList) forResolve(network, addr string) Addr {
	var want6 bool
	switch network {
	case "ip":
		// IPv6 literal (addr does NOT contain a port)
		want6 = bytealg.CountString(addr, ':') > 0
	case "tcp", "udp":
		// IPv6 literal. (addr contains a port, so look for '[')
		want6 = bytealg.CountString(addr, '[') > 0
	}
	if want6 {
		return addrs.first(isNotIPv4)
	}
	return addrs.first(isIPv4)
}

// first returns the first address which satisfies strategy, or if
// none do, then the first address of any kind.
func (addrs addrList) first(strategy func(Addr) bool) Addr {
	for _, addr := range addrs {
		if strategy(addr) {
			return addr
		}
	}
	return addrs[0]
}

// partition divides an address list into two categories, using a
// strategy function to assign a boolean label to each address.
// The first address, and any with a matching label, are returned as
// primaries, while addresses with the opposite label are returned
// as fallbacks. For non-empty inputs, primaries is guaranteed to be
// non-empty.
func (addrs addrList) partition(strategy func(Addr) bool) (primaries, fallbacks addrList) {
	var primaryLabel bool
	for i, addr := range addrs {
		label := strategy(addr)
		if i == 0 || label == primaryLabel {
			primaryLabel = label
			primaries = append(primaries, addr)
		} else {
			fallbacks = append(fallbacks, addr)
		}
	}
	return
}

// filterAddrList applies a filter to a list of IP addresses,
// yielding a list of Addr objects. Known filters are nil, ipv4only,
// and ipv6only. It returns every address when the filter is nil.
// The result contains at least one address when error is nil.
func filterAddrList(filter func(IPAddr) bool, ips []IPAddr, inetaddr func(IPAddr) Addr, originalAddr string) (addrList, error) {
	var addrs addrList
	for _, ip := range ips {
		if filter == nil || filter(ip) {
			addrs = append(addrs, inetaddr(ip))
		}
	}
	if len(addrs) == 0 {
		return nil, &AddrError{Err: errNoSuitableAddress.Error(), Addr: originalAddr}
	}
	return addrs, nil
}

// ipv4only reports whether addr is an IPv4 address.
func ipv4only(addr IPAddr) bool {
	return addr.IP.To4() != nil
}

// ipv6only reports whether addr is an IPv6 address except IPv4-mapped IPv6 address.
func ipv6only(addr IPAddr) bool {
	return len(addr.IP) == IPv6len && addr.IP.To4() == nil
}

// SplitHostPort splits a network address of the form "host:port",
// "host%zone:port", "[host]:port" or "[host%zone]:port" into host or
// host%zone and port.
//
// A literal IPv6 address in hostport must be enclosed in square
// brackets, as in "[::1]:80", "[::1%lo0]:80".
//
// See func Dial for a description of the hostport parameter, and host
// and port results.
func SplitHostPort(hostport string) (host, port string, err error) {
	const (
		missingPort   = "missing port in address"
		tooManyColons = "too many colons in address"
	)
	addrErr := func(addr, why string) (host, port string, err error) {
		return "", "", &AddrError{Err: why, Addr: addr}
	}
	j, k := 0, 0

	// The port starts after the last colon.
	i := bytealg.LastIndexByteString(hostport, ':')
	if i < 0 {
		return addrErr(hostport, missingPort)
	}

	if hostport[0] == '[' {
		// Expect the first ']' just before the last ':'.
		end := bytealg.IndexByteString(hostport, ']')
		if end < 0 {
			return addrErr(hostport, "missing ']' in address")
		}
		switch end + 1 {
		case len(hostport):
			// There can't be a ':' behind the ']' now.
			return addrErr(hostport, missingPort)
		case i:
			// The expected result.
		default:
			// Either ']' isn't followed by a colon, or it is
			// followed by a colon that is not the last one.
			if hostport[end+1] == ':' {
				return addrErr(hostport, tooManyColons)
			}
			return addrErr(hostport, missingPort)
		}
		host = hostport[1:end]
		j, k = 1, end+1 // there can't be a '[' resp. ']' before these positions
	} else {
		host = hostport[:i]
		if bytealg.IndexByteString(host, ':') >= 0 {
			return addrErr(hostport, tooManyColons)
		}
	}
	if bytealg.IndexByteString(hostport[j:], '[') >= 0 {
		return addrErr(hostport, "unexpected '[' in address")
	}
	if bytealg.IndexByteString(hostport[k:], ']') >= 0 {
		return addrErr(hostport, "unexpected ']' in address")
	}

	port = hostport[i+1:]
	return host, port, nil
}

func splitHostZone(s string) (host, zone string) {
	// The IPv6 scoped addressing zone identifier starts after the
	// last percent sign.
	if i := bytealg.LastIndexByteString(s, '%'); i > 0 {
		host, zone = s[:i], s[i+1:]
	} else {
		host = s
	}
	return
}

// JoinHostPort combines host and port into a network address of the
// form "host:port". If host contains a colon, as found in literal
// IPv6 addresses, then JoinHostPort returns "[host]:port".
//
// See func Dial for a description of the host and port parameters.
func JoinHostPort(host, port string) string {
	// We assume that host is a literal IPv6 address if host has
	// colons.
	if bytealg.IndexByteString(host, ':') >= 0 {
		return "[" + host + "]:" + port
	}
	return host + ":" + port
}

// internetAddrList resolves addr, which may be a literal IP
// address or a DNS name, and returns a list of internet protocol
// family addresses. The result contains at least one address when
// error is nil.
func (r *Resolver) internetAddrList(ctx context.Context, net, addr string) (addrList, error) {
	var (
		err        error
		host, port string
		portnum    int
	)
	switch net {
	case "tcp", "tcp4", "tcp6", "udp", "udp4", "udp6":
		if addr != "" {
			if host, port, err = SplitHostPort(addr); err != nil {
				return nil, err
			}
			if portnum, err = r.LookupPort(ctx, net, port); err != nil {
				return nil, err
			}
		}
	case "ip", "ip4", "ip6":
		if addr != "" {
			host = addr
		}
	default:
		return nil, UnknownNetworkError(net)
	}
	inetaddr := func(ip IPAddr) Addr {
		switch net {
		case "tcp", "tcp4", "tcp6":
			return &TCPAddr{IP: ip.IP, Port: portnum, Zone: ip.Zone}
		case "udp", "udp4", "udp6":
			return &UDPAddr{IP: ip.IP, Port: portnum, Zone: ip.Zone}
		case "ip", "ip4", "ip6":
			return &IPAddr{IP: ip.IP, Zone: ip.Zone}
		default:
			panic("unexpected network: " + net)
		}
	}
	if host == "" {
		return addrList{inetaddr(IPAddr{})}, nil
	}

	// Try as a literal IP address, then as a DNS name.
	ips, err := r.lookupIPAddr(ctx, net, host)
	if err != nil {
		return nil, err
	}
	// Issue 18806: if the machine has halfway configured
	// IPv6 such that it can bind on "::" (IPv6unspecified)
	// but not connect back to that same address, fall
	// back to dialing 0.0.0.0.
	if len(ips) == 1 && ips[0].IP.Equal(IPv6unspecified) {
		ips = append(ips, IPAddr{IP: IPv4zero})
	}

	var filter func(IPAddr) bool
	if net != "" && net[len(net)-1] == '4' {
		filter = ipv4only
	}
	if net != "" && net[len(net)-1] == '6' {
		filter = ipv6only
	}
	return filterAddrList(filter, ips, inetaddr, host)
}

// loopbackIP should be an internal detail,
// but widely used packages access it using linkname.
// Notable members of the hall of shame include:
//   - github.com/database64128/tfo-go/v2
//   - github.com/metacubex/tfo-go
//   - github.com/sagernet/tfo-go
//
// Do not remove or change the type signature.
// See go.dev/issue/67401.
//
//go:linkname loopbackIP
func loopbackIP(net string) IP {
	if net != "" && net[len(net)-1] == '6' {
		return IPv6loopback
	}
	return IP{127, 0, 0, 1}
}

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
16 Dec 2025 9.30 PM
root / root
0755
http
--
16 Dec 2025 9.30 PM
root / root
0755
internal
--
4 Dec 2025 6.06 PM
root / root
0755
mail
--
16 Dec 2025 9.30 PM
root / root
0755
netip
--
16 Dec 2025 9.30 PM
root / root
0755
rpc
--
16 Dec 2025 9.30 PM
root / root
0755
smtp
--
16 Dec 2025 9.30 PM
root / root
0755
textproto
--
16 Dec 2025 9.30 PM
root / root
0755
url
--
16 Dec 2025 9.30 PM
root / root
0755
addrselect.go
9.452 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_aix.go
0.568 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_android.go
0.266 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_bsd.go
0.335 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_darwin.go
0.291 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_linux.go
0.627 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_netbsd.go
0.27 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_openbsd.go
0.27 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_resnew.go
0.566 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_resold.go
0.565 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_socknew.go
0.735 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_sockold.go
0.822 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_solaris.go
0.324 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_stub.go
1.331 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_unix.go
11.618 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_unix_cgo.go
2.424 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_unix_cgo_res.go
0.871 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_unix_cgo_resn.go
0.956 KB
4 Dec 2025 6.06 PM
root / root
0644
cgo_unix_syscall.go
3.061 KB
4 Dec 2025 6.06 PM
root / root
0644
conf.go
15.892 KB
4 Dec 2025 6.06 PM
root / root
0644
dial.go
28.603 KB
4 Dec 2025 6.06 PM
root / root
0644
dnsclient.go
5.672 KB
4 Dec 2025 6.06 PM
root / root
0644
dnsclient_unix.go
24.666 KB
4 Dec 2025 6.06 PM
root / root
0644
dnsconfig.go
2.186 KB
4 Dec 2025 6.06 PM
root / root
0644
dnsconfig_unix.go
4.12 KB
4 Dec 2025 6.06 PM
root / root
0644
dnsconfig_windows.go
1.606 KB
4 Dec 2025 6.06 PM
root / root
0644
error_plan9.go
0.219 KB
4 Dec 2025 6.06 PM
root / root
0644
error_posix.go
0.53 KB
4 Dec 2025 6.06 PM
root / root
0644
error_unix.go
0.373 KB
4 Dec 2025 6.06 PM
root / root
0644
error_windows.go
0.347 KB
4 Dec 2025 6.06 PM
root / root
0644
fd_fake.go
3.874 KB
4 Dec 2025 6.06 PM
root / root
0644
fd_js.go
0.612 KB
4 Dec 2025 6.06 PM
root / root
0644
fd_plan9.go
3.723 KB
4 Dec 2025 6.06 PM
root / root
0644
fd_posix.go
4.557 KB
4 Dec 2025 6.06 PM
root / root
0644
fd_unix.go
5.244 KB
4 Dec 2025 6.06 PM
root / root
0644
fd_wasip1.go
0.484 KB
4 Dec 2025 6.06 PM
root / root
0644
fd_windows.go
7.496 KB
4 Dec 2025 6.06 PM
root / root
0644
file.go
1.674 KB
4 Dec 2025 6.06 PM
root / root
0644
file_plan9.go
2.769 KB
4 Dec 2025 6.06 PM
root / root
0644
file_posix.go
2.227 KB
4 Dec 2025 6.06 PM
root / root
0644
file_stub.go
0.47 KB
4 Dec 2025 6.06 PM
root / root
0644
file_unix.go
0.596 KB
4 Dec 2025 6.06 PM
root / root
0644
file_wasip1.go
2.196 KB
4 Dec 2025 6.06 PM
root / root
0644
file_windows.go
1.14 KB
4 Dec 2025 6.06 PM
root / root
0644
hook.go
0.912 KB
4 Dec 2025 6.06 PM
root / root
0644
hook_plan9.go
0.206 KB
4 Dec 2025 6.06 PM
root / root
0644
hook_unix.go
0.643 KB
4 Dec 2025 6.06 PM
root / root
0644
hook_windows.go
0.703 KB
4 Dec 2025 6.06 PM
root / root
0644
hosts.go
3.476 KB
4 Dec 2025 6.06 PM
root / root
0644
interface.go
7.624 KB
4 Dec 2025 6.06 PM
root / root
0644
interface_aix.go
4.458 KB
4 Dec 2025 6.06 PM
root / root
0644
interface_bsd.go
2.829 KB
4 Dec 2025 6.06 PM
root / root
0644
interface_bsdvar.go
0.599 KB
4 Dec 2025 6.06 PM
root / root
0644
interface_darwin.go
1.144 KB
4 Dec 2025 6.06 PM
root / root
0644
interface_freebsd.go
1.145 KB
4 Dec 2025 6.06 PM
root / root
0644
interface_linux.go
6.661 KB
4 Dec 2025 6.06 PM
root / root
0644
interface_plan9.go
5.033 KB
4 Dec 2025 6.06 PM
root / root
0644
interface_solaris.go
2.134 KB
4 Dec 2025 6.06 PM
root / root
0644
interface_stub.go
0.795 KB
4 Dec 2025 6.06 PM
root / root
0644
interface_windows.go
5.493 KB
4 Dec 2025 6.06 PM
root / root
0644
ip.go
14.789 KB
4 Dec 2025 6.06 PM
root / root
0644
iprawsock.go
7.033 KB
4 Dec 2025 6.06 PM
root / root
0644
iprawsock_plan9.go
0.854 KB
4 Dec 2025 6.06 PM
root / root
0644
iprawsock_posix.go
3.895 KB
4 Dec 2025 6.06 PM
root / root
0644
ipsock.go
9.428 KB
4 Dec 2025 6.06 PM
root / root
0644
ipsock_plan9.go
7.566 KB
4 Dec 2025 6.06 PM
root / root
0644
ipsock_posix.go
8.796 KB
4 Dec 2025 6.06 PM
root / root
0644
lookup.go
29.062 KB
4 Dec 2025 6.06 PM
root / root
0644
lookup_plan9.go
9.768 KB
4 Dec 2025 6.06 PM
root / root
0644
lookup_unix.go
3.327 KB
4 Dec 2025 6.06 PM
root / root
0644
lookup_windows.go
13.514 KB
4 Dec 2025 6.06 PM
root / root
0644
mac.go
1.879 KB
4 Dec 2025 6.06 PM
root / root
0644
mptcpsock_linux.go
4.133 KB
4 Dec 2025 6.06 PM
root / root
0644
mptcpsock_stub.go
0.529 KB
4 Dec 2025 6.06 PM
root / root
0644
net.go
27.689 KB
4 Dec 2025 6.06 PM
root / root
0644
net_fake.go
26.446 KB
4 Dec 2025 6.06 PM
root / root
0644
netcgo_off.go
0.217 KB
4 Dec 2025 6.06 PM
root / root
0644
netcgo_on.go
0.215 KB
4 Dec 2025 6.06 PM
root / root
0644
netgo_netcgo.go
0.442 KB
4 Dec 2025 6.06 PM
root / root
0644
netgo_off.go
0.215 KB
4 Dec 2025 6.06 PM
root / root
0644
netgo_on.go
0.213 KB
4 Dec 2025 6.06 PM
root / root
0644
nss.go
5.482 KB
4 Dec 2025 6.06 PM
root / root
0644
parse.go
5.655 KB
4 Dec 2025 6.06 PM
root / root
0644
pipe.go
5.435 KB
4 Dec 2025 6.06 PM
root / root
0644
port.go
1.458 KB
4 Dec 2025 6.06 PM
root / root
0644
port_unix.go
1.239 KB
4 Dec 2025 6.06 PM
root / root
0644
rawconn.go
2.7 KB
4 Dec 2025 6.06 PM
root / root
0644
rlimit_js.go
0.338 KB
4 Dec 2025 6.06 PM
root / root
0644
rlimit_unix.go
1.101 KB
4 Dec 2025 6.06 PM
root / root
0644
sendfile.go
1.391 KB
4 Dec 2025 6.06 PM
root / root
0644
sendfile_nonwindows.go
0.353 KB
4 Dec 2025 6.06 PM
root / root
0644
sendfile_stub.go
0.409 KB
4 Dec 2025 6.06 PM
root / root
0644
sendfile_windows.go
0.558 KB
4 Dec 2025 6.06 PM
root / root
0644
sock_bsd.go
0.896 KB
4 Dec 2025 6.06 PM
root / root
0644
sock_cloexec.go
0.713 KB
4 Dec 2025 6.06 PM
root / root
0644
sock_cloexec_solaris.go
1.433 KB
4 Dec 2025 6.06 PM
root / root
0644
sock_linux.go
0.97 KB
4 Dec 2025 6.06 PM
root / root
0644
sock_plan9.go
0.256 KB
4 Dec 2025 6.06 PM
root / root
0644
sock_posix.go
6.288 KB
4 Dec 2025 6.06 PM
root / root
0644
sock_stub.go
0.381 KB
4 Dec 2025 6.06 PM
root / root
0644
sock_windows.go
0.783 KB
4 Dec 2025 6.06 PM
root / root
0644
sockaddr_posix.go
1.45 KB
4 Dec 2025 6.06 PM
root / root
0644
sockopt_aix.go
1.434 KB
4 Dec 2025 6.06 PM
root / root
0644
sockopt_bsd.go
2.21 KB
4 Dec 2025 6.06 PM
root / root
0644
sockopt_fake.go
0.933 KB
4 Dec 2025 6.06 PM
root / root
0644
sockopt_linux.go
1.253 KB
4 Dec 2025 6.06 PM
root / root
0644
sockopt_plan9.go
0.396 KB
4 Dec 2025 6.06 PM
root / root
0644
sockopt_posix.go
1.579 KB
4 Dec 2025 6.06 PM
root / root
0644
sockopt_solaris.go
1.253 KB
4 Dec 2025 6.06 PM
root / root
0644
sockopt_windows.go
1.509 KB
4 Dec 2025 6.06 PM
root / root
0644
sockoptip4_bsdvar.go
0.847 KB
4 Dec 2025 6.06 PM
root / root
0644
sockoptip4_linux.go
1.055 KB
4 Dec 2025 6.06 PM
root / root
0644
sockoptip4_posix_nonlinux.go
1.146 KB
4 Dec 2025 6.06 PM
root / root
0644
sockoptip4_windows.go
0.768 KB
4 Dec 2025 6.06 PM
root / root
0644
sockoptip6_posix.go
1.025 KB
4 Dec 2025 6.06 PM
root / root
0644
sockoptip_stub.go
0.751 KB
4 Dec 2025 6.06 PM
root / root
0644
splice_linux.go
1.715 KB
4 Dec 2025 6.06 PM
root / root
0644
splice_stub.go
0.367 KB
4 Dec 2025 6.06 PM
root / root
0644
sys_cloexec.go
0.939 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsock.go
14.016 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsock_plan9.go
2.299 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsock_posix.go
6.272 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsock_solaris.go
1.318 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsock_unix.go
1.053 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsock_windows.go
1.312 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsockopt_darwin.go
1.402 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsockopt_openbsd.go
0.741 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsockopt_plan9.go
0.744 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsockopt_posix.go
0.432 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsockopt_solaris.go
3.349 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsockopt_stub.go
0.557 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsockopt_unix.go
1.324 KB
4 Dec 2025 6.06 PM
root / root
0644
tcpsockopt_windows.go
3.758 KB
4 Dec 2025 6.06 PM
root / root
0644
udpsock.go
11.862 KB
4 Dec 2025 6.06 PM
root / root
0644
udpsock_plan9.go
4.639 KB
4 Dec 2025 6.06 PM
root / root
0644
udpsock_posix.go
7.526 KB
4 Dec 2025 6.06 PM
root / root
0644
unixsock.go
10.252 KB
4 Dec 2025 6.06 PM
root / root
0644
unixsock_plan9.go
1.243 KB
4 Dec 2025 6.06 PM
root / root
0644
unixsock_posix.go
6.642 KB
4 Dec 2025 6.06 PM
root / root
0644
unixsock_readmsg_cloexec.go
0.639 KB
4 Dec 2025 6.06 PM
root / root
0644
unixsock_readmsg_cmsg_cloexec.go
0.324 KB
4 Dec 2025 6.06 PM
root / root
0644
unixsock_readmsg_other.go
0.269 KB
4 Dec 2025 6.06 PM
root / root
0644
writev_unix.go
0.65 KB
4 Dec 2025 6.06 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF