mirror of
https://git.haproxy.org/git/haproxy.git/
synced 2025-08-07 23:56:57 +02:00
CLEANUP: hlua: just indent functions
Function indentation. The code is not modified. This is done in the goal of better integration of the next patch
This commit is contained in:
parent
a9cf315b00
commit
3e1d791a4a
10
src/hlua.c
10
src/hlua.c
@ -7192,11 +7192,11 @@ void hlua_init(void)
|
|||||||
lua_newtable(gL.T);
|
lua_newtable(gL.T);
|
||||||
|
|
||||||
/* Register Lua functions. */
|
/* Register Lua functions. */
|
||||||
hlua_class_function(gL.T, "getline", hlua_applet_tcp_getline);
|
hlua_class_function(gL.T, "getline", hlua_applet_tcp_getline);
|
||||||
hlua_class_function(gL.T, "receive", hlua_applet_tcp_recv);
|
hlua_class_function(gL.T, "receive", hlua_applet_tcp_recv);
|
||||||
hlua_class_function(gL.T, "send", hlua_applet_tcp_send);
|
hlua_class_function(gL.T, "send", hlua_applet_tcp_send);
|
||||||
hlua_class_function(gL.T, "set_priv", hlua_applet_tcp_set_priv);
|
hlua_class_function(gL.T, "set_priv", hlua_applet_tcp_set_priv);
|
||||||
hlua_class_function(gL.T, "get_priv", hlua_applet_tcp_get_priv);
|
hlua_class_function(gL.T, "get_priv", hlua_applet_tcp_get_priv);
|
||||||
|
|
||||||
lua_settable(gL.T, -3);
|
lua_settable(gL.T, -3);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user