diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-14 18:06:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-14 17:06:26 +0000 |
commit | f3bb0a1a0e5ee3335d3c45db2be285791c7516cf (patch) | |
tree | 446a7ba533c7e55a22ce4370be97f99d7cdcb7ba /ext/net/ops_tls.rs | |
parent | c2127a86cb337149c7fb0589553534dc7fd6b807 (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.rs | 7 |
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>(); |