diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-07-21 12:26:18 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-07-27 07:56:25 +0200 |
commit | e69dc22f4ed323ed4e4c1537c48b70ca0007773a (patch) | |
tree | fb02c294a56b84a70f881914069877e2e0d52980 /src/or/geoip.c | |
parent | 90d3260b4ab39e1c9041e3a55a2f175f9bbaba21 (diff) | |
download | tor-e69dc22f4ed323ed4e4c1537c48b70ca0007773a.tar.gz tor-e69dc22f4ed323ed4e4c1537c48b70ca0007773a.zip |
Split headers for dnsserv.c functions out of or.h
The next series of commits begins addressing the issue that we're
currently including the complete or.h file in all of our source files.
To change that, we're splitting function definitions into new header
files (one header file per source file).
Diffstat (limited to 'src/or/geoip.c')
-rw-r--r-- | src/or/geoip.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/geoip.c b/src/or/geoip.c index 7f6cf79d8b..248c68ea46 100644 --- a/src/or/geoip.c +++ b/src/or/geoip.c @@ -10,6 +10,7 @@ #define GEOIP_PRIVATE #include "or.h" #include "ht.h" +#include "dnsserv.h" static void clear_geoip_db(void); |