diff options
Diffstat (limited to 'protocols/Tox/src/tox_proto.h')
-rw-r--r-- | protocols/Tox/src/tox_proto.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_proto.h b/protocols/Tox/src/tox_proto.h index f7844e1f61..2dfec2ba12 100644 --- a/protocols/Tox/src/tox_proto.h +++ b/protocols/Tox/src/tox_proto.h @@ -83,13 +83,15 @@ private: static INT_PTR CALLBACK ToxProfilePasswordProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
// tox core
+ bool IsToxCoreInited();
+
bool InitToxCore();
void UninitToxCore();
// tox network
bool IsOnline();
- bool IsOffline();
- void BootstrapDht();
+
+ void BootstrapNodes();
void TryConnect();
void CheckConnection(int &retriesCount);
void DoTox();
|