mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
Make max flow control windows configurable
This commit is contained in:
parent
93e2f751b5
commit
89f96d1e89
9 changed files with 108 additions and 33 deletions
12
interface.go
12
interface.go
|
@ -80,6 +80,18 @@ type Config struct {
|
|||
// If not set, it verifies that the address matches, and that the STK was issued within the last 24 hours
|
||||
// This option is only valid for the server.
|
||||
AcceptSTK func(clientAddr net.Addr, stk *STK) bool
|
||||
// MaxReceiveStreamFlowControlWindowServer is the maximum stream-level flow control window for receiving data, for the server
|
||||
// If this value is zero, the timeout is set to protocol.DefaultMaxReceiveStreamFlowControlWindowServer
|
||||
MaxReceiveStreamFlowControlWindowServer protocol.ByteCount
|
||||
// MaxReceiveConnectionFlowControlWindowServer is the connection-level flow control window for receiving data, for the server
|
||||
// If this value is zero, the timeout is set to protocol.DefaultMaxReceiveConnectionFlowControlWindowServer
|
||||
MaxReceiveConnectionFlowControlWindowServer protocol.ByteCount
|
||||
// MaxReceiveStreamFlowControlWindowClient is the maximum stream-level flow control window for receiving data, for the client
|
||||
// If this value is zero, the timeout is set to protocol.DefaultMaxReceiveStreamFlowControlWindowClient
|
||||
MaxReceiveStreamFlowControlWindowClient protocol.ByteCount
|
||||
// MaxReceiveConnectionFlowControlWindowClient is the connection-level flow control window for receiving data, for the client
|
||||
// If this value is zero, the timeout is set to protocol.DefaultMaxReceiveConnectionFlowControlWindowClient
|
||||
MaxReceiveConnectionFlowControlWindowClient protocol.ByteCount
|
||||
}
|
||||
|
||||
// A Listener for incoming QUIC connections
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue