From 714aebccbd7a4ab6ec0964d4580efd49171ba140 Mon Sep 17 00:00:00 2001 From: Joshua Judson Rosen Date: Tue, 17 Feb 2015 00:37:08 -0500 Subject: Remove HTTP proxy support. There are plenty of popular, readily-available external tools that, frankly, provide better options for going through proxies-- both of the HTTP variety and others (corkscrew, httptunnel, socat...); and dropping our internal implementation results in a significant reduction in code complexity--including the complete elimination of multithreading and all of the worries that go along with it. --- src/client_signals.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/client_signals.c') diff --git a/src/client_signals.c b/src/client_signals.c index 04c344e..e8c7269 100644 --- a/src/client_signals.c +++ b/src/client_signals.c @@ -21,7 +21,6 @@ #include #include "client_signals.h" -#include "thread_management.h" #include "stats.h" #include "logging.h" @@ -36,11 +35,6 @@ void client_sig_int(int signo) { -#ifdef HAVE_LIBPTHREAD - if (!is_this_a_mainthread()) { - return; - } -#endif aflog(LOG_T_MAIN, LOG_I_NOTICE, "CLIENT CLOSED cg: %ld bytes", getcg()); exit(0); -- cgit v1.1