diff options
Diffstat (limited to 'src/common/hexchat.c')
-rw-r--r-- | src/common/hexchat.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/common/hexchat.c b/src/common/hexchat.c index 767d60ed..37e46ce8 100644 --- a/src/common/hexchat.c +++ b/src/common/hexchat.c @@ -55,10 +55,6 @@ #include <glib-object.h> /* for g_type_init() */ #endif -#ifdef USE_MSPROXY -#include "msproxy.h" -#endif - #ifdef USE_LIBPROXY #include <proxy.h> #endif @@ -360,9 +356,6 @@ static int hexchat_misc_checks (void) /* this gets called every 1/2 second */ { static int count = 0; -#ifdef USE_MSPROXY - static int count2 = 0; -#endif count++; @@ -378,15 +371,6 @@ hexchat_misc_checks (void) /* this gets called every 1/2 second */ count = 0; } -#ifdef USE_MSPROXY - count2++; - if (count2 >= 720) /* 720 every 6 minutes */ - { - msproxy_keepalive (); - count2 = 0; - } -#endif - return 1; } |