diff --git a/src/network/mod.rs b/src/network/mod.rs index b5231f9..1fb1f6d 100644 --- a/src/network/mod.rs +++ b/src/network/mod.rs @@ -714,7 +714,7 @@ impl NetworkMonitor { let loop_start_time = Instant::now(); let mut packets_processed_in_loop = 0; // Process a moderate number of packets per call to balance responsiveness and data capture - const MAX_PACKETS_PER_CALL: usize = 100; // Reduced from 1000 to 100 + const MAX_PACKETS_PER_CALL: usize = 100; // Current value for i in 0..MAX_PACKETS_PER_CALL { match cap.next_packet() { Ok(packet) => {