diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-05-15 11:37:33 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-05-15 11:37:33 -0400 |
commit | 2bb6bdc3f9354a57b3daf0dbb494123cf39ba29f (patch) | |
tree | 34ba6dd64bde0e9af20da9b20e0772ac0926b37e | |
parent | da8297dbcb6a44d2291878b01779500640e4d0b1 (diff) | |
download | tor-2bb6bdc3f9354a57b3daf0dbb494123cf39ba29f.tar.gz tor-2bb6bdc3f9354a57b3daf0dbb494123cf39ba29f.zip |
Better doc for consider_recording_trackexithost
-rw-r--r-- | src/or/circuituse.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 6e069b1670..86db7c3a02 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -1505,8 +1505,10 @@ hostname_in_track_host_exits(or_options_t *options, const char *address) return 0; } -/** If an exit wasn't specifically chosen, save the history for future - * use. */ +/** If an exit wasn't explicitly specified for <b>conn</b>, consider saving + * the exit that we *did* choose for use by future connections to + * <b>conn</b>'s destination. + */ static void consider_recording_trackhost(edge_connection_t *conn, origin_circuit_t *circ) { |