do not embed http.Server in http3.Server (#3397)

This change removes the embedded http.Server struct from http3.Server.
It slightly changes some error behavior, in particular, it mandates
TLSConfig for methods that create QUIC listeners.

Before this change, only Addr, TLSConfig, Handler and MaxHeaderBytes
options were used from the http.Server. These are now defined directly
in http3.Server with an improved documentation.
This commit is contained in:
Ivan Trubach 2022-05-20 12:53:23 +03:00 committed by GitHub
parent 60bbe92194
commit 0ec8ee3cff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 98 additions and 74 deletions

View file

@ -185,7 +185,8 @@ func main() {
err = http3.ListenAndServe(bCap, certFile, keyFile, handler)
} else {
server := http3.Server{
Server: &http.Server{Handler: handler, Addr: bCap},
Handler: handler,
Addr: bCap,
QuicConfig: quicConf,
}
err = server.ListenAndServeTLS(testdata.GetCertificatePaths())