diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-08-09 14:27:33 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-08-09 15:27:32 +0100 |
commit | 084dc96bc564b814b7d8850958613cfae835dc77 (patch) | |
tree | a33bbbb6dac6c4277389478b154f2b4306eacb34 /src/lua/lua_trie.c | |
parent | 0ebcb5c9fb90363a2afff95f3f1af827fcf9b287 (diff) | |
download | rspamd-084dc96bc564b814b7d8850958613cfae835dc77.tar.gz rspamd-084dc96bc564b814b7d8850958613cfae835dc77.zip |
[Feature] Add support for Lua API tracing
Diffstat (limited to 'src/lua/lua_trie.c')
-rw-r--r-- | src/lua/lua_trie.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lua/lua_trie.c b/src/lua/lua_trie.c index 5911842b9..362564ce8 100644 --- a/src/lua/lua_trie.c +++ b/src/lua/lua_trie.c @@ -202,6 +202,7 @@ lua_trie_search_str (lua_State *L, struct rspamd_multipattern *trie, static gint lua_trie_match (lua_State *L) { + LUA_TRACE_POINT; struct rspamd_multipattern *trie = lua_check_trie (L, 1); const gchar *text; gsize len; @@ -249,6 +250,7 @@ lua_trie_match (lua_State *L) static gint lua_trie_search_mime (lua_State *L) { + LUA_TRACE_POINT; struct rspamd_multipattern *trie = lua_check_trie (L, 1); struct rspamd_task *task = lua_check_task (L, 2); struct rspamd_mime_text_part *part; @@ -286,6 +288,7 @@ lua_trie_search_mime (lua_State *L) static gint lua_trie_search_rawmsg (lua_State *L) { + LUA_TRACE_POINT; struct rspamd_multipattern *trie = lua_check_trie (L, 1); struct rspamd_task *task = lua_check_task (L, 2); const gchar *text; @@ -316,6 +319,7 @@ lua_trie_search_rawmsg (lua_State *L) static gint lua_trie_search_rawbody (lua_State *L) { + LUA_TRACE_POINT; struct rspamd_multipattern *trie = lua_check_trie (L, 1); struct rspamd_task *task = lua_check_task (L, 2); const gchar *text; |