2015-01-02 20:27:39 +01:00
|
|
|
/* Copyright (c) 2007-2015, The Tor Project, Inc. */
|
2007-12-12 22:09:01 +01:00
|
|
|
/* See LICENSE for licensing information */
|
2006-06-03 21:49:42 +02:00
|
|
|
|
2012-10-12 18:08:05 +02:00
|
|
|
#ifndef TOR_EVENTDNS_TOR_H
|
|
|
|
#define TOR_EVENTDNS_TOR_H
|
|
|
|
|
2006-06-03 21:49:42 +02:00
|
|
|
#include "orconfig.h"
|
|
|
|
#define DNS_USE_OPENSSL_FOR_ID
|
2006-09-07 21:00:51 +02:00
|
|
|
#ifndef HAVE_UINT
|
2006-06-03 21:49:42 +02:00
|
|
|
typedef unsigned int uint;
|
2006-09-07 21:00:51 +02:00
|
|
|
#endif
|
|
|
|
#ifndef HAVE_U_CHAR
|
2006-06-03 21:49:42 +02:00
|
|
|
typedef unsigned char u_char;
|
2006-09-07 21:00:51 +02:00
|
|
|
#endif
|
2007-08-08 07:50:31 +02:00
|
|
|
#include "torint.h"
|
2006-12-15 07:12:01 +01:00
|
|
|
|
2008-02-05 22:39:44 +01:00
|
|
|
/* These are for debugging possible memory leaks. */
|
2007-08-17 23:46:34 +02:00
|
|
|
#include "util.h"
|
|
|
|
#include "compat.h"
|
|
|
|
|
2012-10-12 18:08:05 +02:00
|
|
|
#endif
|
2012-10-15 17:22:53 +02:00
|
|
|
|