1 | #ifndef UNIX_H |
2 | #define UNIX_H |
3 | /*=========================================================================*\ |
4 | * Unix domain object |
5 | * LuaSocket toolkit |
6 | * |
7 | * This module is just an example of how to extend LuaSocket with a new |
8 | * domain. |
9 | \*=========================================================================*/ |
10 | #include "lua.h" |
11 | |
12 | #include "buffer.h" |
13 | #include "timeout.h" |
14 | #include "socket.h" |
15 | |
16 | #ifndef UNIX_API |
17 | #define UNIX_API extern |
18 | #endif |
19 | |
20 | typedef struct t_unix_ { |
21 | t_socket sock; |
22 | t_io io; |
23 | t_buffer buf; |
24 | t_timeout tm; |
25 | } t_unix; |
26 | typedef t_unix *p_unix; |
27 | |
28 | UNIX_API int luaopen_socket_unix(lua_State *L); |
29 | |
30 | #endif /* UNIX_H */ |
31 | |