blob: c8d1d3857739b2c8a4cf1dd32039de77a0ecc2d6 [file] [log] [blame]
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001#ifndef _PROTO_HLUA_H
2#define _PROTO_HLUA_H
3
4#include <lua.h>
5
6#include <types/hlua.h>
7
8/* Lua HAProxy integration functions. */
Thierry FOURNIER380d0932015-01-23 14:27:52 +01009int hlua_ctx_init(struct hlua *lua, struct task *task);
10void hlua_ctx_destroy(struct hlua *lua);
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010011void hlua_init();
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +010012int hlua_post_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010013
14#endif /* _PROTO_HLUA_H */