diff options
author | Karsten Loesing <karsten.loesing@gmx.net> | 2008-07-10 21:02:01 +0000 |
---|---|---|
committer | Karsten Loesing <karsten.loesing@gmx.net> | 2008-07-10 21:02:01 +0000 |
commit | 9231858ff54d9c8eda671bf9fe69f019b136f35d (patch) | |
tree | 7ff1c5a3d33fbc2e109748d7337ad721a934a0b7 /src/common | |
parent | cb7cc9e12d66907343e1522e7128de206c0dc86f (diff) | |
download | tor-9231858ff54d9c8eda671bf9fe69f019b136f35d.tar.gz tor-9231858ff54d9c8eda671bf9fe69f019b136f35d.zip |
Fix bug 763. When a hidden service is giving up on an introduction point candidate that was not included in the last published rendezvous descriptor, don't reschedule publication of the next descriptor.
svn:r15825
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/tortls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tortls.c b/src/common/tortls.c index d2751d1653..67c68fe6d4 100644 --- a/src/common/tortls.c +++ b/src/common/tortls.c @@ -564,7 +564,7 @@ tor_tls_context_new(crypto_pk_env_t *identity, unsigned int key_lifetime) SSL_CTX_set_options(result->ctx, SSL_OP_NO_SSLv2); #endif SSL_CTX_set_options(result->ctx, SSL_OP_SINGLE_DH_USE); - + #ifdef SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION SSL_CTX_set_options(result->ctx, SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION); |