From f6aa26cb6489338c66c07cea14f2892eec88cb01 Mon Sep 17 00:00:00 2001 From: Aki Date: Tue, 7 Jul 2020 17:47:21 +0200 Subject: Preparations to completely separate execution-related from plop itself --- plop.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 plop.h (limited to 'plop.h') diff --git a/plop.h b/plop.h new file mode 100644 index 0000000..2ecd678 --- /dev/null +++ b/plop.h @@ -0,0 +1,11 @@ +#pragma once + +#include + +#include + +#include "http.h" + +int make_server(const char *, const char *); +int handle_client(lua_State * L, struct pollfd *, struct request **, const int); +int handle_server(struct pollfd *, int, const int); -- cgit v1.1