From eddb2b819a703c14bdc1ad6cd15d737c6ed8e85a Mon Sep 17 00:00:00 2001 From: Marten Seemann Date: Fri, 25 Mar 2022 18:43:39 +0100 Subject: [PATCH] add a stream ID getter function to the responseWriter --- http3/response_writer.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/http3/response_writer.go b/http3/response_writer.go index 0a42518c..3b81f0a1 100644 --- a/http3/response_writer.go +++ b/http3/response_writer.go @@ -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.