mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
fix documentation of the default MaxReceiveStreamFlowControlWindow
This commit is contained in:
parent
9b627ac93d
commit
be4dc49114
2 changed files with 2 additions and 2 deletions
|
@ -246,7 +246,7 @@ type Config struct {
|
||||||
// otherwise the token is associated with the server's IP address.
|
// otherwise the token is associated with the server's IP address.
|
||||||
TokenStore TokenStore
|
TokenStore TokenStore
|
||||||
// MaxReceiveStreamFlowControlWindow is the maximum stream-level flow control window for receiving data.
|
// MaxReceiveStreamFlowControlWindow is the maximum stream-level flow control window for receiving data.
|
||||||
// If this value is zero, it will default to 1 MB for the server and 6 MB for the client.
|
// If this value is zero, it will default to 6 MB.
|
||||||
MaxReceiveStreamFlowControlWindow uint64
|
MaxReceiveStreamFlowControlWindow uint64
|
||||||
// MaxReceiveConnectionFlowControlWindow is the connection-level flow control window for receiving data.
|
// MaxReceiveConnectionFlowControlWindow is the connection-level flow control window for receiving data.
|
||||||
// If this value is zero, it will default to 1.5 MB for the server and 15 MB for the client.
|
// If this value is zero, it will default to 1.5 MB for the server and 15 MB for the client.
|
||||||
|
|
|
@ -27,7 +27,7 @@ const InitialMaxStreamData = (1 << 10) * 512 // 512 kb
|
||||||
// InitialMaxData is the connection-level flow control window for receiving data
|
// InitialMaxData is the connection-level flow control window for receiving data
|
||||||
const InitialMaxData = ConnectionFlowControlMultiplier * InitialMaxStreamData
|
const InitialMaxData = ConnectionFlowControlMultiplier * InitialMaxStreamData
|
||||||
|
|
||||||
// DefaultMaxReceiveStreamFlowControlWindow is the default maximum stream-level flow control window for receiving data, for the server
|
// DefaultMaxReceiveStreamFlowControlWindow is the default maximum stream-level flow control window for receiving data
|
||||||
const DefaultMaxReceiveStreamFlowControlWindow = 6 * (1 << 20) // 6 MB
|
const DefaultMaxReceiveStreamFlowControlWindow = 6 * (1 << 20) // 6 MB
|
||||||
|
|
||||||
// DefaultMaxReceiveConnectionFlowControlWindow is the default connection-level flow control window for receiving data, for the server
|
// DefaultMaxReceiveConnectionFlowControlWindow is the default connection-level flow control window for receiving data, for the server
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue