blob: 8de4dee0dcb02ebae5438514837280bed829f682 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
use backoff::ExponentialBackoff;
use std::time::Duration;
// FIXME: Determine reasonable size
/// UDP MTU. Currently far larger than necessary
pub const UDP_BUFFER_SIZE: usize = 2048;
pub const UDP_SENDQ_SIZE: usize = 1024;
pub const UDP_TIMEOUT: u64 = 60;
pub fn listen_backoff() -> ExponentialBackoff {
ExponentialBackoff {
max_elapsed_time: None,
max_interval: Duration::from_secs(1),
..Default::default()
}
}
pub fn run_control_chan_backoff() -> ExponentialBackoff {
ExponentialBackoff {
randomization_factor: 0.1,
max_elapsed_time: None,
max_interval: Duration::from_secs(1),
..Default::default()
}
}
|