add a stream ID getter function to the body

This commit is contained in:
Marten Seemann 2022-03-26 12:21:23 +01:00
parent eddb2b819a
commit 448e8bcf05

View file

@ -120,6 +120,10 @@ func (r *body) requestDone() {
r.reqDoneClosed = true
}
func (r *body) StreamID() quic.StreamID {
return r.str.StreamID()
}
func (r *body) Close() error {
r.requestDone()
// If the EOF was read, CancelRead() is a no-op.