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/control.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/control.c')
-rw-r--r-- | src/or/control.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/control.c b/src/or/control.c index ab17bec8a4..68921663e1 100644 --- a/src/or/control.c +++ b/src/or/control.c @@ -11,6 +11,7 @@ #define CONTROL_PRIVATE #include "or.h" +#include "dnsserv.h" /** Yield true iff <b>s</b> is the state of a control_connection_t that has * finished authentication and is accepting commands. */ |