643f54024b
* WIP: put in some packet counters * ws packet counters * wip * Add static counters to client traffic stream * Tweak status log message * Add packet statistics control * fixup! Add static counters to client traffic stream * tweak log * Move the packet statistics control one level up * Redo packet stats control to collect locally * Switch loop cover traffic report over to new channel mechanism * Switch packet stats in real message stream to channel report * Finished switching over to channel reporting * Fix handle stats event * Log packets received * Tidy up * rustfmt * Add strongly typed stats reporter * Count cover packets as well * Log packet sizes sent * Also log recieved sizes
16 lines
422 B
Rust
16 lines
422 B
Rust
// Copyright 2022 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
pub mod base_client;
|
|
pub mod cover_traffic_stream;
|
|
pub(crate) mod helpers;
|
|
pub mod inbound_messages;
|
|
pub mod key_manager;
|
|
pub mod mix_traffic;
|
|
pub(crate) mod packet_statistics_control;
|
|
pub mod real_messages_control;
|
|
pub mod received_buffer;
|
|
pub mod replies;
|
|
pub mod topology_control;
|
|
pub(crate) mod transmission_buffer;
|