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

#include "Swiften/FileTransfer/SOCKS5BytestreamRegistry.h"

namespace Swift {

SOCKS5BytestreamRegistry::SOCKS5BytestreamRegistry() {
}

void SOCKS5BytestreamRegistry::addBytestream(const std::string& destination, boost::shared_ptr<ReadBytestream> byteStream) {
	byteStreams[destination] = byteStream;
}

void SOCKS5BytestreamRegistry::removeBytestream(const std::string& destination) {
	byteStreams.erase(destination);
}

boost::shared_ptr<ReadBytestream> SOCKS5BytestreamRegistry::getBytestream(const std::string& destination) const {
	BytestreamMap::const_iterator i = byteStreams.find(destination);
	if (i != byteStreams.end()) {
		return i->second;
	}
	return boost::shared_ptr<ReadBytestream>();
}


}