summaryrefslogtreecommitdiffstats
blob: adc1a931fbedc9eb3d3df02ad5438edd27bb7d63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * Copyright (c) 2012 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information. 
 */

#include <Swiften/TLS/SecureTransport/SecureTransportContextFactory.h>
#include <Swiften/TLS/SecureTransport/SecureTransportContext.h>
#include <Swiften/Base/Log.h>

namespace Swift {

bool SecureTransportContextFactory::canCreate() const {
	return true;
}

TLSContext* SecureTransportContextFactory::createTLSContext() {
	return null;
}

void SecureTransportContextFactory::setCheckCertificateRevocation(bool check) {

}

}