summaryrefslogtreecommitdiff
path: root/src/node_http2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_http2.h')
-rw-r--r--src/node_http2.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/node_http2.h b/src/node_http2.h
index 824084d0ba..e0a93c8f0f 100644
--- a/src/node_http2.h
+++ b/src/node_http2.h
@@ -9,6 +9,7 @@
#include "stream_base-inl.h"
#include "string_bytes.h"
+#include <algorithm>
#include <queue>
namespace node {
@@ -803,6 +804,12 @@ class Http2Session : public AsyncWrap, public StreamListener {
pending_rst_streams_.emplace_back(stream_id);
}
+ inline bool HasPendingRstStream(int32_t stream_id) {
+ return pending_rst_streams_.end() != std::find(pending_rst_streams_.begin(),
+ pending_rst_streams_.end(),
+ stream_id);
+ }
+
// Handle reads/writes from the underlying network transport.
void OnStreamRead(ssize_t nread, const uv_buf_t& buf) override;
void OnStreamAfterWrite(WriteWrap* w, int status) override;