mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +03:00
Merge pull request #2145 from lucas-clemente/http3-no-server-bidi-streams
don't allow a HTTP/3 server to create bidirectional streams
This commit is contained in:
commit
03ab56330b
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