Skip to content

Commit

Permalink
Removing public access to keep-alive
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-summers committed Oct 8, 2021
1 parent d706e62 commit 0a3c690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/session_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const PING_TIMEOUT: Seconds = Seconds(5);

pub struct SessionState<Clock: embedded_time::Clock, const MSG_SIZE: usize, const MSG_COUNT: usize>
{
pub keep_alive_interval: Option<Milliseconds<u32>>,
keep_alive_interval: Option<Milliseconds<u32>>,
ping_timeout: Option<Instant<Clock>>,
next_ping: Option<Instant<Clock>>,
pub broker: IpAddr,
Expand Down

0 comments on commit 0a3c690

Please sign in to comment.