aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/or/circuitbuild.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index 8a57d8387a..9ae516be60 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -983,8 +983,8 @@ circuit_send_next_onion_skin(origin_circuit_t *circ)
if (r == GUARD_USABLE_NOW) {
circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_OPEN);
} else if (r == GUARD_MAYBE_USABLE_LATER) {
- // XXXX prop271 we might want to probe for whether this
- // XXXX one is ready even before the next second rolls over.
+ // Wait till either a better guard succeeds, or till
+ // all better guards fail.
circuit_set_state(TO_CIRCUIT(circ), CIRCUIT_STATE_GUARD_WAIT);
} else {
tor_assert_nonfatal(r == GUARD_USABLE_NEVER);