summaryrefslogtreecommitdiffstats
blob: 893f475d5890d9a1fc822dedff16f31b83b85505 (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
48
49
50
51
52
53
54
55
56
/*
 * Copyright (c) 2011 Tobias Markmann
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

/*
 * Copyright (c) 2015-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */


#pragma once

#include <memory>

#include <Swiften/Base/API.h>
#include <Swiften/Disco/DiscoServiceWalker.h>
#include <Swiften/Elements/S5BProxyRequest.h>

namespace Swift {

class JID;
class IQRouter;

/*
 * This class is designed to find possible SOCKS5 bytestream proxies which are used for peer-to-peer data transfers in
 * restrictive environments.
 */
class SWIFTEN_API SOCKS5BytestreamProxyFinder {
    public:
        SOCKS5BytestreamProxyFinder(const JID& service, IQRouter *iqRouter);
        ~SOCKS5BytestreamProxyFinder();

        void start();
        void stop();

        boost::signals2::signal<void(std::vector<std::shared_ptr<S5BProxyRequest> >)> onProxiesFound;

    private:
        void sendBytestreamQuery(const JID&);

        void handleServiceFound(const JID&, std::shared_ptr<DiscoInfo>);
        void handleProxyResponse(std::shared_ptr<GenericRequest<S5BProxyRequest> > requester, std::shared_ptr<S5BProxyRequest>, ErrorPayload::ref);
        void handleWalkEnded();

    private:
        JID service;
        IQRouter* iqRouter;
        std::shared_ptr<DiscoServiceWalker> serviceWalker;
        std::vector<S5BProxyRequest::ref> proxyHosts;
        std::set<std::shared_ptr<GenericRequest<S5BProxyRequest> > > pendingRequests;
};

}