add a stream ID getter function to the responseWriter

This commit is contained in:
Marten Seemann 2022-03-25 18:43:39 +01:00
parent 9c8cdeda57
commit eddb2b819a

View file

@ -119,6 +119,10 @@ func (w *responseWriter) DataStream() quic.Stream {
return w.stream
}
func (w *responseWriter) StreamID() quic.StreamID {
return w.stream.StreamID()
}
// copied from http2/http2.go
// bodyAllowedForStatus reports whether a given response status code
// permits a body. See RFC 2616, section 4.4.