/* * Copyright (c) 2012 Tobias Markmann * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #include #include #include namespace Swift { bool SecureTransportContextFactory::canCreate() const { return true; } TLSContext* SecureTransportContextFactory::createTLSContext() { return null; } void SecureTransportContextFactory::setCheckCertificateRevocation(bool check) { } }