diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-06-15 09:37:40 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2012-06-15 15:07:52 -0400 |
commit | 2491fff5a6fda1c1e2044d332e551907a579929d (patch) | |
tree | cc8dac418a9ae68b9e7ec717f3a8764d532584be /src/or/circuitbuild.c | |
parent | 8030ec4f272d470b9d01b7095f17252aaca163c2 (diff) | |
download | tor-2491fff5a6fda1c1e2044d332e551907a579929d.tar.gz tor-2491fff5a6fda1c1e2044d332e551907a579929d.zip |
Triage the XXX023 and XXX022 comments: postpone many.
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 149383eed9..cfd1956e5f 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -44,12 +44,12 @@ /********* START VARIABLES **********/ /** Global list of circuit build times */ -// XXXX023: Add this as a member for entry_guard_t instead of global? +// XXXX: Add this as a member for entry_guard_t instead of global? // Then we could do per-guard statistics, as guards are likely to // vary in their own latency. The downside of this is that guards // can change frequently, so we'd be building a lot more circuits // most likely. -/* XXXX023 Make this static; add accessor functions. */ +/* XXXX024 Make this static; add accessor functions. */ circuit_build_times_t circ_times; /** A global list of all circuits at this hop. */ @@ -4238,7 +4238,7 @@ entry_guards_compute_status(const or_options_t *options, time_t now) * If <b>mark_relay_status</b>, also call router_set_status() on this * relay. * - * XXX023 change succeeded and mark_relay_status into 'int flags'. + * XXX024 change succeeded and mark_relay_status into 'int flags'. */ int entry_guard_register_connect_status(const char *digest, int succeeded, @@ -4763,7 +4763,7 @@ entry_guards_parse_state(or_state_t *state, int set, char **msg) } entry_guards = new_entry_guards; entry_guards_dirty = 0; - /* XXX023 hand new_entry_guards to this func, and move it up a + /* XXX024 hand new_entry_guards to this func, and move it up a * few lines, so we don't have to re-dirty it */ if (remove_obsolete_entry_guards(now)) entry_guards_dirty = 1; |