diff options
author | Tobias Markmann <tm@ayena.de> | 2016-02-01 16:23:59 (GMT) |
---|---|---|
committer | Tobias Markmann <tm@ayena.de> | 2016-02-01 16:23:59 (GMT) |
commit | 3afd061b713ce5fff604dee62dec8410a1de6a9c (patch) | |
tree | 07e0e24d9fbdacc8c03aac231190c669b2e19ef9 | |
parent | 1db3724bd248d98e877f0be1485ef54b3ce503a7 (diff) | |
download | swift-3afd061b713ce5fff604dee62dec8410a1de6a9c.zip swift-3afd061b713ce5fff604dee62dec8410a1de6a9c.tar.bz2 |
Disable certificate revocation checking in OS X TLS backend
Default to disabled certificate revocation checking for
SecureTransport TLS backend on OS X. SecureTransport internal
revocation checking machine is not very stable and sometimes
fails reporting a positive revocation check leading to bad
UX.
Test-Information:
Swift login still works and ./scons test=system pass on OS X
10.11.3.
Change-Id: I298ccca4ecab07af5517fe393fdb887d79d70bf1
-rw-r--r-- | Swiften/TLS/SecureTransport/SecureTransportContextFactory.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Swiften/TLS/SecureTransport/SecureTransportContextFactory.cpp b/Swiften/TLS/SecureTransport/SecureTransportContextFactory.cpp index eb761e9..ce19839 100644 --- a/Swiften/TLS/SecureTransport/SecureTransportContextFactory.cpp +++ b/Swiften/TLS/SecureTransport/SecureTransportContextFactory.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Isode Limited. + * Copyright (c) 2015-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ @@ -11,7 +11,10 @@ namespace Swift { -SecureTransportContextFactory::SecureTransportContextFactory() : checkCertificateRevocation_(true), disconnectOnCardRemoval_(true) { +// Default to disabled revocation checking as SecureTransport API is missing +// methods for detailed revocation checking configuration which are needed for +// good UX. +SecureTransportContextFactory::SecureTransportContextFactory() : checkCertificateRevocation_(false), disconnectOnCardRemoval_(true) { } |