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

#pragma once

#include <boost/shared_ptr.hpp>

#include <Swift/Controllers/DiscoServiceWalker.h>
#include <Swiften/Network/HostAddressPort.h>
#include <Swiften/Elements/S5BProxyRequest.h>

namespace Swift {

class JID;
class IQRouter;

class SOCKS5BytestreamProxyFinder {
public:
	SOCKS5BytestreamProxyFinder(const JID& service, IQRouter *iqRouter);
	void start();

	boost::signal<void(boost::shared_ptr<S5BProxyRequest>)> onProxyFound;

private:
	void sendBytestreamQuery(const JID&);

	void handleServiceFound(const JID&, boost::shared_ptr<DiscoInfo>);
	void handleProxyResponse(boost::shared_ptr<S5BProxyRequest>, ErrorPayload::ref);
private:
	boost::shared_ptr<DiscoServiceWalker> serviceWalker;
	IQRouter* iqRouter;
	std::vector<boost::shared_ptr<GenericRequest<S5BProxyRequest> > > requests;
};

}