From c82d3e554ba34305fa7ef759c830a74f4ba9559b Mon Sep 17 00:00:00 2001 From: Mathias Hall-Andersen Date: Sun, 6 Oct 2019 13:33:15 +0200 Subject: Restructure dummy implementations --- src/constants.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/constants.rs') diff --git a/src/constants.rs b/src/constants.rs index c4e3ae7..72de8d9 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -16,3 +16,5 @@ pub const TIMER_MAX_DURATION: Duration = Duration::from_secs(200); pub const TIMERS_TICK: Duration = Duration::from_millis(100); pub const TIMERS_SLOTS: usize = (TIMER_MAX_DURATION.as_micros() / TIMERS_TICK.as_micros()) as usize; pub const TIMERS_CAPACITY: usize = 1024; + +pub const MESSAGE_PADDING_MULTIPLE: usize = 16; -- cgit v1.2.3-59-g8ed1b