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