diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-12-18 16:11:03 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-12-18 16:11:03 +0000 |
commit | ecaee1d927bf721ecc70cee162cabba677e6affe (patch) | |
tree | c7e2bdd91345e3a272005b83ea246b6694ca6525 /src/or/circuituse.c | |
parent | f9133f2528756cd73416cd70cb233abdb3b52721 (diff) | |
download | tor-ecaee1d927bf721ecc70cee162cabba677e6affe.tar.gz tor-ecaee1d927bf721ecc70cee162cabba677e6affe.zip |
Remove fixed xxx020s; downgrade unfixed ones.
(The unfixed ones are being downgraded to regular XXXs mainly on the rationale that they don't seem to be exploding Tor, and they were apparently not showstoppers for 0.2.0.x-final.)
svn:r17682
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 42a7aac6e8..6e2c96392e 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -234,7 +234,7 @@ circuit_get_best(edge_connection_t *conn, int must_be_open, uint8_t purpose, /** Check whether, according to the policies in <b>options</b>, the * circuit <b>circ makes sense. */ -/* XXXX021 currently only checks Exclude{Exit}Nodes. */ +/* XXXX currently only checks Exclude{Exit}Nodes. It should check more. */ int circuit_conforms_to_options(const origin_circuit_t *circ, const or_options_t *options) @@ -933,7 +933,7 @@ circuit_launch_by_extend_info(uint8_t purpose, if ((extend_info || purpose != CIRCUIT_PURPOSE_C_GENERAL) && purpose != CIRCUIT_PURPOSE_TESTING && !onehop_tunnel) { /* see if there are appropriate circs available to cannibalize. */ - /* XXX020 if we're planning to add a hop, perhaps we want to look for + /* XXX if we're planning to add a hop, perhaps we want to look for * internal circs rather than exit circs? -RD */ circ = circuit_find_to_cannibalize(purpose, extend_info, flags); if (circ) { |