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/message.rs | |
| parent | ca2a5f8bbb6983d9555abd10eaaf86950b794957 (diff) | |
implement TLS for inbound and outbound connections
Diffstat (limited to 'p2p/src/message.rs')
| -rw-r--r-- | p2p/src/message.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/p2p/src/message.rs b/p2p/src/message.rs index 3779cc1..6b23322 100644 --- a/p2p/src/message.rs +++ b/p2p/src/message.rs @@ -4,7 +4,7 @@ use bincode::{Decode, Encode};  use karyons_net::{Addr, Port}; -use crate::{protocol::ProtocolID, routing_table::Entry, utils::VersionInt, PeerID}; +use crate::{protocol::ProtocolID, routing_table::Entry, version::VersionInt, PeerID};  /// The size of the message header, in bytes.  pub const MSG_HEADER_SIZE: usize = 6;  | 
