summaryrefslogtreecommitdiff
path: root/src/node_http2.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_http2.cc')
-rw-r--r--src/node_http2.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/node_http2.cc b/src/node_http2.cc
index 9a0cc4ae19..09662b08a4 100644
--- a/src/node_http2.cc
+++ b/src/node_http2.cc
@@ -98,6 +98,10 @@ Http2Scope::~Http2Scope() {
Http2Options::Http2Options(Environment* env, nghttp2_session_type type) {
nghttp2_option_new(&options_);
+ // Make sure closed connections aren't kept around, taking up memory.
+ // Note that this breaks the priority tree, which we don't use.
+ nghttp2_option_set_no_closed_streams(options_, 1);
+
// We manually handle flow control within a session in order to
// implement backpressure -- that is, we only send WINDOW_UPDATE
// frames to the remote peer as data is actually consumed by user