mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
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"
|