diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-12-24 04:47:30 -0800 |
---|---|---|
committer | Robert Ransom <rransom.8774@gmail.com> | 2011-12-27 08:02:43 -0800 |
commit | f88c8ca8c98dc3a0c9e63012ce425d1287625444 (patch) | |
tree | b61d52edad8fec8dc045ddd53e2bc49b6f0666bf /src/or/or.h | |
parent | 078e3e9dd59520b7f40a126a91e89eba91098c49 (diff) | |
download | tor-f88c8ca8c98dc3a0c9e63012ce425d1287625444.tar.gz tor-f88c8ca8c98dc3a0c9e63012ce425d1287625444.zip |
Don't close HS service-side rend circs on timeout
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index d84f04b250..3ac8b92516 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2614,6 +2614,10 @@ typedef struct origin_circuit_t { * circuit. */ unsigned int hs_circ_has_timed_out : 1; + /** Set iff this is a service-side rendezvous circuit for which a + * new connection attempt has been launched. */ + unsigned int hs_service_side_rend_circ_has_been_relaunched : 1; + /** What commands were sent over this circuit that decremented the * RELAY_EARLY counter? This is for debugging task 878. */ uint8_t relay_early_commands[MAX_RELAY_EARLY_CELLS_PER_CIRCUIT]; |