mirror of
https://github.com/irssi/irssi.git
synced 2026-08-15 06:32:06 +02:00
12 lines
212 B
C
12 lines
212 B
C
|
|
#include "common.h"
|
||
|
|
|
||
|
|
typedef struct {
|
||
|
|
/* Flood protection */
|
||
|
|
GHashTable *floodlist;
|
||
|
|
|
||
|
|
/* Auto ignore list */
|
||
|
|
GSList *ignorelist;
|
||
|
|
time_t ignore_lastcheck;
|
||
|
|
} MODULE_SERVER_REC;
|
||
|
|
|
||
|
|
#define MODULE_NAME "irc/flood"
|