diff options
author | Satya Rohith <me@satyarohith.com> | 2021-09-20 19:35:23 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-20 19:35:23 +0530 |
commit | 3708cbc6000dac17a26e07e81e02bcbebffe3d0f (patch) | |
tree | 1745b5e15c674f89439fd2e99e90699cf5a5055c /ext/net/ops_tls.rs | |
parent | 269bf380e0fb2e532e7340c4ba64d4eaa4d5d45e (diff) |
refactor(ext/net): make op_connect & op_connect_tls public (#12150)
Diffstat (limited to 'ext/net/ops_tls.rs')
-rw-r--r-- | ext/net/ops_tls.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/net/ops_tls.rs b/ext/net/ops_tls.rs index 58b6147cb..89879da68 100644 --- a/ext/net/ops_tls.rs +++ b/ext/net/ops_tls.rs @@ -751,7 +751,7 @@ where }) } -async fn op_connect_tls<NP>( +pub async fn op_connect_tls<NP>( state: Rc<RefCell<OpState>>, args: ConnectTlsArgs, _: (), |