From 81dcb60e08a781766bf8039c9705502966f1bb8e Mon Sep 17 00:00:00 2001 From: neru Date: Tue, 12 May 2026 18:17:51 -0300 Subject: [PATCH] style: var rename to make more consistent --- src/proxy/tinymitm/proxy.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/proxy/tinymitm/proxy.h b/src/proxy/tinymitm/proxy.h index 6100b4a..e012d9b 100644 --- a/src/proxy/tinymitm/proxy.h +++ b/src/proxy/tinymitm/proxy.h @@ -36,7 +36,7 @@ struct TinyMITMConfig std::string caKeyPath = "ca.key"; std::string caName = "TinyMITM-CA"; - int certDays = 365; + int caDays = 365; bool autoGenerateCA = true; @@ -100,7 +100,6 @@ class TinyMITMProxy static bool doHandshake(WOLFSSL* ssl, SOCKET socket, bool isAccept); - SOCKET _listenSocket = 0; std::atomic _running = false;