mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
http3: ignore context after response when using DontCloseRequestStream (#3473)
This commit is contained in:
parent
f29dd273b4
commit
61ca8e89fe
4 changed files with 37 additions and 3 deletions
|
@ -110,7 +110,9 @@ func (r *hijackableBody) requestDone() {
|
|||
if r.reqDoneClosed || r.reqDone == nil {
|
||||
return
|
||||
}
|
||||
close(r.reqDone)
|
||||
if r.reqDone != nil {
|
||||
close(r.reqDone)
|
||||
}
|
||||
r.reqDoneClosed = true
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue