mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
don't allow the server to create bidirectional streams
This commit is contained in:
parent
9e6bff0b98
commit
c41b2e3cdd
1 changed files with 4 additions and 1 deletions
|
@ -19,7 +19,10 @@ import (
|
|||
const defaultUserAgent = "quic-go HTTP/3"
|
||||
const defaultMaxResponseHeaderBytes = 10 * 1 << 20 // 10 MB
|
||||
|
||||
var defaultQuicConfig = &quic.Config{KeepAlive: true}
|
||||
var defaultQuicConfig = &quic.Config{
|
||||
MaxIncomingStreams: -1, // don't allow the server to create bidirectional streams
|
||||
KeepAlive: true,
|
||||
}
|
||||
|
||||
var dialAddr = quic.DialAddr
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue