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:
Marten Seemann 2019-09-27 09:42:52 +07:00 committed by GitHub
commit 03ab56330b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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