diff options
author | Roger Dingledine <arma@torproject.org> | 2006-09-25 05:59:13 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-09-25 05:59:13 +0000 |
commit | ad430b9561be97fc3438ed87b2b2453ce41eae43 (patch) | |
tree | d79e87d84f05e4d005d0b7013323ef2492568397 /src/or/or.h | |
parent | bc848c8740a5f64cc52b97bccd03da7f64347da2 (diff) | |
download | tor-ad430b9561be97fc3438ed87b2b2453ce41eae43.tar tor-ad430b9561be97fc3438ed87b2b2453ce41eae43.tar.gz |
checkpoint changelog and general polishing
svn:r8497
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index c48f71a82..bb7d0b668 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -348,7 +348,9 @@ typedef enum { #define _DIR_PURPOSE_MAX 9 #define _EXIT_PURPOSE_MIN 1 +/** This exit stream wants to do an ordinary connect. */ #define EXIT_PURPOSE_CONNECT 1 +/** This exit stream wants to do a resolve (either normal or reverse). */ #define EXIT_PURPOSE_RESOLVE 2 #define _EXIT_PURPOSE_MAX 2 @@ -1575,10 +1577,10 @@ typedef struct { * addresses to be FQDNs, but rather search for them in * the local domains. */ int ServerDNSDetectHijacking; /**< Boolean: If true, check for DNS failure - * hijacking */ + * hijacking. */ char *ServerDNSResolvConfFile; /**< If provided, we configure our internal * resolver from the file here rather than from - * /etc/resolv.conf (unix) or the registry (windows) */ + * /etc/resolv.conf (Unix) or the registry (Windows). */ } or_options_t; /** Persistent state for an onion router, as saved to disk. */ |