diff options
author | Roger Dingledine <arma@torproject.org> | 2009-12-29 23:13:03 -0500 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2009-12-29 23:13:03 -0500 |
commit | 4d71d437726692ee65bdb7c2968a65de6ba3f786 (patch) | |
tree | cf481fefb088775a129e7db249c1bcefdf242f02 /src/or/or.h | |
parent | f255272f45a2ae563862a14d3862b81d0ffee72f (diff) | |
download | tor-4d71d437726692ee65bdb7c2968a65de6ba3f786.tar.gz tor-4d71d437726692ee65bdb7c2968a65de6ba3f786.zip |
add config options to override.
somebody should add man page entries.
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index cd9b905dc5..091d819f79 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2513,6 +2513,8 @@ typedef struct { * willing to use for all relayed conns? */ uint64_t RelayBandwidthBurst; /**< How much bandwidth, at maximum, will we * use in a second for all relayed conns? */ + uint64_t PerConnBWRate; /**< Long-term bw on a single TLS conn, if set. */ + uint64_t PerConnBWBurst; /**< Allowed burst on a single TLS conn, if set. */ int NumCpus; /**< How many CPUs should we try to use? */ int RunTesting; /**< If true, create testing circuits to measure how well the * other ORs are running. */ |