mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
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:
parent
60bbe92194
commit
0ec8ee3cff
6 changed files with 98 additions and 74 deletions
|
@ -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())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue