blob: 8e426371558d928441c15a87bdf390d6e4b49beb (
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
|
/*
* Copyright (c) 2015-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
#include <boost/signals2.hpp>
#include <Swiften/Base/API.h>
namespace Swift {
class SOCKS5BytestreamServerManager;
class SWIFTEN_API SOCKS5BytestreamServerResourceUser {
public:
SOCKS5BytestreamServerResourceUser(SOCKS5BytestreamServerManager* s5bServerManager);
~SOCKS5BytestreamServerResourceUser();
bool isInitialized() const;
boost::signals2::signal<void (bool /* success */)> onSuccessfulInitialized;
private:
void handleServerManagerInitialized(bool successfulInitialize);
private:
SOCKS5BytestreamServerManager* s5bServerManager_;
boost::signals2::scoped_connection onInitializedConnection_;
};
}
|