aboutsummaryrefslogtreecommitdiffstats
path: root/src/wireguard/router/constants.rs
blob: 82360bb57bd4392dae7aeff43ed1e9f9555d635a (plain) (blame)
1
2
3
4
5
6
7
8
9
// WireGuard semantics constants

pub const MAX_STAGED_PACKETS: usize = 128;

// performance constants

pub const PARALLEL_QUEUE_SIZE: usize = 256;
pub const INORDER_QUEUE_SIZE: usize = PARALLEL_QUEUE_SIZE;
pub const MAX_INORDER_CONSUME: usize = INORDER_QUEUE_SIZE;