選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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