mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
introduce a http3.RoundTripOpt to prevent closing of request stream (#3411)
This commit is contained in:
parent
6511723c28
commit
de5f08171b
8 changed files with 107 additions and 73 deletions
|
@ -38,7 +38,7 @@ func newRequestWriter(logger utils.Logger) *requestWriter {
|
|||
}
|
||||
}
|
||||
|
||||
func (w *requestWriter) WriteRequest(str quic.Stream, req *http.Request, gzip bool) error {
|
||||
func (w *requestWriter) WriteRequest(str quic.Stream, req *http.Request, dontCloseStr, gzip bool) error {
|
||||
buf := &bytes.Buffer{}
|
||||
if err := w.writeHeaders(buf, req, gzip); err != nil {
|
||||
return err
|
||||
|
@ -48,7 +48,9 @@ func (w *requestWriter) WriteRequest(str quic.Stream, req *http.Request, gzip bo
|
|||
}
|
||||
// TODO: add support for trailers
|
||||
if req.Body == nil {
|
||||
str.Close()
|
||||
if !dontCloseStr {
|
||||
str.Close()
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
|
@ -84,7 +86,9 @@ func (w *requestWriter) WriteRequest(str quic.Stream, req *http.Request, gzip bo
|
|||
return
|
||||
}
|
||||
}
|
||||
str.Close()
|
||||
if !dontCloseStr {
|
||||
str.Close()
|
||||
}
|
||||
}()
|
||||
|
||||
return nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue