diff options
author | hozan23 <hozan23@karyontech.net> | 2024-05-25 07:15:02 +0200 |
---|---|---|
committer | hozan23 <hozan23@karyontech.net> | 2024-05-25 07:15:02 +0200 |
commit | e022b2b77e3e98f0f444f637f96e74e6a6f990cf (patch) | |
tree | 1d599938f8d97eaa9a6cbdc8ff83eefeae966201 /p2p/src/peer | |
parent | 998568ab76cc8ba36fe47d5fca17bcc997aa391c (diff) |
p2p: rename connection.rs to conn_queue.rs
Diffstat (limited to 'p2p/src/peer')
-rw-r--r-- | p2p/src/peer/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/src/peer/mod.rs b/p2p/src/peer/mod.rs index f0f6f17..b4cfd3a 100644 --- a/p2p/src/peer/mod.rs +++ b/p2p/src/peer/mod.rs @@ -18,7 +18,7 @@ use karyon_core::{ use karyon_net::{Conn, Endpoint}; use crate::{ - connection::ConnDirection, + conn_queue::ConnDirection, message::{NetMsg, NetMsgCmd, ProtocolMsg, ShutdownMsg}, peer_pool::{ArcPeerPool, WeakPeerPool}, protocol::{Protocol, ProtocolEvent, ProtocolID}, |