increase initial MTU buffer size

Signed-off-by: eternal-flame-AD <yume@yumechi.jp>
This commit is contained in:
ゆめ 2024-11-15 03:54:07 -06:00
parent bb7605e999
commit c91adb0995
No known key found for this signature in database

View file

@ -27,7 +27,7 @@ use crate::{
};
const SLURP_LIMIT: usize = 32 << 20;
const MTU_BUFFER_SIZE: usize = 8192;
const MTU_BUFFER_SIZE: usize = 64 << 10;
/// Module for sniffing media types and filtering out unsafe media
pub mod sniff;