diff options
author | Roger Dingledine <arma@torproject.org> | 2006-09-07 01:23:15 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-09-07 01:23:15 +0000 |
commit | ae67a044f0a47225ddbf19b09eb70e9423528f05 (patch) | |
tree | 5ecdc149bf97eb77ae8234b130e67eaa3db5e80f /src/or | |
parent | 102ae79f252b2b0395c825ab520a6717b6a3183a (diff) | |
download | tor-ae67a044f0a47225ddbf19b09eb70e9423528f05.tar.gz tor-ae67a044f0a47225ddbf19b09eb70e9423528f05.zip |
clean up some comments
svn:r8338
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/dns.c | 2 | ||||
-rw-r--r-- | src/or/or.h | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/or/dns.c b/src/or/dns.c index 530b5e8043..a8771f0237 100644 --- a/src/or/dns.c +++ b/src/or/dns.c @@ -674,7 +674,7 @@ dns_cancel_pending_resolve(char *address) } /** Helper: adds an entry to the DNS cache mapping <b>address</b> to the ipv4 - * address 'addr'. 'ttl is a cache ttl; 'outcome' is one of + * address <b>addr</b>. <b>ttl</b> is a cache ttl; <b>outcome</b> is one of * DNS_RESOLVE_{FAILED_TRANSIENT|FAILED_PERMANENT|SUCCEEDED}. */ static void add_answer_to_cache(const char *address, uint32_t addr, char outcome, diff --git a/src/or/or.h b/src/or/or.h index f3ad5bd9fa..01b489533e 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1559,8 +1559,8 @@ typedef struct { char *VirtualAddrNetwork; /**< Address and mask to hand out for virtual * MAPADDRESS requests. */ - int SearchDomains; /**< If provided, we don't force exit addresses to be - * fqdns, but rather search for them in the local + int SearchDomains; /**< Boolean: If set, we don't force exit addresses to + * be FQDNs, but rather search for them in the local * domains. */ char *ResolvConf; /**< If provided, we configure our internal resolver from * the file here rather than from /etc/resolv.conf (unix) |