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