You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lua_dns_resolver.h 250B

12345678910111213141516
  1. #ifndef RSPAMD_LUA_DNS_H
  2. #define RSPAMD_LUA_DNS_H
  3. struct lua_State;
  4. struct rdns_reply;
  5. /**
  6. * Pushes dns reply onto Lua stack
  7. *
  8. * @param L
  9. * @param reply
  10. */
  11. void
  12. lua_push_dns_reply (struct lua_State *L, const struct rdns_reply *reply);
  13. #endif