summaryrefslogtreecommitdiff
path: root/src/or/command.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2009-10-26 01:32:27 -0400
committerRoger Dingledine <arma@torproject.org>2009-10-26 01:32:27 -0400
commitfa23430496f2675c2dca5dbc0c6455c404c184fe (patch)
tree017ff438f616726afdaa35dbc80fee5c25d62106 /src/or/command.c
parentc97a4878af5267a06db4b45a4ed1f70dda7106f2 (diff)
downloadtor-fa23430496f2675c2dca5dbc0c6455c404c184fe.tar.gz
tor-fa23430496f2675c2dca5dbc0c6455c404c184fe.zip
clean up the XXX comments around bug 1038
Diffstat (limited to 'src/or/command.c')
-rw-r--r--src/or/command.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/command.c b/src/or/command.c
index 67e463723f..8ed5a96019 100644
--- a/src/or/command.c
+++ b/src/or/command.c
@@ -395,8 +395,10 @@ command_process_relay_cell(cell_t *cell, or_connection_t *conn)
* gotten no more than MAX_RELAY_EARLY_CELLS_PER_CIRCUIT of them. */
if (cell->command == CELL_RELAY_EARLY) {
if (direction == CELL_DIRECTION_IN) {
- /* XXX Allow an unlimited number of inbound relay_early cells for
- * now, for hidden service compatibility. See bug 1038. -RD */
+ /* Allow an unlimited number of inbound relay_early cells,
+ * for hidden service compatibility. There isn't any way to make
+ * a long circuit through inbound relay_early cells anyway. See
+ * bug 1038. -RD */
} else {
or_circuit_t *or_circ = TO_OR_CIRCUIT(circ);
if (or_circ->remaining_relay_early_cells == 0) {