mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
fcdcb377a4
Because in 95 years, we or our successors will surely care about enforcing the BSD license terms on this code. Right?
26 lines
481 B
C
26 lines
481 B
C
/* Copyright (c) 2007-2014, The Tor Project, Inc. */
|
|
/* See LICENSE for licensing information */
|
|
|
|
#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"
|
|
|
|
#endif
|
|
|