mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-28 06:13:31 +01:00
Fix handling of ntor handshakes received via CREATE cells
Fixes bug 7959; bugfix on 0.2.4.8-alpha.
This commit is contained in:
parent
ebf30613ea
commit
beca92c31b
6
changes/bug7959
Normal file
6
changes/bug7959
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
o Major bugfixes:
|
||||||
|
- Fix backward compatibility logic when receiving an embedded ntor
|
||||||
|
handshake tunneled in a CREATE cell. This clears up the "Bug: couldn't
|
||||||
|
format CREATED cell" warning. Fix for bug 7959; bugfix on
|
||||||
|
0.2.4.8-alpha.
|
||||||
|
|
@ -560,7 +560,8 @@ check_created_cell(const created_cell_t *cell)
|
|||||||
{
|
{
|
||||||
switch (cell->cell_type) {
|
switch (cell->cell_type) {
|
||||||
case CELL_CREATED:
|
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;
|
return -1;
|
||||||
break;
|
break;
|
||||||
case CELL_CREATED_FAST:
|
case CELL_CREATED_FAST:
|
||||||
|
Loading…
Reference in New Issue
Block a user