diff options
Diffstat (limited to 'src/script_lua.h')
-rw-r--r-- | src/script_lua.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/script_lua.h b/src/script_lua.h index 5a4533784..4c2b34804 100644 --- a/src/script_lua.h +++ b/src/script_lua.h @@ -67,9 +67,10 @@ typedef struct errorInfo { void luaRegisterRedisAPI(lua_State* lua); sds luaGetStringSds(lua_State *lua, int index); -void luaEnableGlobalsProtection(lua_State *lua, int is_eval); void luaRegisterGlobalProtectionFunction(lua_State *lua); -void luaSetGlobalProtection(lua_State *lua); +void luaSetErrorMetatable(lua_State *lua); +void luaSetAllowListProtection(lua_State *lua); +void luaSetTableProtectionRecursively(lua_State *lua); void luaRegisterLogFunction(lua_State* lua); void luaRegisterVersion(lua_State* lua); void luaPushErrorBuff(lua_State *lua, sds err_buff); |