aboutsummaryrefslogtreecommitdiffstats
path: root/src/lua/lua_dns_resolver.h
blob: ef42832a6f707756c72ce570f7a6a466868b548a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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