From c6ecf70a0963ce5cac67af97c55aa360a1d25c4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 30 Jul 2024 13:34:52 +0100 Subject: refactor(ext/node): create separate ops for node:http module (#24788) This commit duplicates ops from "ext/fetch" to "ext/node" to kick off a bigger rewrite of "node:http". Most of duplication is temporary and will be removed as these ops evolve. --- ext/node/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/node/lib.rs') diff --git a/ext/node/lib.rs b/ext/node/lib.rs index 8d6d76f09..899ffc44e 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -327,6 +327,8 @@ deno_core::extension!(deno_node, ops::zlib::brotli::op_brotli_decompress_stream, ops::zlib::brotli::op_brotli_decompress_stream_end, ops::http::op_node_http_request

, + ops::http::op_node_http_fetch_response_upgrade, + ops::http::op_node_http_fetch_send, ops::http2::op_http2_connect, ops::http2::op_http2_poll_client_connection, ops::http2::op_http2_client_request, -- cgit v1.2.3