summaryrefslogtreecommitdiffstats
path: root/src/timers/peer.rs
blob: 9859e6b6fa197b9f3c715fafb0539126234be084 (plain) (blame)
1
2
3
4
5
6
7
8
use super::timer::Timer;

struct PeerTimers {
    pub send_keepalive: Timer,
    pub new_handshake: Timer,
    pub zero_key_material: Timer,
    pub persistent_keepalive: Timer,
}