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.
This commit is contained in:
Nick Mathewson 2018-03-17 10:03:53 -04:00
parent 4e5e973421
commit 2989326054
1 changed files with 5 additions and 3 deletions

View File

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