summaryrefslogtreecommitdiff
path: root/src/or/command.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2003-06-13 09:59:33 +0000
committerRoger Dingledine <arma@torproject.org>2003-06-13 09:59:33 +0000
commit9a33b59ece152692acf25c8e98bf5ec46e1474c0 (patch)
tree7d9fa49ebf2f2151a85f4cc5d5d3d3d467c64cb1 /src/or/command.c
parent1454f4aded3bb2b99d59d7f2bf1fb636403b17d8 (diff)
downloadtor-9a33b59ece152692acf25c8e98bf5ec46e1474c0.tar.gz
tor-9a33b59ece152692acf25c8e98bf5ec46e1474c0.zip
relay queues are obsolete (woo!)
they used to be used for * queueing relay cells at the edge of the network, when windows are empty * queueing relay cells that arrive after an onion but before the onion has been processed. both of these uses are gone. so out they go. svn:r315
Diffstat (limited to 'src/or/command.c')
-rw-r--r--src/or/command.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/command.c b/src/or/command.c
index 3ed153f7fe..54cfb11cb5 100644
--- a/src/or/command.c
+++ b/src/or/command.c
@@ -167,8 +167,7 @@ void command_process_relay_cell(cell_t *cell, connection_t *conn) {
}
if(circ->state == CIRCUIT_STATE_ONIONSKIN_PENDING) {
- log(LOG_DEBUG,"command_process_relay_cell(): circuit in create_wait. Queueing relay cell.");
- onion_pending_relay_add(circ, cell);
+ log(LOG_DEBUG,"command_process_relay_cell(): circuit in create_wait. Dropping.");
return;
}