summaryrefslogtreecommitdiff
path: root/ext/net/ops_tls.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-01-14 18:06:26 +0100
committerGitHub <noreply@github.com>2024-01-14 17:06:26 +0000
commitf3bb0a1a0e5ee3335d3c45db2be285791c7516cf (patch)
tree446a7ba533c7e55a22ce4370be97f99d7cdcb7ba /ext/net/ops_tls.rs
parentc2127a86cb337149c7fb0589553534dc7fd6b807 (diff)
feat: stabilize Deno.connectTls options and Deno.TlsConn.handshake (#21889)
Diffstat (limited to 'ext/net/ops_tls.rs')
-rw-r--r--ext/net/ops_tls.rs7
1 files changed, 0 insertions, 7 deletions
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::<UnsafelyIgnoreCertificateErrors>()
.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::<NP>();