File: crates/libs/rns-transport/src/iface/tcp_client.rs
hdlc_tx_buffer and tx_buffer are allocated on every TX-task loop iteration.
Impact: High-throughput interfaces incur avoidable allocation and initialization overhead.
Please move reusable buffers outside the loop, resize or clear them as needed, and verify behavior and allocation improvements.
File: crates/libs/rns-transport/src/iface/tcp_client.rs
hdlc_tx_buffer and tx_buffer are allocated on every TX-task loop iteration.
Impact: High-throughput interfaces incur avoidable allocation and initialization overhead.
Please move reusable buffers outside the loop, resize or clear them as needed, and verify behavior and allocation improvements.