1 /* 2 * flood.h: header file for flood.c 3 * 4 * @(#)$Id: flood.h,v 1.8 2000/04/01 07:39:57 mrg Exp $ 5 */ 6 7 #ifndef __flood_h_ 8 #define __flood_h_ 9 10 int check_flooding _((u_char *, int, u_char *)); 11 12 #define MSG_FLOOD 0 13 #define PUBLIC_FLOOD 1 14 #define NOTICE_FLOOD 2 15 #define WALL_FLOOD 3 16 #define WALLOP_FLOOD 4 17 #define NUMBER_OF_FLOODS 5 18 19 #endif /* __flood_h_ */ 20