blob: 3750057e7400890733df4d95232c156e3c60c24b (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
/*
* Copyright (c) 2011 Thilo Cestonaro
* Licensed under the simplified BSD license.
* See Documentation/Licenses/BSD-simplified.txt for more information.
*/
/*
* Copyright (c) 2011 Kevin Smith
* Licensed under the GNU General Public License v3.
* See Documentation/Licenses/GPLv3.txt for more information.
*/
#pragma once
#include <string>
#include <Swiften/Network/ConnectionFactory.h>
#include <Swiften/Network/HostAddressPort.h>
#include <Swiften/TLS/TLSContextFactory.h>
#include <Swiften/Base/URL.h>
namespace Swift {
class XMLParserFactory;
class BOSHConnectionFactory {
public:
BOSHConnectionFactory(const URL& boshURL, ConnectionFactory* connectionFactory, XMLParserFactory* xmlParserFactory, TLSContextFactory* tlsFactory);
/**
* @param overrideFactory If non-NULL, creates a connection over the given factory instead.
*/
boost::shared_ptr<Connection> createConnection(ConnectionFactory* overrideFactory);
ConnectionFactory* getRawConnectionFactory() {return connectionFactory;}
TLSContextFactory* getTLSContextFactory() {return tlsFactory;}
private:
URL boshURL;
ConnectionFactory* connectionFactory;
XMLParserFactory* xmlParserFactory;
TLSContextFactory* tlsFactory;
};
}
|