mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
add a stream ID getter function to the responseWriter
This commit is contained in:
parent
9c8cdeda57
commit
eddb2b819a
1 changed files with 4 additions and 0 deletions
|
@ -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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue