diff options
Diffstat (limited to 'src/lua/lua_dns_resolver.h')
-rw-r--r-- | src/lua/lua_dns_resolver.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lua/lua_dns_resolver.h b/src/lua/lua_dns_resolver.h new file mode 100644 index 0000000..515e9ac --- /dev/null +++ b/src/lua/lua_dns_resolver.h @@ -0,0 +1,15 @@ +#ifndef RSPAMD_LUA_DNS_H +#define RSPAMD_LUA_DNS_H + +struct lua_State; +struct rdns_reply; + +/** + * Pushes dns reply onto Lua stack + * + * @param L + * @param reply + */ +void lua_push_dns_reply(struct lua_State *L, const struct rdns_reply *reply); + +#endif |