diff options
author | Matt Mastracci <matthew@mastracci.com> | 2024-04-08 15:01:02 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-08 15:01:02 -0600 |
commit | cb12a9350332860971387e3a1fb40dc77fa992d3 (patch) | |
tree | 287def7ddad815423f8bc4196a76f9546940435d /ext/net/lib.rs | |
parent | 3826598974efd44c9d3da7694c0a325b011bc20a (diff) |
refactor(ext/tls): use cppgc to deduplicate the tls key loading code (#23289)
Pass the certificates and key files as CPPGC objects.
Towards #23233
Diffstat (limited to 'ext/net/lib.rs')
-rw-r--r-- | ext/net/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/net/lib.rs b/ext/net/lib.rs index 675cffbe3..d6e1d9dc2 100644 --- a/ext/net/lib.rs +++ b/ext/net/lib.rs @@ -84,6 +84,9 @@ deno_core::extension!(deno_net, ops::op_set_nodelay, ops::op_set_keepalive, + ops_tls::op_tls_key_null, + ops_tls::op_tls_key_static, + ops_tls::op_tls_key_static_from_file<P>, ops_tls::op_tls_start<P>, ops_tls::op_net_connect_tls<P>, ops_tls::op_net_listen_tls<P>, |