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