32ad93c57e
* Preserve information about original transmission lanes when buffering reply packets * Attempting to send partial data in 'handle_send_reply' if we don't have enough surbs immediately * Display logging of reply surb request target * promoted reply_controller to a directory * moved channels and messages to separate file * simplifications due to rust 1.66 * Using a shoarthand for obtaining connection_id * made TransmissionBuffer generic * Moved transmissaion buffer to a higher level directory + defined wasm helpers * Using transmission buffer in reply controller * Using the pending replies size in lane lenghts queries * fixed an out of bounds use of fragments * Fixed dropped channel in getting lane queue length * Fixed an edge case failure for reply retransmissions * measuring (and logging) time it takes to obtain lane lenghts * decreased logging level * Removed non-wasm lock on total_size
15 lines
380 B
Rust
15 lines
380 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 mod real_messages_control;
|
|
pub mod received_buffer;
|
|
pub mod replies;
|
|
pub mod topology_control;
|
|
pub(crate) mod transmission_buffer;
|