diff options
author | David Goulet <dgoulet@ev0ke.net> | 2015-06-16 10:29:29 -0400 |
---|---|---|
committer | David Goulet <dgoulet@ev0ke.net> | 2015-06-17 09:32:26 -0400 |
commit | a5b5d4bd2ea08c2db84aa53f44111f8492af1f62 (patch) | |
tree | c712bb5a39cbccef1232e3c74d9d03dd63d79d92 /src/or/circuituse.c | |
parent | 43a98c7da6183e6e2e20784faed9f1c8aea5086e (diff) | |
download | tor-a5b5d4bd2ea08c2db84aa53f44111f8492af1f62.tar.gz tor-a5b5d4bd2ea08c2db84aa53f44111f8492af1f62.zip |
Extend intro point to a 4th hop on cannibalization
Fixes #16260
Signed-off-by: David Goulet <dgoulet@ev0ke.net>
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 28c70ad22c..69d0f76a1a 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -1766,12 +1766,12 @@ circuit_launch_by_extend_info(uint8_t purpose, switch (purpose) { case CIRCUIT_PURPOSE_C_ESTABLISH_REND: - case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO: /* it's ready right now */ break; case CIRCUIT_PURPOSE_C_INTRODUCING: case CIRCUIT_PURPOSE_S_CONNECT_REND: case CIRCUIT_PURPOSE_C_GENERAL: + case CIRCUIT_PURPOSE_S_ESTABLISH_INTRO: /* need to add a new hop */ tor_assert(extend_info); if (circuit_extend_to_new_exit(circ, extend_info) < 0) |