tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 298932605495dc9ef3e8e068c36a80a517036195
parent 4e5e973421ce17c1b4466722390f0e47bdeaa527
Author: Nick Mathewson <nickm@torproject.org>
Date:   Sat, 17 Mar 2018 10:03:53 -0400

Rename 'relay_crypt' to 'relay_decrypt_cell'

This function is used upon receiving a cell, and only handles the
decrypting part.  The encryption part is currently handled inside
circuit_package_relay_cell.

Diffstat:
Msrc/or/relay.c | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/src/or/relay.c b/src/or/relay.c @@ -299,7 +299,8 @@ circuit_receive_relay_cell(cell_t *cell, circuit_t *circ, if (circ->marked_for_close) return 0; - if (relay_crypt(circ, cell, cell_direction, &layer_hint, &recognized) < 0) { + if (relay_decrypt_cell(circ, cell, cell_direction, &layer_hint, &recognized) + < 0) { log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL, "relay crypt failed. Dropping connection."); return -END_CIRC_REASON_INTERNAL; @@ -422,8 +423,9 @@ circuit_receive_relay_cell(cell_t *cell, circuit_t *circ, * else return 0. */ int -relay_crypt(circuit_t *circ, cell_t *cell, cell_direction_t cell_direction, - crypt_path_t **layer_hint, char *recognized) +relay_decrypt_cell(circuit_t *circ, cell_t *cell, + cell_direction_t cell_direction, + crypt_path_t **layer_hint, char *recognized) { relay_header_t rh;