From 5a9c301747b45766b1bd5aef2566bdfee61886b0 Mon Sep 17 00:00:00 2001 From: "(on company time)" <_@_> Date: Fri, 16 Dec 2022 13:25:21 -0600 Subject: [PATCH] :loud_sound: add random IDs for QUIC connection events --- crates/ptth_quic/src/executable_relay_server.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ptth_quic/src/executable_relay_server.rs b/crates/ptth_quic/src/executable_relay_server.rs index 058a0ce..b796cf0 100644 --- a/crates/ptth_quic/src/executable_relay_server.rs +++ b/crates/ptth_quic/src/executable_relay_server.rs @@ -298,14 +298,14 @@ async fn handle_quic_connection ( match peer { protocol::P3Peer::P2ClientProxy (peer) => { - trace! ("Accepting connection from P2 client"); + trace! ("H36JTVE5 Accepting connection from P2 client"); // TODO: Check authorization for P2 peers protocol::p3_authorize_p2_peer (&mut send).await?; handle_p2_connection (relay_state, conn, peer).await?; }, protocol::P3Peer::P4ServerProxy (peer) => { - trace! ("Accepting connection from P4 end server"); + trace! ("LRHUKB7K Accepting connection from P4 end server"); // TODO: Check authorization for P4 peers protocol::p3_authorize_p4_peer (&mut send).await?;