diff options
author | Roger Dingledine <arma@torproject.org> | 2016-05-11 15:31:48 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2016-05-27 11:15:21 -0400 |
commit | 11d52a449c61b24588c17688892e07fa395ffd0c (patch) | |
tree | f8af0eaed1203f7a929b766b8985bf33eac20d98 /src/or/circuitbuild.c | |
parent | 48b7db35590afee77fb608b46328959e8a9b2d31 (diff) | |
download | tor-11d52a449c61b24588c17688892e07fa395ffd0c.tar.gz tor-11d52a449c61b24588c17688892e07fa395ffd0c.zip |
Disable GET /tor/bytes.txt and GETINFO dir-usage
Remove support for "GET /tor/bytes.txt" DirPort request, and
"GETINFO dir-usage" controller request, which were only available
via a compile-time option in Tor anyway.
Feature was added in 0.2.2.1-alpha. Resolves ticket 19035.
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 e6fe3f0c37..6941b438ff 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; |