diff options
author | Roger Dingledine <arma@torproject.org> | 2004-08-07 03:03:23 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-08-07 03:03:23 +0000 |
commit | 052537dad9130635d657152508e0aa15b8786a9a (patch) | |
tree | 58b1385f30a54cc8baeb31bf60f36223118158d0 /src | |
parent | b0c9ba99f8ed70252b477b9edce98b94c7fc1da5 (diff) | |
download | tor-052537dad9130635d657152508e0aa15b8786a9a.tar.gz tor-052537dad9130635d657152508e0aa15b8786a9a.zip |
rotate onion keys every 12 hours, not every 2 hours
svn:r2184
Diffstat (limited to 'src')
-rw-r--r-- | src/or/or.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/or.h b/src/or/or.h index 7303031d66..995b5e5a7a 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -135,7 +135,7 @@ #endif /** How often do we rotate onion keys? */ -#define MIN_ONION_KEY_LIFETIME (120*60) +#define MIN_ONION_KEY_LIFETIME (12*60*60) /** How often do we rotate TLS contexts? */ #define MAX_SSL_KEY_LIFETIME (120*60) |