commit | 60409db0b1743d670e54244425f6e08c389b7dde | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed Aug 21 14:14:50 2019 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed Aug 21 14:32:09 2019 +0200 |
tree | 594e72732d413699edbc65ad8000f1a503abe5d3 | |
parent | a2c9911ace8537e0a350daf8d981170a001b6c7a [diff] |
MINOR: lua: export applet and task handlers The current functions are seen outside from the debugging code and are convenient to export so that we can improve the thread dump output : void hlua_applet_tcp_fct(struct appctx *ctx); void hlua_applet_http_fct(struct appctx *ctx); struct task *hlua_process_task(struct task *task, void *context, unsigned short state); Of course they are only available when USE_LUA is defined.