Don't immediately send heartbeat
All checks were successful
CI / Formatting (push) Successful in 1m11s

This commit is contained in:
Michael Bradley 2025-07-05 18:09:46 -04:00
parent 591cfee715
commit e58629c2f1
Signed by: MichaelBradley
SSH key fingerprint: SHA256:o/aaeYtRubILK7OYYjYP12DmU7BsPUhKji1AgaQ+ge4
5 changed files with 50 additions and 46 deletions

View file

@ -1,4 +1,5 @@
mod io;
mod packet;
mod peer;
mod plugin;
mod queues;
@ -7,7 +8,7 @@ mod thread;
#[allow(unused_imports)]
pub mod prelude {
pub use super::io::{InboundPacket, OutboundPacket, Packet};
pub use super::packet::{InboundPacket, OutboundPacket, Packet};
pub use super::peer::Peer;
pub use super::plugin::{NetIOPlugin, NetworkState};
}