From f3bb0a1a0e5ee3335d3c45db2be285791c7516cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sun, 14 Jan 2024 18:06:26 +0100 Subject: feat: stabilize Deno.connectTls options and Deno.TlsConn.handshake (#21889) --- ext/net/ops_tls.rs | 7 ------- 1 file changed, 7 deletions(-) (limited to 'ext/net/ops_tls.rs') diff --git a/ext/net/ops_tls.rs b/ext/net/ops_tls.rs index a36443977..d16bface4 100644 --- a/ext/net/ops_tls.rs +++ b/ext/net/ops_tls.rs @@ -261,13 +261,6 @@ where .try_borrow::() .and_then(|it| it.0.clone()); - if args.cert_chain.is_some() { - super::check_unstable(&state.borrow(), "ConnectTlsOptions.certChain"); - } - if args.private_key.is_some() { - super::check_unstable(&state.borrow(), "ConnectTlsOptions.privateKey"); - } - { let mut s = state.borrow_mut(); let permissions = s.borrow_mut::(); -- cgit v1.2.3