Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for tcp (0.18 sec)

  1. doc/next/6-stdlib/99-minor/net/62254.md

    The new type [KeepAliveConfig] permits fine-tuning the keep-alive
    options for TCP connections, via a new [TCPConn.SetKeepAliveConfig]
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Apr 12 20:57:18 GMT 2024
    - 205 bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const TCP_KEEPINTVL = 257
    pkg syscall (darwin-arm64), const TCP_KEEPINTVL ideal-int
    pkg syscall (darwin-arm64), const TCP_MAXHLEN = 60
    pkg syscall (darwin-arm64), const TCP_MAXHLEN ideal-int
    pkg syscall (darwin-arm64), const TCP_MAXOLEN = 40
    pkg syscall (darwin-arm64), const TCP_MAXOLEN ideal-int
    pkg syscall (darwin-arm64), const TCP_MAXSEG = 2
    pkg syscall (darwin-arm64), const TCP_MAXSEG ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const TCP_KEEPIDLE = 256
    pkg syscall (freebsd-arm64), const TCP_KEEPIDLE ideal-int
    pkg syscall (freebsd-arm64), const TCP_KEEPINIT = 128
    pkg syscall (freebsd-arm64), const TCP_KEEPINIT ideal-int
    pkg syscall (freebsd-arm64), const TCP_KEEPINTVL = 512
    pkg syscall (freebsd-arm64), const TCP_KEEPINTVL ideal-int
    pkg syscall (freebsd-arm64), const TCP_MAX_SACK = 4
    pkg syscall (freebsd-arm64), const TCP_MAX_SACK ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  4. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const TCP_MD5SIG ideal-int #53466
    pkg syscall (freebsd-riscv64), const TCP_MINMSS = 216 #53466
    pkg syscall (freebsd-riscv64), const TCP_MINMSS ideal-int #53466
    pkg syscall (freebsd-riscv64), const TCP_MSS = 536 #53466
    pkg syscall (freebsd-riscv64), const TCP_MSS ideal-int #53466
    pkg syscall (freebsd-riscv64), const TCP_NOOPT = 8 #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg syscall (freebsd-386-cgo), const TCP_MAXHLEN = 60
    pkg syscall (freebsd-386-cgo), const TCP_MAXOLEN = 40
    pkg syscall (freebsd-386-cgo), const TCP_MAXSEG = 2
    pkg syscall (freebsd-386-cgo), const TCP_MAXWIN = 65535
    pkg syscall (freebsd-386-cgo), const TCP_MAX_SACK = 4
    pkg syscall (freebsd-386-cgo), const TCP_MAX_WINSHIFT = 14
    pkg syscall (freebsd-386-cgo), const TCP_MD5SIG = 16
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  6. doc/godebug.md

    forms, controlled by the
    [`multipartmaxheaders` and `multipartmaxparts` settings](/pkg/mime/multipart#hdr-Limits)
    respectively.
    This behavior was backported to Go 1.19.8+ and Go 1.20.3+.
    
    Go 1.21 adds the support of Multipath TCP but it is only used if the application
    explicitly asked for it. This behavior can be controlled by the
    [`multipathtcp` setting](/pkg/net#Dialer.SetMultipathTCP).
    
    There is no plan to remove any of these settings.
    
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  7. misc/ios/go_ios_exec.go

    	closer := func() {
    		cmd.Process.Kill()
    		<-errChan
    	}
    	// Dial localhost:3222 to ensure the proxy is ready.
    	delay := time.Second / 4
    	for attempt := 0; attempt < 5; attempt++ {
    		conn, err := net.DialTimeout("tcp", "localhost:3222", 5*time.Second)
    		if err == nil {
    			conn.Close()
    			return closer, nil
    		}
    		select {
    		case <-time.After(delay):
    			delay *= 2
    		case err := <-errChan:
    			return nil, err
    		}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
Back to top