summaryrefslogtreecommitdiff
path: root/ext/http
diff options
context:
space:
mode:
Diffstat (limited to 'ext/http')
-rw-r--r--ext/http/http_next.rs5
-rw-r--r--ext/http/lib.rs1
2 files changed, 6 insertions, 0 deletions
diff --git a/ext/http/http_next.rs b/ext/http/http_next.rs
index 019054894..e95839005 100644
--- a/ext/http/http_next.rs
+++ b/ext/http/http_next.rs
@@ -1078,6 +1078,11 @@ impl Resource for UpgradeStream {
}
}
+#[op(fast)]
+pub fn op_can_write_vectored(state: &mut OpState, rid: ResourceId) -> bool {
+ state.resource_table.get::<UpgradeStream>(rid).is_ok()
+}
+
#[op]
pub async fn op_raw_write_vectored(
state: Rc<RefCell<OpState>>,
diff --git a/ext/http/lib.rs b/ext/http/lib.rs
index 26cbffd1b..c33c1d15e 100644
--- a/ext/http/lib.rs
+++ b/ext/http/lib.rs
@@ -121,6 +121,7 @@ deno_core::extension!(
http_next::op_http_upgrade_websocket_next,
http_next::op_http_upgrade_raw,
http_next::op_raw_write_vectored,
+ http_next::op_can_write_vectored,
http_next::op_http_try_wait,
http_next::op_http_wait,
],