tor/src/or/eventdns_tor.h

26 lines
481 B
C
Raw Normal View History

2013-01-16 07:54:56 +01:00
/* Copyright (c) 2007-2013, The Tor Project, Inc. */
/* See LICENSE for licensing information */
2012-10-12 18:08:05 +02:00
#ifndef TOR_EVENTDNS_TOR_H
#define TOR_EVENTDNS_TOR_H
#include "orconfig.h"
#define DNS_USE_OPENSSL_FOR_ID
#ifndef HAVE_UINT
typedef unsigned int uint;
#endif
#ifndef HAVE_U_CHAR
typedef unsigned char u_char;
#endif
#ifdef _WIN32
#define inline __inline
#endif
#include "torint.h"
/* These are for debugging possible memory leaks. */
#include "util.h"
#include "compat.h"
2012-10-12 18:08:05 +02:00
#endif
2012-10-15 17:22:53 +02:00