blob: 0c21650ea98dc2d3b88a7927825912070d499996 (
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 Kevin Smith
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#include <Swiften/Network/TLSConnectionFactory.h>
#include <boost/shared_ptr.hpp>
#include <Swiften/Network/TLSConnection.h>
namespace Swift {
TLSConnectionFactory::TLSConnectionFactory(TLSContextFactory* contextFactory, ConnectionFactory* connectionFactory) : contextFactory(contextFactory), connectionFactory(connectionFactory){
}
TLSConnectionFactory::~TLSConnectionFactory() {
}
boost::shared_ptr<Connection> TLSConnectionFactory::createConnection() {
return boost::make_shared<TLSConnection>(connectionFactory->createConnection(), contextFactory);
}
}
|