summaryrefslogtreecommitdiffstats
blob: b311c7dea9bc2f200dd3f721bf461191675594c8 (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
26
27
28
/*
 * Copyright (c) 2011-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#include <Swiften/Network/TLSConnectionFactory.h>

#include <memory>

#include <Swiften/Network/TLSConnection.h>

namespace Swift {

TLSConnectionFactory::TLSConnectionFactory(TLSContextFactory* contextFactory, ConnectionFactory* connectionFactory, const TLSOptions& o) : contextFactory(contextFactory), connectionFactory(connectionFactory), options_(o) {

}

TLSConnectionFactory::~TLSConnectionFactory() {

}


std::shared_ptr<Connection> TLSConnectionFactory::createConnection() {
    return std::make_shared<TLSConnection>(connectionFactory->createConnection(), contextFactory, options_);
}

}