From 858c97399b5ebfa1e91cb925ed625c356922ef87 Mon Sep 17 00:00:00 2001 From: Connection Refused Date: Sun, 17 Oct 2021 16:00:13 +0800 Subject: [PATCH] [Redirector] Add udpCreated log --- Redirector/EventHandler.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Redirector/EventHandler.cpp b/Redirector/EventHandler.cpp index f5ddea17..a8f155bf 100644 --- a/Redirector/EventHandler.cpp +++ b/Redirector/EventHandler.cpp @@ -295,6 +295,8 @@ void udpCreated(ENDPOINT_ID id, PNF_UDP_CONN_INFO info) return; } + wcout << "[Redirector][EventHandler][udpCreated][" << id << "][" << info->processId << "] " << GetProcessName(info->processId) << endl; + lock_guard lg(udpContextLock); udpContext[id] = new SocksHelper::UDP(); }