diff options
author | Roger Dingledine <arma@torproject.org> | 2018-01-31 03:21:27 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-02-16 08:46:31 -0500 |
commit | 2b99350ca4c905db1bd4f1aecc630b4f55933e96 (patch) | |
tree | 5be9cab5d9845738ae30d16892d09d3a24373f04 /src/or/command.c | |
parent | 8d5dcdbda2160b6375cb479827d8cc2f16e06777 (diff) | |
download | tor-2b99350ca4c905db1bd4f1aecc630b4f55933e96.tar.gz tor-2b99350ca4c905db1bd4f1aecc630b4f55933e96.zip |
stop calling channel_mark_client in response to a create_fast
since all it does is produce false positives
this commit should get merged into 0.2.9 and 0.3.0 *and* 0.3.1, even
though the code in the previous commit is already present in 0.3.1. sorry
for the mess.
Diffstat (limited to 'src/or/command.c')
-rw-r--r-- | src/or/command.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/or/command.c b/src/or/command.c index 5866c386e4..8831446f0b 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -344,10 +344,6 @@ command_process_create_cell(cell_t *cell, channel_t *chan) int len; created_cell_t created_cell; - /* Make sure we never try to use the OR connection on which we - * received this cell to satisfy an EXTEND request, */ - channel_mark_client(chan); - memset(&created_cell, 0, sizeof(created_cell)); len = onion_skin_server_handshake(ONION_HANDSHAKE_TYPE_FAST, create_cell->onionskin, |