]> jfr.im git - irc/quakenet/newserv.git/blob - whowas/whowas.h
Implement notice flag +G for automated gline messages.
[irc/quakenet/newserv.git] / whowas / whowas.h
1 #define WW_MAXAGE 3600
2 #define WW_MAXENTRIES 100000
3 #define WW_MASKLEN (HOSTLEN + USERLEN + NICKLEN)
4 #define WW_REASONLEN 512
5
6 typedef struct whowas {
7 char nick[NICKLEN+1];
8 char ident[USERLEN+1];
9 char host[HOSTLEN+1];
10 char realname[REALLEN+1];
11 sstring *reason;
12
13 time_t seen;
14
15 struct whowas *next;
16 struct whowas *prev;
17 } whowas;