network: move out channel size constants

This commit is contained in:
Alex Zenla
2024-02-12 17:40:11 +00:00
parent 60c9aefdda
commit d595f1639a
4 changed files with 12 additions and 6 deletions

View File

@ -21,9 +21,9 @@ use tokio::{
const BROADCAST_MAC_ADDR: &[u8; 6] = &[0xff; 6];
const BRIDGE_TX_QUEUE_LEN: usize = 4;
const BRIDGE_RX_QUEUE_LEN: usize = 4;
const BROADCAST_RX_QUEUE_LEN: usize = 4;
const BRIDGE_TX_QUEUE_LEN: usize = 50;
const BRIDGE_RX_QUEUE_LEN: usize = 50;
const BROADCAST_RX_QUEUE_LEN: usize = 50;
#[derive(Debug)]
struct BridgeMember {