diff options
author | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-07 20:03:07 +0000 |
---|---|---|
committer | geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b <geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-07 20:03:07 +0000 |
commit | 2f44331e17a1673580725cf9fb097b82e6393502 (patch) | |
tree | f075d7a978bc032ee79739a5a93d2b22ca593714 /src/users.c | |
parent | 5ae91e374c40200c8efb291fa7a5086ef76dbe04 (diff) |
BUILD : 1.7.8 (606) BUGS : NOTES : Removed proxy detector code from the core, threads stuff still there. Needs good testing
git-svn-id: svn://svn.anope.org/anope/trunk@606 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@454 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/users.c')
-rw-r--r-- | src/users.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/users.c b/src/users.c index cd89bf0db..9fca93865 100644 --- a/src/users.c +++ b/src/users.c @@ -593,12 +593,6 @@ User *do_nick(const char *source, char *nick, char *username, char *host, if (LimitSessions && !add_session(nick, host)) return NULL; - /* And finally, for proxy ;) */ -#ifdef USE_THREADS - if (ProxyDetect && proxy_check(nick, host, ip)) { - return NULL; - } -#endif /* Allocate User structure and fill it in. */ user = new_user(nick); |