From 8e7257aac8b30aaa57577770fd636e784361e35d Mon Sep 17 00:00:00 2001 From: ame Date: Thu, 12 Jun 2025 02:10:10 -0500 Subject: fix some net code, add streaming to some requests --- src/test.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/test.h') diff --git a/src/test.h b/src/test.h index 2eceaeb..bb39cc8 100644 --- a/src/test.h +++ b/src/test.h @@ -4,11 +4,13 @@ int ld_match(lua_State*); int l_stack_dump(lua_State*); int l_upvalue_key_table(lua_State* L); +int l_stream_test(lua_State* L); static const luaL_Reg test_function_list [] = { {"_match", ld_match}, {"stack_dump", l_stack_dump}, {"upvalue_key_table", l_upvalue_key_table}, + {"stream", l_stream_test}, {NULL,NULL} }; -- cgit v1.2.3