Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for DynamicRecordSizingDisabled (0.48 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/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)
  3. 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)
  4. 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