diff options
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 935a7c7d7..6ded08eb9 100644 --- a/src/lua/lua_common.h +++ b/src/lua/lua_common.h @@ -124,6 +124,7 @@ enum rspamd_lua_map_type { RSPAMD_LUA_MAP_REGEXP, RSPAMD_LUA_MAP_REGEXP_MULTIPLE, RSPAMD_LUA_MAP_CALLBACK, + RSPAMD_LUA_MAP_CDB, RSPAMD_LUA_MAP_UNKNOWN, }; @@ -136,6 +137,7 @@ struct rspamd_lua_map { struct rspamd_radix_map_helper *radix; struct rspamd_hash_map_helper *hash; struct rspamd_regexp_map_helper *re_map; + struct rspamd_cdb_map_helper *cdb_map; struct lua_map_callback_data *cbdata; } data; }; |