diff options
Diffstat (limited to 'ext/node/lib.rs')
-rw-r--r-- | ext/node/lib.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/node/lib.rs b/ext/node/lib.rs index c01785b95..fbc1c9ffd 100644 --- a/ext/node/lib.rs +++ b/ext/node/lib.rs @@ -243,6 +243,19 @@ 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<P>, + ops::http2::op_http2_connect, + ops::http2::op_http2_poll_client_connection, + ops::http2::op_http2_client_request, + ops::http2::op_http2_client_get_response, + ops::http2::op_http2_client_get_response_body_chunk, + ops::http2::op_http2_client_send_data, + ops::http2::op_http2_client_end_stream, + ops::http2::op_http2_client_reset_stream, + ops::http2::op_http2_client_send_trailers, + ops::http2::op_http2_client_get_response_trailers, + ops::http2::op_http2_accept, + ops::http2::op_http2_listen, + ops::http2::op_http2_send_response, ops::os::op_node_os_get_priority<P>, ops::os::op_node_os_set_priority<P>, ops::os::op_node_os_username<P>, |