mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-13 06:54:37 +00:00
380d0930bd
The functions added permits to execute the LUA stack execution in HAProxy. It provides all the runtie environment and initialise the main LUA stack.
14 lines
272 B
C
14 lines
272 B
C
#ifndef _PROTO_HLUA_H
|
|
#define _PROTO_HLUA_H
|
|
|
|
#include <lua.h>
|
|
|
|
#include <types/hlua.h>
|
|
|
|
/* Lua HAProxy integration functions. */
|
|
int hlua_ctx_init(struct hlua *lua, struct task *task);
|
|
void hlua_ctx_destroy(struct hlua *lua);
|
|
void hlua_init();
|
|
|
|
#endif /* _PROTO_HLUA_H */
|