From 25d22d235dfdab1f936cce0648ed848e6fea02e4 Mon Sep 17 00:00:00 2001 From: neru Date: Wed, 13 May 2026 12:09:37 -0300 Subject: [PATCH] style: removed unneeded comment --- src/proxy/tinymitm/proxy.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/proxy/tinymitm/proxy.cpp b/src/proxy/tinymitm/proxy.cpp index 169ef95..5e324e3 100644 --- a/src/proxy/tinymitm/proxy.cpp +++ b/src/proxy/tinymitm/proxy.cpp @@ -433,11 +433,6 @@ void TinyMITMProxy::handleClient(SOCKET clientSocket) wolfSSL_set_fd(clientSSL.get(), (int)clientGuard); wolfSSL_set_fd(remoteSSL.get(), (int)remoteGuard); - // temporarily removed alpn - //char alpnList[] = "\x08http/1.1"; - //wolfSSL_UseALPN(remoteSSL.get(), alpnList, sizeof(alpnList) - 1, 0); - //wolfSSL_UseALPN(clientSSL.get(), alpnList, sizeof(alpnList) - 1, 0); - wolfSSL_UseSNI(remoteSSL.get(), WOLFSSL_SNI_HOST_NAME, host.c_str(), (unsigned short)host.size()); setNonBlocking(clientGuard, true);