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

#pragma once

#include <boost/shared_ptr.hpp>
#include <map>

#include <Swiften/Network/ConnectionServer.h>
#include <string>
#include <Swiften/JID/JID.h>
#include <Swiften/FileTransfer/ReadBytestream.h>
#include <Swiften/FileTransfer/SOCKS5BytestreamRegistry.h>

namespace Swift {
	class SOCKS5BytestreamServerSession;
	class CryptoProvider;

	class SOCKS5BytestreamServer {
		public:
			SOCKS5BytestreamServer(
					boost::shared_ptr<ConnectionServer> connectionServer, 
					SOCKS5BytestreamRegistry* registry);

			HostAddressPort getAddressPort() const;

			void start();
			void stop();

			std::vector< boost::shared_ptr<SOCKS5BytestreamServerSession> > getSessions(const std::string& id) const;

		private:
			void handleNewConnection(boost::shared_ptr<Connection> connection);
			void handleSessionFinished(boost::shared_ptr<SOCKS5BytestreamServerSession>);

		private:
			friend class SOCKS5BytestreamServerSession;

			boost::shared_ptr<ConnectionServer> connectionServer;
			SOCKS5BytestreamRegistry* registry;
			std::vector<boost::shared_ptr<SOCKS5BytestreamServerSession> > sessions;
	};
}