From 3573d1e6a6965f0ca610591ff4730d7f49b06a91 Mon Sep 17 00:00:00 2001 From: mfahampshire Date: Mon, 16 Dec 2024 13:33:20 +0100 Subject: [PATCH] comments --- sdk/rust/nym-sdk/src/tcp_proxy/tcp_proxy_server.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sdk/rust/nym-sdk/src/tcp_proxy/tcp_proxy_server.rs b/sdk/rust/nym-sdk/src/tcp_proxy/tcp_proxy_server.rs index bf1f47869e..55e6273dbb 100644 --- a/sdk/rust/nym-sdk/src/tcp_proxy/tcp_proxy_server.rs +++ b/sdk/rust/nym-sdk/src/tcp_proxy/tcp_proxy_server.rs @@ -98,9 +98,9 @@ impl NymProxyServer { // IDs to deal with the fact that the mixnet does not enforce message ordering. // // There is an initial thread which does a bunch of setup logic: - // - Create a TcpStream connecting to our upstream server process. - // - Split incoming TcpStream into OwnedReadHalf and OwnedWriteHalf for concurrent read/write. - // - Create an Arc to store our session SURB - used for anonymous replies. + // - Create a TcpStream connecting to our upstream server process. + // - Split incoming TcpStream into OwnedReadHalf and OwnedWriteHalf for concurrent read/write. + // - Create an Arc to store our session SURB - used for anonymous replies. // // Then we spawn 2 tasks: // - 'Incoming' thread => deals with parsing and storing the SURB (used in Mixnet replies), deserialising and passing the incoming data from the Mixnet to the upstream server.