diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-09-16 13:10:42 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2019-09-16 13:10:42 +0100 |
commit | 5ef148649daca54714bd141bd473072250b46d83 (patch) | |
tree | 658841acc4d3a4cd208af3fc31449749c64e761f /src/lua/lua_redis.c | |
parent | 35818aec2c5f6e70423fa2954fc9a344b5fe56f0 (diff) | |
download | rspamd-5ef148649daca54714bd141bd473072250b46d83.tar.gz rspamd-5ef148649daca54714bd141bd473072250b46d83.zip |
[Rework] Lua core: Use lightuserdata to index classes
Diffstat (limited to 'src/lua/lua_redis.c')
-rw-r--r-- | src/lua/lua_redis.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/lua/lua_redis.c b/src/lua/lua_redis.c index ac1a8c297..279f84ffa 100644 --- a/src/lua/lua_redis.c +++ b/src/lua/lua_redis.c @@ -1603,17 +1603,7 @@ lua_load_redis (lua_State * L) void luaopen_redis (lua_State * L) { - luaL_newmetatable (L, "rspamd{redis}"); - lua_pushstring (L, "__index"); - lua_pushvalue (L, -2); - lua_settable (L, -3); - - lua_pushstring (L, "class"); - lua_pushstring (L, "rspamd{redis}"); - lua_rawset (L, -3); - - luaL_register (L, NULL, redislib_m); + rspamd_lua_new_class (L, "rspamd{redis}", redislib_m); lua_pop (L, 1); - rspamd_lua_add_preload (L, "rspamd_redis", lua_load_redis); } |