diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-12-24 04:55:20 -0800 |
---|---|---|
committer | Robert Ransom <rransom.8774@gmail.com> | 2011-12-27 08:02:43 -0800 |
commit | 836161c56062686d274abf4218779c4db5c8cf5c (patch) | |
tree | 382e1825809d3ac785082c6e52773342e3ddd5da /src/or/or.h | |
parent | f88c8ca8c98dc3a0c9e63012ce425d1287625444 (diff) | |
download | tor-836161c56062686d274abf4218779c4db5c8cf5c.tar.gz tor-836161c56062686d274abf4218779c4db5c8cf5c.zip |
Add an option to 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 3ac8b92516..e246ac42e2 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3066,6 +3066,10 @@ typedef struct { * an INTRODUCE1 cell on its way to the service. */ int CloseHSClientCircuitsImmediatelyOnTimeout; + /** Close hidden-service-side rendezvous circuits immediately when + * they reach the normal circuit-build timeout. */ + int CloseHSServiceRendCircuitsImmediatelyOnTimeout; + int ConnLimit; /**< Demanded minimum number of simultaneous connections. */ int _ConnLimit; /**< Maximum allowed number of simultaneous connections. */ int RunAsDaemon; /**< If true, run in the background. (Unix only) */ |