summaryrefslogtreecommitdiff
path: root/deps/nghttp2/lib/includes
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2018-10-05 13:09:10 -0700
committerJames M Snell <jasnell@gmail.com>2018-10-08 08:41:18 -0700
commit8290015d0a2f1a5d5947c31d6187b865fbe2ac9f (patch)
tree02246a8c6cd2377f3fff259eec50f22b4b5a0feb /deps/nghttp2/lib/includes
parent314c1fa5839559f29507e93a3b14fa4b4d380460 (diff)
downloadandroid-node-v8-8290015d0a2f1a5d5947c31d6187b865fbe2ac9f.tar.gz
android-node-v8-8290015d0a2f1a5d5947c31d6187b865fbe2ac9f.tar.bz2
android-node-v8-8290015d0a2f1a5d5947c31d6187b865fbe2ac9f.zip
deps: update nghttp2 to 1.34.0
Key new feature: RFC 8441 `:protocol` support PR-URL: https://github.com/nodejs/node/pull/23284 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'deps/nghttp2/lib/includes')
-rw-r--r--deps/nghttp2/lib/includes/nghttp2/nghttp2.h7
-rw-r--r--deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h4
2 files changed, 8 insertions, 3 deletions
diff --git a/deps/nghttp2/lib/includes/nghttp2/nghttp2.h b/deps/nghttp2/lib/includes/nghttp2/nghttp2.h
index 8c54b9c8cc..e7198b3d27 100644
--- a/deps/nghttp2/lib/includes/nghttp2/nghttp2.h
+++ b/deps/nghttp2/lib/includes/nghttp2/nghttp2.h
@@ -680,7 +680,12 @@ typedef enum {
/**
* SETTINGS_MAX_HEADER_LIST_SIZE
*/
- NGHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE = 0x06
+ NGHTTP2_SETTINGS_MAX_HEADER_LIST_SIZE = 0x06,
+ /**
+ * SETTINGS_ENABLE_CONNECT_PROTOCOL
+ * (`RFC 8441 <https://tools.ietf.org/html/rfc8441>`_)
+ */
+ NGHTTP2_SETTINGS_ENABLE_CONNECT_PROTOCOL = 0x08
} nghttp2_settings_id;
/* Note: If we add SETTINGS, update the capacity of
NGHTTP2_INBOUND_NUM_IV as well */
diff --git a/deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h b/deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h
index 1f1d4808ca..420adbd53d 100644
--- a/deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h
+++ b/deps/nghttp2/lib/includes/nghttp2/nghttp2ver.h
@@ -29,7 +29,7 @@
* @macro
* Version number of the nghttp2 library release
*/
-#define NGHTTP2_VERSION "1.33.0"
+#define NGHTTP2_VERSION "1.34.0"
/**
* @macro
@@ -37,6 +37,6 @@
* release. This is a 24 bit number with 8 bits for major number, 8 bits
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
*/
-#define NGHTTP2_VERSION_NUM 0x012100
+#define NGHTTP2_VERSION_NUM 0x012200
#endif /* NGHTTP2VER_H */