diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-12-13 05:00:09 -0800 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-12-20 11:15:33 -0500 |
commit | dae000735e75b178cdf27000d316f6504bf61373 (patch) | |
tree | 682e685000f3199e8508a148208775443d8dadf5 /src/or/or.h | |
parent | 46783eb6d7f6668ccfad6c4c44021e606cccdbcb (diff) | |
download | tor-dae000735e75b178cdf27000d316f6504bf61373.tar.gz tor-dae000735e75b178cdf27000d316f6504bf61373.zip |
Adjust n_intro_points_wanted when a service's intro points are closed
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index 6ff02ee36c..63ff5c4b31 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4114,6 +4114,11 @@ typedef struct rend_intro_point_t { * included in the last HS descriptor we generated. */ unsigned int listed_in_last_desc : 1; + /** (Service side only) Flag indicating that + * rend_service_note_removing_intro_point has been called for this + * intro point. */ + unsigned int rend_service_note_removing_intro_point_called : 1; + /** (Service side only) A digestmap recording the INTRODUCE2 cells * this intro point's circuit has received. Each key is the digest * of the RSA-encrypted part of a received INTRODUCE2 cell; each |