diff options
-rw-r--r-- | main.c | 3 | ||||
-rw-r--r-- | plop.c | 5 | ||||
-rw-r--r-- | plop.h | 6 |
3 files changed, 7 insertions, 7 deletions
@@ -107,7 +107,8 @@ int main(int argc, char ** argv) } else { - if (-1 == plop_handle_client(plop.L, &events[i])) + struct connection * c = (struct connection *) events[i].data.ptr; + if (-1 == plop_handle_client(plop.L, c)) { return 7; } @@ -140,11 +140,10 @@ int plop_load_handler(lua_State * L, const char * path) /// Handles client events. /// \param L Server's Lua state -/// \param event Event for client +/// \param c Connection associated with the client /// \return -1 if an error occured -int plop_handle_client(lua_State * L, struct epoll_event * event) +int plop_handle_client(lua_State * L, struct connection * c) { - struct connection * c = (struct connection *) event->data.ptr; int nargs = 0; if (NULL == c->L) @@ -1,9 +1,9 @@ #pragma once -#include <sys/epoll.h> - #include <lua.h> +#include "connection.h" + struct plop { const char * handler; @@ -16,5 +16,5 @@ extern struct plop plop; lua_State * plop_initialize_lua(void); int open_server(const char *, const char *); int plop_load_handler(lua_State *, const char *); -int plop_handle_client(lua_State *, struct epoll_event *); +int plop_handle_client(lua_State *, struct connection *); int plop_handle_server(lua_State *, const int, const int); |