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

#pragma once

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

namespace Swift {

class SOCKS5BytestreamServerManager;

class SWIFTEN_API SOCKS5BytestreamServerPortForwardingUser {
    public:
        SOCKS5BytestreamServerPortForwardingUser(SOCKS5BytestreamServerManager* s5bServerManager);
        ~SOCKS5BytestreamServerPortForwardingUser();

        bool isForwardingSetup() const;

        boost::signal<void (bool /* success */)> onSetup;

    private:
        void handleServerManagerPortForwardingSetup(bool successful);

    private:
        SOCKS5BytestreamServerManager* s5bServerManager_;
        boost::bsignals::scoped_connection onPortForwardingSetupConnection_;
};

}