diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-11-02 19:37:06 +0300 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2009-11-02 19:37:06 +0300 |
commit | d78ac2d1060c2b049b4eebc176d3823f82f9ea76 (patch) | |
tree | 452789270aaf0fc3bc6aee865b444dd43d37f1be /src/lua/lua_common.h | |
parent | bd0ade804fff8e999b9fadd88452d1d5b5ba1ccb (diff) | |
download | rspamd-d78ac2d1060c2b049b4eebc176d3823f82f9ea76.tar.gz rspamd-d78ac2d1060c2b049b4eebc176d3823f82f9ea76.zip |
* Add ability to add maps from lua scripts and access theirs elements
* Add whitelist module for whitelisting score for some ip/from addresses
Diffstat (limited to 'src/lua/lua_common.h')
-rw-r--r-- | src/lua/lua_common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lua/lua_common.h b/src/lua/lua_common.h index ab06166b3..9cd966e23 100644 --- a/src/lua/lua_common.h +++ b/src/lua/lua_common.h @@ -24,6 +24,8 @@ int luaopen_message (lua_State *L); int luaopen_task (lua_State *L); int luaopen_config (lua_State *L); int luaopen_metric (lua_State *L); +int luaopen_radix (lua_State *L); +int luaopen_hash_table (lua_State *L); int luaopen_textpart (lua_State *L); void init_lua_filters (struct config_file *cfg); |