diff options
author | Badlop <badlop@process-one.net> | 2009-02-27 15:42:27 +0000 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2009-02-27 15:42:27 +0000 |
commit | 3a5fb440cc1d78e7412b1e708866c835ce2a9070 (patch) | |
tree | 3705a83e6f98eb11534f70ea9a35cd81ea29e407 /src | |
parent | * src/mod_proxy65/mod_proxy65_service.erl: if an ip option is not defined, th... (diff) |
* src/tls/tls_drv.c: S2S connection with STARTTLS fails to Gtalk
and recent Openfire (thanks to Philipp Hancke)(EJAB-877)
SVN Revision: 1926
Diffstat (limited to 'src')
-rw-r--r-- | src/tls/tls_drv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/tls_drv.c b/src/tls/tls_drv.c index 3ca8ba777..e7b07028b 100644 --- a/src/tls/tls_drv.c +++ b/src/tls/tls_drv.c @@ -367,7 +367,7 @@ static int tls_drv_control(ErlDrvData handle, if (command == SET_CERTIFICATE_FILE_ACCEPT) SSL_set_accept_state(d->ssl); else { - SSL_set_options(d->ssl, SSL_OP_NO_SSLv2); + SSL_set_options(d->ssl, SSL_OP_NO_SSLv2|SSL_OP_NO_TICKET); SSL_set_connect_state(d->ssl); } break; |