summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_proto.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2016-05-05 16:13:00 +0000
committerAlexander Lantsev <aunsane@gmail.com>2016-05-05 16:13:00 +0000
commitebc84ea42d86c4fab45ede823ffc4bc55529bc35 (patch)
treef15540d8b8bbb023f4d78c057ca6bb1b02197779 /protocols/Tox/src/tox_proto.h
parent45169015fb821d38d4e1ab00fc01166c8bfe72ed (diff)
Tox: attempt to fix crash on connect
git-svn-id: http://svn.miranda-ng.org/main/trunk@16803 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_proto.h')
-rw-r--r--protocols/Tox/src/tox_proto.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/protocols/Tox/src/tox_proto.h b/protocols/Tox/src/tox_proto.h
index e0a2189675..ca3828bca0 100644
--- a/protocols/Tox/src/tox_proto.h
+++ b/protocols/Tox/src/tox_proto.h
@@ -92,12 +92,12 @@ private:
// tox network
bool IsOnline();
- void BootstrapUdpNode(const char *address, int port, const char *pubKey);
- void BootstrapTcpRelay(const char *address, int port, const char *pubKey);
+ void BootstrapUdpNode(CToxThread *toxThread, const char *address, int port, const char *pubKey);
+ void BootstrapTcpRelay(CToxThread *toxThread, const char *address, int port, const char *pubKey);
- void BootstrapNodesFromDb(bool isIPv6);
- void BootstrapNodesFromJson(bool isIPv6);
- void BootstrapNodes();
+ void BootstrapNodesFromDb(CToxThread *toxThread, bool isIPv6);
+ void BootstrapNodesFromJson(CToxThread *toxThread, bool isUdp, bool isIPv6);
+ void BootstrapNodes(CToxThread *toxThread);
void UpdateNodes();