Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Sol (0.15 sec)

  1. internal/http/dial_linux.go

    			// got socket file descriptor to set parameters.
    			fd := int(fdPtr)
    
    			_ = unix.SetsockoptInt(fd, unix.SOL_SOCKET, unix.SO_REUSEADDR, 1)
    
    			_ = unix.SetsockoptInt(fd, unix.SOL_SOCKET, unix.SO_REUSEPORT, 1)
    
    			// Enable TCP open
    			// https://lwn.net/Articles/508865/ - 16k queue size.
    			_ = syscall.SetsockoptInt(fd, syscall.SOL_TCP, unix.TCP_FASTOPEN, 16*1024)
    
    			// Enable TCP fast connect
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed Jun 07 16:53:05 GMT 2023
    - 4.4K bytes
    - Viewed (3)
  2. internal/http/check_port_linux.go

    				if opts.Interface != "" {
    					// When interface is specified look for specifically port availability on
    					// the specified interface if any.
    					_ = syscall.SetsockoptString(int(fdPtr), syscall.SOL_SOCKET, syscall.SO_BINDTODEVICE, opts.Interface)
    				}
    			})
    			return nil
    		},
    	}
    
    	ctx, cancel := context.WithTimeout(context.Background(), time.Second)
    	defer cancel()
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Wed May 03 21:12:25 GMT 2023
    - 1.9K bytes
    - Viewed (0)
  3. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SOCK_NONBLOCK ideal-int #53466
    pkg syscall (freebsd-riscv64), const SOCK_RDM = 4 #53466
    pkg syscall (freebsd-riscv64), const SOCK_RDM ideal-int #53466
    pkg syscall (freebsd-riscv64), const SOL_SOCKET = 65535 #53466
    pkg syscall (freebsd-riscv64), const SOMAXCONN = 128 #53466
    pkg syscall (freebsd-riscv64), const SO_ACCEPTCONN = 2 #53466
    pkg syscall (freebsd-riscv64), const SO_ACCEPTCONN ideal-int #53466
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  4. api/go1.16.txt

    pkg syscall (darwin-arm64), const SOCK_MAXADDRLEN ideal-int
    pkg syscall (darwin-arm64), const SOCK_RDM = 4
    pkg syscall (darwin-arm64), const SOCK_RDM ideal-int
    pkg syscall (darwin-arm64), const SOL_SOCKET = 65535
    pkg syscall (darwin-arm64), const SOMAXCONN = 128
    pkg syscall (darwin-arm64), const SO_ACCEPTCONN = 2
    pkg syscall (darwin-arm64), const SO_ACCEPTCONN ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  5. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SOCK_NONBLOCK ideal-int
    pkg syscall (freebsd-arm64), const SOCK_RDM = 4
    pkg syscall (freebsd-arm64), const SOCK_RDM ideal-int
    pkg syscall (freebsd-arm64), const SOL_SOCKET = 65535
    pkg syscall (freebsd-arm64), const SOMAXCONN = 128
    pkg syscall (freebsd-arm64), const SYS___ACL_ACLCHECK_FD = 354
    pkg syscall (freebsd-arm64), const SYS___ACL_ACLCHECK_FD ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
Back to top