refactor HTTP/3 stream handling to use a dedicated stream

Reading from and writing onto this stream applies HTTP/3 DATA framing.
This commit is contained in:
Marten Seemann 2022-05-29 19:22:05 +02:00
parent ccf897e519
commit 04d46526c7
10 changed files with 344 additions and 360 deletions

View file

@ -549,7 +549,7 @@ func (s *Server) handleRequest(conn quic.Connection, str quic.Stream, decoder *q
}
req.RemoteAddr = conn.RemoteAddr().String()
req.Body = newRequestBody(str, onFrameError)
req.Body = newRequestBody(newStream(str, onFrameError))
if s.logger.Debug() {
s.logger.Infof("%s %s%s, on stream %d", req.Method, req.Host, req.RequestURI, str.StreamID())