diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/config.h | 5 | ||||
-rw-r--r-- | include/extern.h | 13 | ||||
-rw-r--r-- | include/services.h | 10 |
3 files changed, 0 insertions, 28 deletions
diff --git a/include/config.h b/include/config.h index eb4eaf168..445f16bc3 100644 --- a/include/config.h +++ b/include/config.h @@ -33,11 +33,6 @@ /******* OperServ configuration *******/ -/* How big a hostname list do we keep for clone detection? On large nets - * (over 500 simultaneous users or so), you may want to increase this if - * you want a good chance of catching clones. */ -#define CLONE_DETECT_SIZE 16 - /* Define this to enable OperServ's svs commands (superadmin only). */ #define USE_OSSVS diff --git a/include/extern.h b/include/extern.h index d64e113e3..c64935d7b 100644 --- a/include/extern.h +++ b/include/extern.h @@ -439,11 +439,6 @@ E int WallDrop; E int WallForbid; E int WallGetpass; E int WallSetpass; -E int CheckClones; -E int CloneMinUsers; -E int CloneMaxDelay; -E int CloneWarningDelay; -E int KillClones; E int AddAkiller; E int parse_directive(Directive * d, char *dir, int ac, char *av[MAXPARAMS], int linenum, int reload, char *s); @@ -477,9 +472,6 @@ E int NickServCoreNumber; E char **ChanServCoreModules; E int ChanServCoreNumber; - -E int KillClonesAkillExpire; - E int LimitSessions; E int DefSessionLimit; E int ExceptionExpiry; @@ -951,17 +943,12 @@ E int add_szline(User * u, char *mask, const char *by, E void expire_szlines(void); E int check_szline(char *nick, char *ip); -E void check_clones(User * user); - E Server *server_global(Server * s, char *msg); E int OSOpersOnly; E time_t DefContimer; E void runDefCon(void); -E struct clone clonelist[CLONE_DETECT_SIZE]; -E struct clone warnings[CLONE_DETECT_SIZE]; - /**** process.c ****/ E int allow_ignore; diff --git a/include/services.h b/include/services.h index ce34238a9..08afcace8 100644 --- a/include/services.h +++ b/include/services.h @@ -1031,16 +1031,6 @@ struct sxline_ { time_t expires; }; -/*************************************************************************/ - -/*************************************************************************/ - -/* clone stuff structure */ - -struct clone { - char *host; - long time; -}; /************************************************************************/ |