您最多选择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