mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
http3: fix listening on both QUIC and TCP (#3465)
This commit is contained in:
parent
7da024da5a
commit
dd521c0573
1 changed files with 11 additions and 10 deletions
|
@ -709,19 +709,20 @@ func ListenAndServe(addr, certFile, keyFile string, handler http.Handler) error
|
||||||
tlsConn := tls.NewListener(tcpConn, config)
|
tlsConn := tls.NewListener(tcpConn, config)
|
||||||
defer tlsConn.Close()
|
defer tlsConn.Close()
|
||||||
|
|
||||||
// Start the servers
|
|
||||||
httpServer := &http.Server{}
|
|
||||||
quicServer := &Server{
|
|
||||||
TLSConfig: config,
|
|
||||||
}
|
|
||||||
|
|
||||||
if handler == nil {
|
if handler == nil {
|
||||||
handler = http.DefaultServeMux
|
handler = http.DefaultServeMux
|
||||||
}
|
}
|
||||||
httpServer.Handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
// Start the servers
|
||||||
quicServer.SetQuicHeaders(w.Header())
|
quicServer := &Server{
|
||||||
handler.ServeHTTP(w, r)
|
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)
|
hErr := make(chan error)
|
||||||
qErr := make(chan error)
|
qErr := make(chan error)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue