summaryrefslogtreecommitdiffstats
blob: c70cb5ab159305d1bcca2f5d8ff5f1e5f6bf8973 (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
44
45
46
/*
 * Copyright (c) 2011 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#pragma once

#include <vector>
#include <set>

#include <boost/optional.hpp>

#include <Swiften/Network/HostAddressPort.h>
#include <Swiften/Network/NATTraverser.h>
#include <Swiften/Network/NATTraversalForwardPortRequest.h>
#include <Swiften/Network/NATPortMapping.h>

namespace Swift {

class NATTraverser;

class ConnectivityManager {
public:
	ConnectivityManager(NATTraverser*);
	~ConnectivityManager();
public:
	void addListeningPort(int port, NATPortMapping::Protocol protocol);
	void removeListeningPort(int port, NATPortMapping::Protocol protocol);

	std::vector<HostAddressPort> getHostAddressPorts(NATPortMapping::Protocol protocol) const;
	std::vector<HostAddressPort> getAssistedHostAddressPorts(NATPortMapping::Protocol protocol) const;

private:
	void natTraversalGetPublicIPResult(boost::optional<HostAddress> address);
	void natTraversalForwardPortResult(boost::optional<NATPortMapping> mapping);

private:
	NATTraverser* natTraversalWorker;

	std::set<int> udpPorts;
	std::set<int> tcpPorts;
	boost::optional<HostAddress> publicAddress;
};

}