mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 05:07:36 +03:00
fix reading of the EOF in the HTTP/3 server
Read([]byte{}) returns immediately, whereas Read([]byte{0}) blocks until the stream is actually closed. This make as difference if the STREAM frame with the FIN is received after the HTTP handler returned.
This commit is contained in:
parent
c135b4f1e3
commit
7d701893a2
1 changed files with 1 additions and 1 deletions
|
@ -191,7 +191,7 @@ func (s *Server) handleRequest(str quic.Stream, decoder *qpack.Decoder) error {
|
||||||
}()
|
}()
|
||||||
handler.ServeHTTP(responseWriter, req)
|
handler.ServeHTTP(responseWriter, req)
|
||||||
// read the eof
|
// read the eof
|
||||||
if _, err = str.Read([]byte{}); err == io.EOF {
|
if _, err = str.Read([]byte{0}); err == io.EOF {
|
||||||
readEOF = true
|
readEOF = true
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue