aquatic_udp: stop counting readable events for statistics

It is not very informative and might be expensive
This commit is contained in:
Joakim Frostegård 2021-10-18 11:15:59 +02:00
parent 90d60108c1
commit 9aa783fbb1
3 changed files with 2 additions and 18 deletions

View file

@ -174,7 +174,6 @@ impl TorrentMaps {
pub struct Statistics {
pub requests_received: AtomicUsize,
pub responses_sent: AtomicUsize,
pub readable_events: AtomicUsize,
pub bytes_received: AtomicUsize,
pub bytes_sent: AtomicUsize,
}