diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-05-27 13:22:16 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-05-27 13:22:16 -0400 |
commit | 1e5ad15688ee3f3660fe35cab23022126b55262d (patch) | |
tree | 2d0441c9faf68dbb9c02f0c1dfab62cd7a584ca9 /src/or/circuitbuild.c | |
parent | 617b9205515a8ee5f9ddf4fac14eff5178111641 (diff) | |
parent | 3b83da1069f963bc0e9806cdeebc16fb8c2a6129 (diff) | |
download | tor-1e5ad15688ee3f3660fe35cab23022126b55262d.tar.gz tor-1e5ad15688ee3f3660fe35cab23022126b55262d.zip |
Merge remote-tracking branch 'arma/task19035-fixedup'
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 71344620c9..5980ceaf9b 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -884,14 +884,12 @@ circuit_send_next_onion_skin(origin_circuit_t *circ) */ circuit_pick_create_handshake(&cc.cell_type, &cc.handshake_type, circ->cpath->extend_info); - note_request("cell: create", 1); } else { /* We are not an OR, and we're building the first hop of a circuit to a * new OR: we can be speedy and use CREATE_FAST to save an RSA operation * and a DH operation. */ cc.cell_type = CELL_CREATE_FAST; cc.handshake_type = ONION_HANDSHAKE_TYPE_FAST; - note_request("cell: create fast", 1); } len = onion_skin_create(cc.handshake_type, @@ -1024,7 +1022,6 @@ circuit_send_next_onion_skin(origin_circuit_t *circ) ec.create_cell.handshake_len = len; log_info(LD_CIRC,"Sending extend relay cell."); - note_request("cell: extend", 1); { uint8_t command = 0; uint16_t payload_len=0; |