net: Add support for packet pools with size 64 and 128

This commit is contained in:
Matous Hybl 2022-04-27 21:27:28 +02:00
parent 5b3aaaaa9c
commit 3a3ed27c30
2 changed files with 8 additions and 0 deletions

View File

@ -28,6 +28,8 @@ pool-4 = []
pool-8 = []
pool-16 = []
pool-32 = []
pool-64 = []
pool-128 = []
[dependencies]

View File

@ -17,6 +17,12 @@ pub const PACKET_POOL_SIZE: usize = 16;
#[cfg(feature = "pool-32")]
pub const PACKET_POOL_SIZE: usize = 32;
#[cfg(feature = "pool-64")]
pub const PACKET_POOL_SIZE: usize = 64;
#[cfg(feature = "pool-128")]
pub const PACKET_POOL_SIZE: usize = 128;
pool!(pub PacketPool: [Packet; PACKET_POOL_SIZE]);
pub type PacketBox = Box<PacketPool>;