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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
#include "common.h"
#include "tox_bootstrap.h"
void CToxProto::InitToxCore()
{
Tox_Options options = { 0 };
options.udp_disabled = getByte("DisableUDP", 0);
options.ipv6enabled = !getByte("DisableIPv6", 0);
if (hNetlibUser)
{
NETLIBUSERSETTINGS nlus = { sizeof(NETLIBUSERSETTINGS) };
CallService(MS_NETLIB_GETUSERSETTINGS, (WPARAM)hNetlibUser, (LPARAM)&nlus);
if (nlus.useProxy)
{
if (nlus.proxyType == PROXYTYPE_SOCKS4 || nlus.proxyType == PROXYTYPE_SOCKS5)
{
debugLogA("CToxProto::InitToxCore: Setting socks user proxy config");
options.proxy_enabled = 1;
strcpy(&options.proxy_address[0], nlus.szProxyServer);
options.proxy_port = nlus.wProxyPort;
}
}
}
tox = tox_new(&options);
tox_callback_friend_request(tox, OnFriendRequest, this);
tox_callback_friend_message(tox, OnFriendMessage, this);
tox_callback_typing_change(tox, OnFriendTyping, this);
//tox_callback_friend_action(tox, OnAction, this);
tox_callback_name_change(tox, OnFriendNameChange, this);
tox_callback_status_message(tox, OnStatusMessageChanged, this);
tox_callback_user_status(tox, OnUserStatusChanged, this);
tox_callback_read_receipt(tox, OnReadReceipt, this);
tox_callback_connection_status(tox, OnConnectionStatusChanged, this);
LoadToxData();
int size = tox_get_self_name_size(tox);
std::vector<uint8_t> username(size);
tox_get_self_name(tox, &username[0]);
std::string nick(username.begin(), username.end());
setWString("Nick", ptrW(Utf8DecodeW(nick.c_str())));
std::vector<uint8_t> address(TOX_FRIEND_ADDRESS_SIZE);
tox_get_address(tox, &address[0]);
std::string toxId = DataToHexString(address);
setString(TOX_SETTINGS_ID, toxId.c_str());
}
void CToxProto::UninitToxCore()
{
SaveToxData();
tox_kill(tox);
}
bool CToxProto::IsOnline()
{
return isConnected && m_iStatus > ID_STATUS_OFFLINE;
}
void CToxProto::DoBootstrap()
{
static int j = 0;
int i = 0;
while (i < 2)
{
struct bootstrap_node *d = &bootstrap_nodes[j % SIZEOF(bootstrap_nodes)];
tox_bootstrap_from_address(tox, d->address, d->port, d->key);
i++; j++;
}
}
void CToxProto::DoTox()
{
uint32_t interval = 50;
{
mir_cs(tox_lock);
tox_do(tox);
interval = tox_do_interval(tox);
}
Sleep(interval);
}
void CToxProto::PollingThread(void*)
{
debugLogA("CToxProto::PollingThread: entering");
while (!isTerminated)
{
DoTox();
if (!isConnected)
{
if (tox_isconnected(tox))
{
isConnected = true;
LoadContactList();
m_iStatus = m_iDesiredStatus = ID_STATUS_ONLINE;
ProtoBroadcastAck(NULL, ACKTYPE_STATUS, ACKRESULT_SUCCESS, (HANDLE)ID_STATUS_CONNECTING, m_iStatus);
debugLogA("CToxProto::PollingThread: successfuly connected to DHT");
}
else
{
DoBootstrap();
}
}
}
debugLogA("CToxProto::PollingThread: leaving");
}
|