]> jfr.im git - irc/quakenet/newserv.git/blame - lua/luasocket.h
Comments -> commands.
[irc/quakenet/newserv.git] / lua / luasocket.h
CommitLineData
065c0091
CP
1/* Copyright (C) Chris Porter 2007 */
2
3#ifndef _LUA_SOCKET_H
4#define _LUA_SOCKET_H
5
6#include "lua.h"
7
8typedef struct lua_socket {
9 int fd;
10 int state;
11 long handler;
12 unsigned long identifier;
13 struct lua_list *l;
14 struct lua_socket *next;
15} lua_socket;
16
17#endif
18