diff options
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/onion.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/onion.c b/src/or/onion.c index fc3e621f7..329b01c20 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -560,7 +560,8 @@ check_created_cell(const created_cell_t *cell) { switch (cell->cell_type) { case CELL_CREATED: - if (cell->handshake_len != TAP_ONIONSKIN_REPLY_LEN) + if (cell->handshake_len != TAP_ONIONSKIN_REPLY_LEN && + cell->handshake_len != NTOR_REPLY_LEN) return -1; break; case CELL_CREATED_FAST: |