summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2014-08-10 14:20:09 +0000
committerAlexander Lantsev <aunsane@gmail.com>2014-08-10 14:20:09 +0000
commitb3a63d4e727b8552f8cf2b321cc68d2631ef3179 (patch)
treea533d09af6f41f06a383fb9b703dabc09d7b92d7
parent254f7c0601c1972e016e0afb7989b27c9e432239 (diff)
Tox: refactoring
git-svn-id: http://svn.miranda-ng.org/main/trunk@10144 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r--protocols/Tox/Tox_12.vcxproj2
-rw-r--r--protocols/Tox/Tox_12.vcxproj.filters6
-rw-r--r--protocols/Tox/src/tox_account.cpp63
-rw-r--r--protocols/Tox/src/tox_bootstrap.h79
-rw-r--r--protocols/Tox/src/tox_events.cpp17
-rw-r--r--protocols/Tox/src/tox_proto.cpp95
-rw-r--r--protocols/Tox/src/tox_proto.h22
-rw-r--r--protocols/Tox/src/tox_utils.cpp166
8 files changed, 237 insertions, 213 deletions
diff --git a/protocols/Tox/Tox_12.vcxproj b/protocols/Tox/Tox_12.vcxproj
index f6ae91e2b8..f633883d94 100644
--- a/protocols/Tox/Tox_12.vcxproj
+++ b/protocols/Tox/Tox_12.vcxproj
@@ -202,6 +202,7 @@
<ClInclude Include="src\tox\tox.h" />
<ClInclude Include="src\tox\toxav.h" />
<ClInclude Include="src\tox\toxdns.h" />
+ <ClInclude Include="src\tox_bootstrap.h" />
<ClInclude Include="src\tox_proto.h" />
<ClInclude Include="src\version.h" />
</ItemGroup>
@@ -210,6 +211,7 @@
<ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
+ <ClCompile Include="src\tox_account.cpp" />
<ClCompile Include="src\tox_events.cpp" />
<ClCompile Include="src\tox_instances.cpp" />
<ClCompile Include="src\tox_proto.cpp" />
diff --git a/protocols/Tox/Tox_12.vcxproj.filters b/protocols/Tox/Tox_12.vcxproj.filters
index 986d1f856a..c47ae00fad 100644
--- a/protocols/Tox/Tox_12.vcxproj.filters
+++ b/protocols/Tox/Tox_12.vcxproj.filters
@@ -36,6 +36,9 @@
<ClInclude Include="src\tox\toxdns.h">
<Filter>Header Files\tox</Filter>
</ClInclude>
+ <ClInclude Include="src\tox_bootstrap.h">
+ <Filter>Header Files</Filter>
+ </ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="src\tox_proto.cpp">
@@ -62,6 +65,9 @@
<ClCompile Include="src\tox_utils.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\tox_account.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="res\resource.rc">
diff --git a/protocols/Tox/src/tox_account.cpp b/protocols/Tox/src/tox_account.cpp
new file mode 100644
index 0000000000..9c59965bc7
--- /dev/null
+++ b/protocols/Tox/src/tox_account.cpp
@@ -0,0 +1,63 @@
+#include "common.h"
+#include "tox_bootstrap.h"
+
+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, TOX_ENABLE_IPV6_DEFAULT, d->port, d->key);
+ i++; j++;
+ }
+}
+
+void CToxProto::DoTox()
+{
+ uint32_t interval = 1000;
+ {
+ //mir_cslock lock(tox_lock);
+
+ tox_do(tox);
+ interval = tox_do_interval(tox);
+ }
+ Sleep(interval);
+}
+
+void CToxProto::PollingThread(void*)
+{
+ debugLogA("CToxProto::PollingThread: entering");
+
+ while (!isTerminated)
+ {
+ DoTox();
+ }
+
+ debugLogA("CToxProto::PollingThread: leaving");
+}
+
+void CToxProto::ConnectionThread(void*)
+{
+ debugLogA("CToxProto::ConnectionThread: entering");
+
+ while (!isTerminated && !isConnected)
+ {
+ DoBootstrap();
+
+ if (tox_isconnected(tox))
+ {
+ isConnected = true;
+ break;
+ }
+
+ DoTox();
+ }
+
+ if (!isTerminated && isConnected)
+ {
+ poolingThread = ForkThreadEx(&CToxProto::PollingThread, 0, NULL);
+ }
+
+ debugLogA("CToxProto::ConnectionThread: leaving");
+} \ No newline at end of file
diff --git a/protocols/Tox/src/tox_bootstrap.h b/protocols/Tox/src/tox_bootstrap.h
new file mode 100644
index 0000000000..420fa83f2c
--- /dev/null
+++ b/protocols/Tox/src/tox_bootstrap.h
@@ -0,0 +1,79 @@
+#ifndef _TOX_BOOTSTRAP_H_
+#define _TOX_BOOTSTRAP_H_
+
+#include "common.h"
+
+#define _HTONS(x) (uint16_t)((x << 8) | (x >> 8))
+
+struct bootstrap_node {
+ char *address;
+ uint16_t port;
+ uint8_t key[32];
+} bootstrap_nodes[] = {
+ {
+ "192.254.75.98",
+ _HTONS(33445),
+ {
+ 0x95, 0x1C, 0x88, 0xB7, 0xE7, 0x5C, 0x86, 0x74, 0x18, 0xAC, 0xDB, 0x5D, 0x27, 0x38, 0x21, 0x37,
+ 0x2B, 0xB5, 0xBD, 0x65, 0x27, 0x40, 0xBC, 0xDF, 0x62, 0x3A, 0x4F, 0xA2, 0x93, 0xE7, 0x5D, 0x2F
+ }
+ },
+
+ {
+ "37.187.46.132",
+ _HTONS(33445),
+ {
+ 0xA9, 0xD9, 0x82, 0x12, 0xB3, 0xF9, 0x72, 0xBD, 0x11, 0xDA, 0x52, 0xBE, 0xB0, 0x65, 0x8C, 0x32,
+ 0x6F, 0xCC, 0xC1, 0xBF, 0xD4, 0x9F, 0x34, 0x7F, 0x9C, 0x2D, 0x3D, 0x8B, 0x61, 0xE1, 0xB9, 0x27
+ }
+ },
+
+ {
+ "144.76.60.215",
+ _HTONS(33445),
+ {
+ 0x04, 0x11, 0x9E, 0x83, 0x5D, 0xF3, 0xE7, 0x8B, 0xAC, 0xF0, 0xF8, 0x42, 0x35, 0xB3, 0x00, 0x54,
+ 0x6A, 0xF8, 0xB9, 0x36, 0xF0, 0x35, 0x18, 0x5E, 0x2A, 0x8E, 0x9E, 0x0A, 0x67, 0xC8, 0x92, 0x4F
+ }
+ },
+
+ {
+ "23.226.230.47",
+ _HTONS(33445),
+ {
+ 0xA0, 0x91, 0x62, 0xD6, 0x86, 0x18, 0xE7, 0x42, 0xFF, 0xBC, 0xA1, 0xC2, 0xC7, 0x03, 0x85, 0xE6,
+ 0x67, 0x96, 0x04, 0xB2, 0xD8, 0x0E, 0xA6, 0xE8, 0x4A, 0xD0, 0x99, 0x6A, 0x1A, 0xC8, 0xA0, 0x74
+ }
+ },
+
+ {
+ "54.199.139.199",
+ _HTONS(33445),
+ {
+ 0x7F, 0x9C, 0x31, 0xFE, 0x85, 0x0E, 0x97, 0xCE, 0xFD, 0x4C, 0x45, 0x91, 0xDF, 0x93, 0xFC, 0x75,
+ 0x7C, 0x7C, 0x12, 0x54, 0x9D, 0xDD, 0x55, 0xF8, 0xEE, 0xAE, 0xCC, 0x34, 0xFE, 0x76, 0xC0, 0x29
+ }
+ },
+
+ {
+ "109.169.46.133",
+ _HTONS(33445),
+ {
+ 0x7F, 0x31, 0xBF, 0xC9, 0x3B, 0x8E, 0x40, 0x16, 0xA9, 0x02, 0x14, 0x4D, 0x0B, 0x11, 0x0C, 0x3E,
+ 0xA9, 0x7C, 0xB7, 0xD4, 0x3F, 0x1C, 0x4D, 0x21, 0xBC, 0xAE, 0x99, 0x8A, 0x7C, 0x83, 0x88, 0x21
+ }
+ },
+
+ {
+ "192.210.149.121",
+ _HTONS(33445),
+ {
+ 0xF4, 0x04, 0xAB, 0xAA, 0x1C, 0x99, 0xA9, 0xD3, 0x7D, 0x61, 0xAB, 0x54, 0x89, 0x8F, 0x56, 0x79,
+ 0x3E, 0x1D, 0xEF, 0x8B, 0xD4, 0x6B, 0x10, 0x38, 0xB9, 0xD8, 0x22, 0xE8, 0x46, 0x0F, 0xAB, 0x67
+ }
+ },
+};
+
+#undef _HTONS
+
+#endif //_TOX_BOOTSTRAP_H_ \ No newline at end of file
diff --git a/protocols/Tox/src/tox_events.cpp b/protocols/Tox/src/tox_events.cpp
index dc45cb34a6..550cdd2999 100644
--- a/protocols/Tox/src/tox_events.cpp
+++ b/protocols/Tox/src/tox_events.cpp
@@ -1,22 +1,5 @@
#include "common.h"
-void CToxProto::PollingThread(void*)
-{
- debugLogA("CToxProto::PollingThread: entering");
- while (!isTerminated)
- {
- uint32_t interval = 1000;
- {
- //mir_cslock lock(tox_lock);
-
- tox_do(tox);
- interval = tox_do_interval(tox);
- }
- Sleep(interval);
- }
- debugLogA("CToxProto::PollingThread: leaving");
-}
-
void CToxProto::OnFriendRequest(Tox *tox, const uint8_t *userId, const uint8_t *message, const uint16_t messageSize, void *arg)
{
}
diff --git a/protocols/Tox/src/tox_proto.cpp b/protocols/Tox/src/tox_proto.cpp
index b5bd446cb5..3123640ec2 100644
--- a/protocols/Tox/src/tox_proto.cpp
+++ b/protocols/Tox/src/tox_proto.cpp
@@ -1,44 +1,9 @@
#include "common.h"
-#define FRADDR_TOSTR_CHUNK_LEN 8
-
-static void fraddr_to_str(uint8_t *id_bin, char *id_str)
-{
- uint32_t i, delta = 0, pos_extra, sum_extra = 0;
-
- for (i = 0; i < TOX_FRIEND_ADDRESS_SIZE; i++) {
- sprintf(&id_str[2 * i + delta], "%02hhX", id_bin[i]);
-
- if ((i + 1) == TOX_CLIENT_ID_SIZE)
- pos_extra = 2 * (i + 1) + delta;
-
- if (i >= TOX_CLIENT_ID_SIZE)
- sum_extra |= id_bin[i];
-
- if (!((i + 1) % FRADDR_TOSTR_CHUNK_LEN)) {
- id_str[2 * (i + 1) + delta] = ' ';
- delta++;
- }
- }
-
- id_str[2 * i + delta] = 0;
-
- if (!sum_extra)
- id_str[pos_extra] = 0;
-}
-
-void get_id(Tox *m, char *data)
-{
- int offset = strlen(data);
- uint8_t address[TOX_FRIEND_ADDRESS_SIZE];
- tox_get_address(m, address);
- fraddr_to_str(address, data + offset);
-}
-
CToxProto::CToxProto(const char* protoName, const TCHAR* userName) :
PROTO<CToxProto>(protoName, userName)
{
- tox = tox_new(1);
+ tox = tox_new(TOX_ENABLE_IPV6_DEFAULT);
tox_callback_friend_request(tox, OnFriendRequest, this);
tox_callback_friend_message(tox, OnFriendMessage, this);
@@ -48,9 +13,6 @@ CToxProto::CToxProto(const char* protoName, const TCHAR* userName) :
tox_callback_user_status(tox, OnUserStatusChanged, this);
tox_callback_connection_status(tox, OnConnectionStatusChanged, this);
- char idstring[200] = { 0 };
- get_id(tox, idstring);
-
CreateProtoService(PS_CREATEACCMGRUI, &CToxProto::CreateAccMgrUI);
}
@@ -152,63 +114,12 @@ int __cdecl CToxProto::SetStatus(int iNewStatus)
{
m_iStatus = ID_STATUS_CONNECTING;
- // login
- isTerminated = false;
- char *name = "my_nickname";
- int res = tox_set_name(tox, (uint8_t*)name, strlen(name));
-
- do_bootstrap(tox);
-
- time_t timestamp0 = time(NULL);
- int on = 0;
-
- while (1) {
- tox_do(tox);
-
- if (on == 0) {
- if (tox_isconnected(tox)) {
- on = 1;
- }
- else {
- time_t timestamp1 = time(NULL);
-
- if (timestamp0 + 10 < timestamp1) {
- timestamp0 = timestamp1;
- do_bootstrap(tox);
- }
- }
- }
- }
-
- res = tox_isconnected(tox);
- if (!res)
- {
- SetStatus(ID_STATUS_OFFLINE);
- return 0;
- }
-
- poolingThread = ForkThreadEx(&CToxProto::PollingThread, 0, NULL);
+ connectionThread = ForkThreadEx(&CToxProto::ConnectionThread, 0, NULL);
}
else
{
// set tox status
- TOX_USERSTATUS userstatus;
- switch (iNewStatus)
- {
- case ID_STATUS_ONLINE:
- userstatus = TOX_USERSTATUS_NONE;
- break;
- case ID_STATUS_AWAY:
- userstatus = TOX_USERSTATUS_AWAY;
- break;
- case ID_STATUS_OCCUPIED:
- userstatus = TOX_USERSTATUS_BUSY;
- break;
- default:
- userstatus = TOX_USERSTATUS_INVALID;
- break;
- }
- tox_set_user_status(tox, userstatus);
+ tox_set_user_status(tox, MirandaToToxStatus(iNewStatus));
ProtoBroadcastAck(NULL, ACKTYPE_STATUS, ACKRESULT_SUCCESS, (HANDLE)old_status, m_iStatus);
diff --git a/protocols/Tox/src/tox_proto.h b/protocols/Tox/src/tox_proto.h
index bd40afd4e4..49f8a6c131 100644
--- a/protocols/Tox/src/tox_proto.h
+++ b/protocols/Tox/src/tox_proto.h
@@ -73,19 +73,23 @@ public:
private:
Tox *tox;
mir_cs tox_lock;
+ HANDLE connectionThread;
HANDLE poolingThread;
bool isTerminated;
+ bool isConnected;
// instances
static LIST<CToxProto> instanceList;
static int CompareProtos(const CToxProto *p1, const CToxProto *p2);
- //services
- INT_PTR __cdecl CreateAccMgrUI(WPARAM, LPARAM);
-
- //events
+ // account
+ void DoBootstrap();
+ void DoTox();
+
+ void __cdecl ConnectionThread(void*);
void __cdecl PollingThread(void*);
+ //events
static void OnFriendRequest(Tox *tox, const uint8_t *userId, const uint8_t *message, const uint16_t messageSize, void *arg);
static void OnFriendMessage(Tox *tox, const int friendId, const uint8_t *message, const uint16_t messageSize, void *arg);
static void OnFriendNameChange(Tox *tox, const int friendId, const uint8_t *name, const uint16_t nameSize, void *arg);
@@ -97,13 +101,17 @@ private:
// contacts
bool IsProtoContact(MCONTACT hContact);
MCONTACT GetContactByUserId(const wchar_t *userId);
- MCONTACT CToxProto::AddContact(const wchar_t*userId, const wchar_t *nick, bool isHidden = false);
+ MCONTACT AddContact(const wchar_t*userId, const wchar_t *nick, bool isHidden = false);
void __cdecl SearchByUidAsync(void* arg);
+ //services
+ INT_PTR __cdecl CreateAccMgrUI(WPARAM, LPARAM);
+
// utils
- char *HexToBinString(const char *hex_string);
- char *BinToHexString(uint8_t *bin_string);
+ TOX_USERSTATUS MirandaToToxStatus(int status);
+ uint8_t *HexStringToData(const char *hex_string);
+ char *DataToHexString(const uint8_t *bin_string);
void do_bootstrap(Tox *tox);
// dialogs
diff --git a/protocols/Tox/src/tox_utils.cpp b/protocols/Tox/src/tox_utils.cpp
index 97379c72c3..f7f6c027ad 100644
--- a/protocols/Tox/src/tox_utils.cpp
+++ b/protocols/Tox/src/tox_utils.cpp
@@ -1,19 +1,42 @@
#include "common.h"
-char *CToxProto::HexToBinString(const char *hex_string)
+TOX_USERSTATUS CToxProto::MirandaToToxStatus(int status)
{
- size_t len = strlen(hex_string);
- char *val = (char*)mir_alloc(len);
-
- size_t i;
-
- for (i = 0; i < len; ++i, hex_string += 2)
- sscanf(hex_string, "%2hhx", &val[i]);
-
- return val;
+ TOX_USERSTATUS userstatus;
+ switch (status)
+ {
+ case ID_STATUS_ONLINE:
+ userstatus = TOX_USERSTATUS_NONE;
+ break;
+ case ID_STATUS_AWAY:
+ userstatus = TOX_USERSTATUS_AWAY;
+ break;
+ case ID_STATUS_OCCUPIED:
+ userstatus = TOX_USERSTATUS_BUSY;
+ break;
+ default:
+ userstatus = TOX_USERSTATUS_INVALID;
+ break;
+ }
+ return userstatus;
}
-char *CToxProto::BinToHexString(uint8_t *bin_string)
+uint8_t *HexStringToData(const char *hex_string)
+{
+ size_t legth = strlen(hex_string) / 2;
+ uint8_t *data = (uint8_t*)mir_alloc(legth);
+
+ for (size_t i = 0; i < legth; i++)
+ {
+ unsigned int val;
+ sscanf(&hex_string[i * 2], "%2hhx", &val);
+ data[i] = val;
+ }
+
+ return data;
+}
+
+char *CToxProto::DataToHexString(const uint8_t *bin_string)
{
uint32_t i, delta = 0, pos_extra, sum_extra = 0;
char *ret = (char*)mir_alloc(TOX_FRIEND_ADDRESS_SIZE);
@@ -31,7 +54,7 @@ char *CToxProto::BinToHexString(uint8_t *bin_string)
/*if (!((i + 1) % FRADDR_TOSTR_CHUNK_LEN)) {
id_str[2 * (i + 1) + delta] = ' ';
delta++;
- }*/
+ }*/
}
ret[2 * i + delta] = 0;
@@ -42,88 +65,37 @@ char *CToxProto::BinToHexString(uint8_t *bin_string)
return ret;
}
-#define _HTONS(x) (uint16_t)((x << 8) | (x >> 8))
-
-struct bootstrap_node {
- char *address;
- uint16_t port;
- uint8_t key[32];
-} bootstrap_nodes[] = {
- {
- "192.254.75.98",
- _HTONS(33445),
- {
- 0x95, 0x1C, 0x88, 0xB7, 0xE7, 0x5C, 0x86, 0x74, 0x18, 0xAC, 0xDB, 0x5D, 0x27, 0x38, 0x21, 0x37,
- 0x2B, 0xB5, 0xBD, 0x65, 0x27, 0x40, 0xBC, 0xDF, 0x62, 0x3A, 0x4F, 0xA2, 0x93, 0xE7, 0x5D, 0x2F
- }
- },
-
- {
- "37.187.46.132",
- _HTONS(33445),
- {
- 0xA9, 0xD9, 0x82, 0x12, 0xB3, 0xF9, 0x72, 0xBD, 0x11, 0xDA, 0x52, 0xBE, 0xB0, 0x65, 0x8C, 0x32,
- 0x6F, 0xCC, 0xC1, 0xBF, 0xD4, 0x9F, 0x34, 0x7F, 0x9C, 0x2D, 0x3D, 0x8B, 0x61, 0xE1, 0xB9, 0x27
- }
- },
-
- {
- "144.76.60.215",
- _HTONS(33445),
- {
- 0x04, 0x11, 0x9E, 0x83, 0x5D, 0xF3, 0xE7, 0x8B, 0xAC, 0xF0, 0xF8, 0x42, 0x35, 0xB3, 0x00, 0x54,
- 0x6A, 0xF8, 0xB9, 0x36, 0xF0, 0x35, 0x18, 0x5E, 0x2A, 0x8E, 0x9E, 0x0A, 0x67, 0xC8, 0x92, 0x4F
- }
- },
-
- {
- "23.226.230.47",
- _HTONS(33445),
- {
- 0xA0, 0x91, 0x62, 0xD6, 0x86, 0x18, 0xE7, 0x42, 0xFF, 0xBC, 0xA1, 0xC2, 0xC7, 0x03, 0x85, 0xE6,
- 0x67, 0x96, 0x04, 0xB2, 0xD8, 0x0E, 0xA6, 0xE8, 0x4A, 0xD0, 0x99, 0x6A, 0x1A, 0xC8, 0xA0, 0x74
- }
- },
-
- {
- "54.199.139.199",
- _HTONS(33445),
- {
- 0x7F, 0x9C, 0x31, 0xFE, 0x85, 0x0E, 0x97, 0xCE, 0xFD, 0x4C, 0x45, 0x91, 0xDF, 0x93, 0xFC, 0x75,
- 0x7C, 0x7C, 0x12, 0x54, 0x9D, 0xDD, 0x55, 0xF8, 0xEE, 0xAE, 0xCC, 0x34, 0xFE, 0x76, 0xC0, 0x29
- }
- },
-
- {
- "109.169.46.133",
- _HTONS(33445),
- {
- 0x7F, 0x31, 0xBF, 0xC9, 0x3B, 0x8E, 0x40, 0x16, 0xA9, 0x02, 0x14, 0x4D, 0x0B, 0x11, 0x0C, 0x3E,
- 0xA9, 0x7C, 0xB7, 0xD4, 0x3F, 0x1C, 0x4D, 0x21, 0xBC, 0xAE, 0x99, 0x8A, 0x7C, 0x83, 0x88, 0x21
- }
- },
-
- {
- "192.210.149.121",
- _HTONS(33445),
- {
- 0xF4, 0x04, 0xAB, 0xAA, 0x1C, 0x99, 0xA9, 0xD3, 0x7D, 0x61, 0xAB, 0x54, 0x89, 0x8F, 0x56, 0x79,
- 0x3E, 0x1D, 0xEF, 0x8B, 0xD4, 0x6B, 0x10, 0x38, 0xB9, 0xD8, 0x22, 0xE8, 0x46, 0x0F, 0xAB, 0x67
- }
- },
-};
-
-#undef _HTONS
-
-/* bootstrap to dht with bootstrap_nodes */
-void CToxProto::do_bootstrap(Tox *tox)
-{
- 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, 1, d->port, d->key);
- i++;
- j++;
- }
-} \ No newline at end of file
+#define FRADDR_TOSTR_CHUNK_LEN 8
+
+static void fraddr_to_str(uint8_t *id_bin, char *id_str)
+{
+ uint32_t i, delta = 0, pos_extra, sum_extra = 0;
+
+ for (i = 0; i < TOX_FRIEND_ADDRESS_SIZE; i++) {
+ sprintf(&id_str[2 * i + delta], "%02hhX", id_bin[i]);
+
+ if ((i + 1) == TOX_CLIENT_ID_SIZE)
+ pos_extra = 2 * (i + 1) + delta;
+
+ if (i >= TOX_CLIENT_ID_SIZE)
+ sum_extra |= id_bin[i];
+
+ if (!((i + 1) % FRADDR_TOSTR_CHUNK_LEN)) {
+ id_str[2 * (i + 1) + delta] = ' ';
+ delta++;
+ }
+ }
+
+ id_str[2 * i + delta] = 0;
+
+ if (!sum_extra)
+ id_str[pos_extra] = 0;
+}
+
+void get_id(Tox *m, char *data)
+{
+ int offset = strlen(data);
+ uint8_t address[TOX_FRIEND_ADDRESS_SIZE];
+ tox_get_address(m, address);
+ fraddr_to_str(address, data + offset);
+}