aboutsummaryrefslogtreecommitdiff
path: root/src/net/lua.c
diff options
context:
space:
mode:
authorame <[email protected]>2026-04-24 05:06:15 -0500
committerame <[email protected]>2026-04-24 05:06:15 -0500
commitfe168cff249a672aced9cda1439ac7aea343c9af (patch)
tree5539a21ed89c63c2b80af2cf47bd6d69e57bfe4c /src/net/lua.c
parent91738e3cee334ecc122ce11687c7e434c6bb581a (diff)
http body parsing & request reading
Diffstat (limited to 'src/net/lua.c')
-rw-r--r--src/net/lua.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/lua.c b/src/net/lua.c
index 6e8c955..50d050a 100644
--- a/src/net/lua.c
+++ b/src/net/lua.c
@@ -184,7 +184,7 @@ int l_roll(lua_State* L){
lua_gettable(L, 1);
int files_idx = lua_gettop(L);
//time_start(parse)
- rolling_file_parse(L, &files_idx, &body_idx, buffer, NULL, r, data);
+ http_body_parse(L, &files_idx, &body_idx, buffer, NULL, r, data);
//time_end("parse", parse)
luaI_tsetv(L, 1, "body", body_idx);
luaI_tsetv(L, 1, "files", files_idx);