Create HTTP/3 unidirectional stream only when stream limit allows.
gfe-relnote: n/a, v99 only.
PiperOrigin-RevId: 260017164
Change-Id: Id0a7d8867eee873b182b78f1e30475f0c87d9fe0
diff --git a/quic/core/http/quic_spdy_session.h b/quic/core/http/quic_spdy_session.h
index 3fe5c66..1ce8166 100644
--- a/quic/core/http/quic_spdy_session.h
+++ b/quic/core/http/quic_spdy_session.h
@@ -175,6 +175,10 @@
// Returns true if the session has active request streams.
bool HasActiveRequestStreams() const;
+ // Initialze HTTP/3 unidirectional streams if |unidirectional| is true and
+ // those streams are not initialized yet.
+ void OnCanCreateNewOutgoingStream(bool unidirectional) override;
+
protected:
// Override CreateIncomingStream(), CreateOutgoingBidirectionalStream() and
// CreateOutgoingUnidirectionalStream() with QuicSpdyStream return type to
@@ -261,6 +265,9 @@
// Called when the size of the compressed frame payload is available.
void OnCompressedFrameSize(size_t frame_len);
+ // Initializes HTTP/3 unidirectional streams if not yet initialzed.
+ void MaybeInitializeHttp3UnidirectionalStreams();
+
std::unique_ptr<QpackEncoder> qpack_encoder_;
std::unique_ptr<QpackDecoder> qpack_decoder_;