diff options
| author | hozan23 <hozan23@proton.me> | 2023-11-28 22:41:33 +0300 |
|---|---|---|
| committer | hozan23 <hozan23@proton.me> | 2023-11-28 22:41:33 +0300 |
| commit | 98a1de91a2dae06323558422c239e5a45fc86e7b (patch) | |
| tree | 38c640248824fcb3b4ca5ba12df47c13ef26ccda /p2p/src/connection.rs | |
| parent | ca2a5f8bbb6983d9555abd10eaaf86950b794957 (diff) | |
implement TLS for inbound and outbound connections
Diffstat (limited to 'p2p/src/connection.rs')
| -rw-r--r-- | p2p/src/connection.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/src/connection.rs b/p2p/src/connection.rs index 8ec2617..e0a3bbd 100644 --- a/p2p/src/connection.rs +++ b/p2p/src/connection.rs @@ -2,7 +2,7 @@ use std::{collections::VecDeque, fmt, sync::Arc}; use smol::{channel::Sender, lock::Mutex}; -use karyons_core::async_utils::CondVar; +use karyons_core::async_util::CondVar; use karyons_net::Conn; use crate::Result; |
