Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for DynamicRecordSizingDisabled (0.36 sec)

  1. src/crypto/tls/tls_test.go

    			serverConfig := testConfig.Clone()
    			serverConfig.DynamicRecordSizingDisabled = dynamicRecordSizingDisabled
    			srv := Server(&slowConn{sconn, bps}, serverConfig)
    			if err := srv.Handshake(); err != nil {
    				panic(fmt.Errorf("handshake: %v", err))
    			}
    			io.Copy(srv, srv)
    		}
    	}()
    
    	clientConfig := testConfig.Clone()
    	clientConfig.DynamicRecordSizingDisabled = dynamicRecordSizingDisabled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  2. src/crypto/tls/conn_test.go

    func runDynamicRecordSizingTest(t *testing.T, config *Config) {
    	clientConn, serverConn := localPipe(t)
    
    	serverConfig := config.Clone()
    	serverConfig.DynamicRecordSizingDisabled = false
    	tlsConn := Server(serverConn, serverConfig)
    
    	handshakeDone := make(chan struct{})
    	recordSizesChan := make(chan []int, 1)
    	defer func() { <-recordSizesChan }() // wait for the goroutine to exit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	// or use the GODEBUG=tlskyber=0 environment variable.
    	CurvePreferences []CurveID
    
    	// DynamicRecordSizingDisabled disables adaptive sizing of TLS records.
    	// When true, the largest possible TLS record size is always used. When
    	// false, the size of TLS records may be adjusted in an attempt to
    	// improve latency.
    	DynamicRecordSizingDisabled bool
    
    	// Renegotiation controls what types of renegotiation are supported.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. api/go1.7.txt

    pkg crypto/tls, const RenegotiateNever RenegotiationSupport
    pkg crypto/tls, const RenegotiateOnceAsClient = 1
    pkg crypto/tls, const RenegotiateOnceAsClient RenegotiationSupport
    pkg crypto/tls, type Config struct, DynamicRecordSizingDisabled bool
    pkg crypto/tls, type Config struct, Renegotiation RenegotiationSupport
    pkg crypto/tls, type RenegotiationSupport int
    pkg crypto/x509, func SystemCertPool() (*CertPool, error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    // In the interests of simplicity and determinism, this code does not attempt
    // to reset the record size once the connection is idle, however.
    func (c *Conn) maxPayloadSizeForWrite(typ recordType) int {
    	if c.config.DynamicRecordSizingDisabled || typ != recordTypeApplicationData {
    		return maxPlaintext
    	}
    
    	if c.bytesSent >= recordSizeBoostThreshold {
    		return maxPlaintext
    	}
    
    	// Subtract TLS overheads to get the maximum payload size.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Config.CipherSuites", Field, 0},
    		{"Config.ClientAuth", Field, 0},
    		{"Config.ClientCAs", Field, 0},
    		{"Config.ClientSessionCache", Field, 3},
    		{"Config.CurvePreferences", Field, 3},
    		{"Config.DynamicRecordSizingDisabled", Field, 7},
    		{"Config.GetCertificate", Field, 4},
    		{"Config.GetClientCertificate", Field, 8},
    		{"Config.GetConfigForClient", Field, 8},
    		{"Config.InsecureSkipVerify", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top