diff options
author | Nick Mathewson <nickm@torproject.org> | 2006-09-21 21:48:42 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2006-09-21 21:48:42 +0000 |
commit | 6a1746f98f58fd22dce2ce34840b10012b5467dd (patch) | |
tree | c841e8d0e7522e31543583c32cc4358a2dfcc6af /src/or/circuituse.c | |
parent | d273d529798e44c315c94437f27c3a1349794179 (diff) | |
download | tor-6a1746f98f58fd22dce2ce34840b10012b5467dd.tar.gz tor-6a1746f98f58fd22dce2ce34840b10012b5467dd.zip |
r8877@Kushana: nickm | 2006-09-21 17:12:33 -0400
Consider non-exit servers unsuitable for RESOLVE commands.
svn:r8442
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 5ac48047df..88b36a6e8f 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -929,9 +929,9 @@ circuit_reset_failure_count(int timeout) n_circuit_failures = 0; } -/** Find an open circ that we're happy with: return 1. If there isn't - * one, and there isn't one on the way, launch one and return 0. If it - * will never work, return -1. +/** Find an open circ that we're happy to use for <b>conn</b> and return 1. If + * there isn't one, and there isn't one on the way, launch one and return + * 0. If it will never work, return -1. * * Write the found or in-progress or launched circ into *circp. */ |