- Typo cleanup
authorRemco Rijnders <remco@webconquest.com>
Wed, 15 Aug 2012 06:44:44 +0000 (08:44 +0200)
committerRemco Rijnders <remco@webconquest.com>
Wed, 15 Aug 2012 06:44:44 +0000 (08:44 +0200)
- Lower default limits for clones on a given host

include/services.h

index 2eb88bc2bcf0f089c2b8c0c5d83592267f9ddd49..156fc7ec82cd7924583d7caec65420b9eacebe7d 100644 (file)
@@ -76,7 +76,6 @@ typedef struct database_struct {
 } database;
 
 /* Global function prototypes */
-
 void            flushLogs(char *);
 void            expireChans(char *);
 void            expireNicks(char *);
@@ -123,7 +122,6 @@ int         JinxHostMatch(char *nick, char *user, char *host, char *mask);
 int            check_mask (char *, int);
 
 /* Global variables */
-
 int            antiloop;
 char           datadir[512];
 char           timerbuff[512];
@@ -138,7 +136,7 @@ int         port[10];
 int            server, synched;
 Service        services[20];
 database       db;
-FILE           *operlog, *nicklog, *chanlog, *corelog, /**servout,*/ *rootlog;
+FILE           *operlog, *nicklog, *chanlog, *corelog, *rootlog;
 long           totalusers, mostusers, mostnicks, mostchans, mostmemos, ac_mod_counter, startup;
 unsigned int   AllocCalled, FreeCalled;
 char           *OperServ, *NickServ, *ChanServ, *MemoServ, coreBuffer[512];
@@ -206,7 +204,7 @@ char *Serenity;
 #define MEMODROPTIME (10*24*3600)
 #define SYNCTIME (15*60)                                /* Define time between synchs to disk */
 
-/* SHOWSYNCH - globops each time databases are saves              */
+/* SHOWSYNCH - globops each time databases are saved              */
 /* SHOWSYNCHALL - notice to users showing how long until next save*/
 
 #undef SHOWSYNCH
@@ -219,7 +217,7 @@ char *Serenity;
  * 0 for none
  * CLONE_KILLFLAG to autokill for every host
  * CLONE_IGNOREFLAG to autoignore for every host
- * CLONE_PERMTRIGGER to make ALL triggers permanet (including unchaged)
+ * CLONE_PERMTRIGGER to make ALL triggers permanent (including unchanged)
  *
  * DEFHOSTCLONETRIGGER = Warning level for clones from *@host
  * DEFUSERCLONETRIGGER = Warning level for clones from user@host
@@ -228,9 +226,9 @@ char *Serenity;
  */
    
 #define DEFCLONEFLAGS 0
-#define DEFHOSTCLONETRIGGER 5
+#define DEFHOSTCLONETRIGGER 4
 #define DEFUSERCLONETRIGGER 3
-#define DEFHOSTILEHOSTCLONES 7
+#define DEFHOSTILEHOSTCLONES 5
 #define DEFHOSTILEUSERCLONES 5
 
 char   retnum[2048];