Another year is about to end... So we have to update these damn copyright information :P
[NeonServV5.git] / src / bot_NeonSpam.h
index e3a32ef9884108a822480e33b603a1f86786fc28..fbde1c2270cb2d1a7ad0bb0885c3520a45fa4022 100644 (file)
@@ -1,5 +1,5 @@
-/* bot_NeonSpam.h - NeonServ v5.1
- * Copyright (C) 2011  Philipp Kreil (pk910)
+/* bot_NeonSpam.h - NeonServ v5.3
+ * Copyright (C) 2011-2012  Philipp Kreil (pk910)
  * 
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -118,11 +118,15 @@ struct NeonSpamSettings {
 * are bigger than MAX_FLOOD_TIME * flood_amount
 */
 
+#define NEONSPAMNODE_FLAG_CAPSSCAN_WARNED  0x01
+#define NEONSPAMNODE_FLAG_DIGITSCAN_WARNED 0x02
+
 struct NeonSpamNode {
     unsigned long lastmsg; //crc32 hash
     unsigned char spamcount;
     int floodpenalty;
     time_t last_penalty_update;
+    unsigned char flags;
 };
 
 struct NeonSpamJoinNode {