]> jfr.im git - irc/quakenet/newserv.git/blob - lua/lualocal.h
LUA: port luadb to dbapi2 to drop postgres dependency
[irc/quakenet/newserv.git] / lua / lualocal.h
1 /* Copyright (C) Chris Porter 2006 */
2 /* ALL RIGHTS RESERVED. */
3 /* Don't put this into the SVN repo. */
4
5 #ifndef _LUA_LOCALNICKS_H
6 #define _LUA_LOCALNICKS_H
7
8 #include "../nick/nick.h"
9 #include "../lib/flags.h"
10
11 typedef struct lua_localnick {
12 nick *nick;
13 struct lua_localnick *next;
14 long handler;
15 void *reconnect;
16
17 char nickname[NICKLEN + 1];
18 char ident[USERLEN + 1];
19 char hostname[HOSTLEN + 1];
20 char realname[REALLEN + 1];
21 char account[ACCOUNTLEN + 1];
22 flag_t umodes;
23 } lua_localnick;
24
25 #endif