summaryrefslogtreecommitdiffstats
blob: 0575aed87f4b6a29a87bb25d0e7466d8e7f2ea72 (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
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <map>
#include <set>
#include <string>

#include <Swiften/Base/API.h>
#include <Swiften/Base/IDGenerator.h>

namespace Swift {
	class SOCKS5BytestreamServerSession;

	class SWIFTEN_API SOCKS5BytestreamRegistry {
		public:
			SOCKS5BytestreamRegistry();

			void setHasBytestream(const std::string& destination, bool);
			bool hasBytestream(const std::string& destination) const;

			/**
			 * Generate a new session ID to use for new S5B streams.
			 */
			std::string generateSessionID();

		private:
			std::set<std::string> availableBytestreams;
			IDGenerator idGenerator;
	};
}