http3: fix listening on both QUIC and TCP (#3465)

This commit is contained in:
mojatter 2022-08-21 00:56:28 +09:00 committed by GitHub
parent 7da024da5a
commit dd521c0573
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -709,19 +709,20 @@ func ListenAndServe(addr, certFile, keyFile string, handler http.Handler) error
tlsConn := tls.NewListener(tcpConn, config)
defer tlsConn.Close()
// Start the servers
httpServer := &http.Server{}
quicServer := &Server{
TLSConfig: config,
}
if handler == nil {
handler = http.DefaultServeMux
}
httpServer.Handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
quicServer.SetQuicHeaders(w.Header())
handler.ServeHTTP(w, r)
})
// Start the servers
quicServer := &Server{
TLSConfig: config,
Handler: handler,
}
httpServer := &http.Server{
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
quicServer.SetQuicHeaders(w.Header())
handler.ServeHTTP(w, r)
}),
}
hErr := make(chan error)
qErr := make(chan error)