Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions perf.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ const ALPN = "perf"

var config = &quic.Config{
// use massive flow control windows here to make sure that flow control is not the limiting factor
MaxConnectionReceiveWindow: 1 << 30,
MaxStreamReceiveWindow: 1 << 30,
Tracer: qlog.DefaultConnectionTracer,
InitialStreamReceiveWindow: 1 << 20,
InitialConnectionReceiveWindow: 1 << 20,
MaxConnectionReceiveWindow: 1 << 30,
MaxStreamReceiveWindow: 1 << 30,
Tracer: qlog.DefaultConnectionTracer,
}
Loading