summaryrefslogtreecommitdiff
path: root/ext/node/ops/mod.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-09-15 21:51:25 +0200
committerGitHub <noreply@github.com>2023-09-15 21:51:25 +0200
commit5a1505db67d0326bf37b765c8a566584b44a2c1a (patch)
tree4f1cadc6bc85f8538cc0c21ebc7354e404d48bcf /ext/node/ops/mod.rs
parent11f0ccf8052065e37f92d8ba43e9624fcd3b9814 (diff)
feat(ext/node): http2.connect() API (#19671)
This commit improves compatibility of "node:http2" module by polyfilling "connect" method and "ClientHttp2Session" class. Basic operations like streaming, header and trailer handling are working correctly. Refing/unrefing is still a TODO and "npm:grpc-js/grpc" is not yet working correctly. --------- Co-authored-by: Matt Mastracci <matthew@mastracci.com>
Diffstat (limited to 'ext/node/ops/mod.rs')
-rw-r--r--ext/node/ops/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/node/ops/mod.rs b/ext/node/ops/mod.rs
index 22ad546e8..cf4abf3dd 100644
--- a/ext/node/ops/mod.rs
+++ b/ext/node/ops/mod.rs
@@ -2,6 +2,7 @@
pub mod crypto;
pub mod http;
+pub mod http2;
pub mod idna;
pub mod os;
pub mod require;