Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2020-03-03 04:27:06 +0300
committerJames M Snell <jasnell@gmail.com>2020-03-06 18:19:12 +0300
commit434d39dd670845cafd122fadb0a75d72c1658b05 (patch)
tree878d76ff4b659bcb227de9f72a12421aaf133093 /node.gyp
parentb6cd2155c3442a8c56aa6f6ffa0dc9b6a308a7b1 (diff)
src,http2: introduce node_http_common
The nghttp2 and nghttp3 (used in the QUIC implementation) share nearly identical structs for header handling. However, they differ enough that they need to be handled slightly different in each case. This PR includes some elements introduced in the QUIC PR separated out to make them independently reviewable, and updates the http2 implementation to use the shared utilities. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/32069 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'node.gyp')
-rw-r--r--node.gyp2
1 files changed, 2 insertions, 0 deletions
diff --git a/node.gyp b/node.gyp
index 790fd32e4db..b8731b21d5f 100644
--- a/node.gyp
+++ b/node.gyp
@@ -665,6 +665,8 @@
'src/node_errors.h',
'src/node_file.h',
'src/node_file-inl.h',
+ 'src/node_http_common.h',
+ 'src/node_http_common-inl.h',
'src/node_http2.h',
'src/node_http2_state.h',
'src/node_i18n.h',