summaryrefslogtreecommitdiffstats
blob: a8e3d0a0ec013959eff5c12aefb52e9ea7affbc2 (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
/*
 * Copyright (c) 2010 Remko Tronçon
 * Licensed under the GNU General Public License v3.
 * See Documentation/Licenses/GPLv3.txt for more information.
 */

#include "Swiften/Network/BoostNetworkFactories.h"
#include "Swiften/Network/BoostTimerFactory.h"
#include "Swiften/Network/BoostConnectionFactory.h"
#include <Swiften/Network/PlatformDomainNameResolver.h>

namespace Swift {

BoostNetworkFactories::BoostNetworkFactories(EventLoop* eventLoop) {
	timerFactory = new BoostTimerFactory(ioServiceThread.getIOService(), eventLoop);
	connectionFactory = new BoostConnectionFactory(ioServiceThread.getIOService(), eventLoop);
	domainNameResolver = new PlatformDomainNameResolver(eventLoop);
}

BoostNetworkFactories::~BoostNetworkFactories() {
	delete domainNameResolver;
	delete connectionFactory;
	delete timerFactory;
}

}