summaryrefslogtreecommitdiffhomepage
path: root/plop.h
blob: 8003441a95a3af342cb6e85a702a06f715fc1473 (plain)
1
2
3
4
5
6
7
8
9
10
#pragma once

#include <sys/epoll.h>

#include <lua.h>

int plop_make_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_server(lua_State *, const int, const int);