diff options
author | Nick Mathewson <nickm@torproject.org> | 2009-01-04 19:47:21 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2009-01-04 19:47:21 +0000 |
commit | 92ce533f71428c324cadcd4e8feae933a8622a81 (patch) | |
tree | 3906afce8c442fa61420d8f9844b3b77c98bbd9a /src/or/connection_edge.c | |
parent | 9c94b428d9f30f1c5a493856cfea293c634a3c9f (diff) | |
download | tor-92ce533f71428c324cadcd4e8feae933a8622a81.tar.gz tor-92ce533f71428c324cadcd4e8feae933a8622a81.zip |
Another round of downgrading removing or postponing XXXX021 issues. Some remain, though.
svn:r17888
Diffstat (limited to 'src/or/connection_edge.c')
-rw-r--r-- | src/or/connection_edge.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 330275a964..52c123c8d5 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -504,7 +504,7 @@ connection_ap_attach_pending(void) /** Tell any AP streams that are waiting for a onehop tunnel to * <b>failed_digest</b> that they are going to fail. */ -/* XXX021 We should get rid of this function, and instead attach +/* XXX022 We should get rid of this function, and instead attach * onehop streams to circ->p_streams so they get marked in * circuit_mark_for_close like normal p_streams. */ void @@ -2294,7 +2294,7 @@ tell_controller_about_resolved_result(edge_connection_t *conn, * certain errors or for values that didn't come via DNS. <b>expires</b> is * a time when the answer expires, or -1 or TIME_MAX if there's a good TTL. **/ -/* XXXX021 the use of the ttl and expires fields is nutty. Let's make this +/* XXXX022 the use of the ttl and expires fields is nutty. Let's make this * interface and those that use it less ugly. */ void connection_ap_handshake_socks_resolved(edge_connection_t *conn, @@ -2828,7 +2828,7 @@ int connection_edge_is_rendezvous_stream(edge_connection_t *conn) { tor_assert(conn); - if (conn->rend_data) /* XXX */ /* XXXX Why is this XXX? -NM */ + if (conn->rend_data) return 1; return 0; } |