diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-10-05 23:52:14 -0700 |
---|---|---|
committer | Robert Ransom <rransom.8774@gmail.com> | 2011-10-30 02:17:04 -0700 |
commit | 6f035cb2b450e8779bff50d6ed83e4822a49f0fe (patch) | |
tree | a736aaf10663d4e51bd64186458b13272129f25d /src/or/or.h | |
parent | 6b26999146ab5e21fbfe43fe5084005a34ba2415 (diff) | |
download | tor-6f035cb2b450e8779bff50d6ed83e4822a49f0fe.tar.gz tor-6f035cb2b450e8779bff50d6ed83e4822a49f0fe.zip |
Record the number of INTRODUCE2 cells each intro point has received
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 cf241a6442..215bde245b 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3481,6 +3481,10 @@ typedef struct rend_intro_point_t { * circuit-build timeout. See also MAX_INTRO_POINT_REACHABILITY_FAILURES. */ unsigned int unreachable_count : 3; + /** (Service side only) The number of INTRODUCE2 cells this intro + * point's circuit has received. */ + unsigned int introduction_count : 24; + /** (Service side only) The time at which this intro point was first * published, or -1 if this intro point has not yet been * published. */ |