summaryrefslogtreecommitdiff
path: root/deps/nghttp2/lib/nghttp2_option.h
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2019-08-14 11:32:06 +0200
committerMichaƫl Zasso <targos@protonmail.com>2019-08-15 09:50:14 +0200
commitfd148d38d259fee8507cdb5c57dda82e1d1a4819 (patch)
treefc011db64224e9738cb288b65d52457c2a10f0bf /deps/nghttp2/lib/nghttp2_option.h
parent8ae79c952ba887a76b7f32d3b6974bbbeb731e59 (diff)
downloadandroid-node-v8-fd148d38d259fee8507cdb5c57dda82e1d1a4819.tar.gz
android-node-v8-fd148d38d259fee8507cdb5c57dda82e1d1a4819.tar.bz2
android-node-v8-fd148d38d259fee8507cdb5c57dda82e1d1a4819.zip
deps: update nghttp2 to 1.39.2
This includes mitigations for CVE-2019-9512/CVE-2019-9515. PR-URL: https://github.com/nodejs/node/pull/29122 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'deps/nghttp2/lib/nghttp2_option.h')
-rw-r--r--deps/nghttp2/lib/nghttp2_option.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/deps/nghttp2/lib/nghttp2_option.h b/deps/nghttp2/lib/nghttp2_option.h
index 29e72aa321..1f740aaa6e 100644
--- a/deps/nghttp2/lib/nghttp2_option.h
+++ b/deps/nghttp2/lib/nghttp2_option.h
@@ -66,6 +66,7 @@ typedef enum {
NGHTTP2_OPT_MAX_SEND_HEADER_BLOCK_LENGTH = 1 << 8,
NGHTTP2_OPT_MAX_DEFLATE_DYNAMIC_TABLE_SIZE = 1 << 9,
NGHTTP2_OPT_NO_CLOSED_STREAMS = 1 << 10,
+ NGHTTP2_OPT_MAX_OUTBOUND_ACK = 1 << 11,
} nghttp2_option_flag;
/**
@@ -81,6 +82,10 @@ struct nghttp2_option {
*/
size_t max_deflate_dynamic_table_size;
/**
+ * NGHTTP2_OPT_MAX_OUTBOUND_ACK
+ */
+ size_t max_outbound_ack;
+ /**
* Bitwise OR of nghttp2_option_flag to determine that which fields
* are specified.
*/