summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorcertus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-07-22 21:13:32 +0000
committercertus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2006-07-22 21:13:32 +0000
commit570acfa25f7815bd75ed4d8dad286be3b51b7191 (patch)
treee9520adcf833df6131e771fa3acbbb045e84a2a3 /include
parentfff701c65b7c544a26d31f75b5d6a36918817a0c (diff)
# BUILD : 1.7.14 (1099) # BUGS : # NOTES : removed all that clone stuff
git-svn-id: svn://svn.anope.org/anope/trunk@1099 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@823 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include')
-rw-r--r--include/config.h5
-rw-r--r--include/extern.h13
-rw-r--r--include/services.h10
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;
-};
/************************************************************************/