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
path: root/lib
diff options
context:
space:
mode:
authorDaeyeon Jeong <daeyeon.dev@gmail.com>2022-05-24 14:29:56 +0300
committerBryan English <bryan@bryanenglish.com>2022-05-30 19:33:54 +0300
commita07f5f28f31281c70095b0ff765e5930bad60c79 (patch)
treeb496808980f72011c3f359110f1ed2b69a97d21e /lib
parent3082c75efd5dc12611347668a551a21d0159cd92 (diff)
http2: improve tests and docs
This commit documents the event parameters and `http2stream.respond`, and adds some tests to ensure the actual behaviors are aligned with the docs. Testing the 'Http2Server.sessionError' event is added by updating `test/parallel/test-http2-options-max-headers-exceeds-nghttp2.js`. The event seemingly has not been tested so far. `ServerHttp2Session` is exported to validate the `session` event and the `sessionError` event. Signed-off-by: Daeyeon Jeong daeyeon.dev@gmail.com PR-URL: https://github.com/nodejs/node/pull/42858 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/internal/http2/core.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/internal/http2/core.js b/lib/internal/http2/core.js
index 9d8d6bc2c86..871794f51bb 100644
--- a/lib/internal/http2/core.js
+++ b/lib/internal/http2/core.js
@@ -3401,6 +3401,7 @@ module.exports = {
sensitiveHeaders: kSensitiveHeaders,
Http2Session,
Http2Stream,
+ ServerHttp2Session,
Http2ServerRequest,
Http2ServerResponse
};