eventdns_tor.h 436 B

12345678910111213141516171819202122
  1. /* Copyright (c) 2007-2016, The Tor Project, Inc. */
  2. /* See LICENSE for licensing information */
  3. #ifndef TOR_EVENTDNS_TOR_H
  4. #define TOR_EVENTDNS_TOR_H
  5. #include "orconfig.h"
  6. #define DNS_USE_OPENSSL_FOR_ID
  7. #ifndef HAVE_UINT
  8. typedef unsigned int uint;
  9. #endif
  10. #ifndef HAVE_U_CHAR
  11. typedef unsigned char u_char;
  12. #endif
  13. #include "torint.h"
  14. /* These are for debugging possible memory leaks. */
  15. #include "util.h"
  16. #include "compat.h"
  17. #endif