summaryrefslogtreecommitdiff
path: root/testing/nTox_win32.c
diff options
context:
space:
mode:
Diffstat (limited to 'testing/nTox_win32.c')
-rw-r--r--testing/nTox_win32.c29
1 files changed, 23 insertions, 6 deletions
diff --git a/testing/nTox_win32.c b/testing/nTox_win32.c
index 5501ecf5..f3c7a188 100644
--- a/testing/nTox_win32.c
+++ b/testing/nTox_win32.c
@@ -26,7 +26,12 @@
26 26
27#include <process.h> 27#include <process.h>
28 28
29uint8_t pending_requests[256][CLIENT_ID_SIZE]; 29typedef struct {
30 uint8_t id[CLIENT_ID_SIZE];
31 uint8_t accepted;
32} Friend_request;
33
34Friend_request pending_requests[256];
30uint8_t num_requests = 0; 35uint8_t num_requests = 0;
31uint32_t maxnumfriends; 36uint32_t maxnumfriends;
32 37
@@ -51,7 +56,8 @@ void print_request(uint8_t *public_key, uint8_t *data, uint16_t length)
51 char numchar[100]; 56 char numchar[100];
52 sprintf(numchar, "\n[i] accept request with /a %u\n\n", num_requests); 57 sprintf(numchar, "\n[i] accept request with /a %u\n\n", num_requests);
53 printf(numchar); 58 printf(numchar);
54 memcpy(pending_requests[num_requests], public_key, CLIENT_ID_SIZE); 59 memcpy(pending_requests[num_requests].id, public_key, CLIENT_ID_SIZE);
60 pending_requests[num_requests].accepted = 0;
55 ++num_requests; 61 ++num_requests;
56} 62}
57 63
@@ -287,10 +293,21 @@ void accept_friend_request()
287 friend_request_received = 0; 293 friend_request_received = 0;
288 uint8_t numf = atoi(line + 3); 294 uint8_t numf = atoi(line + 3);
289 char numchar[100]; 295 char numchar[100];
290 int num = m_addfriend_norequest(pending_requests[numf]); 296 if (numf >= num_requests || pending_requests[numf].accepted) {
291 sprintf(numchar, "\n[i] Added friendnumber: %d\n\n", num); 297 sprintf(numchar, "\n[i] you either didn't receive that request or you already accepted it");
292 printf(numchar); 298 printf(numchar);
293 ++maxnumfriends; 299 } else {
300 int num = m_addfriend_norequest(pending_requests[numf].id);
301 if (num != -1) {
302 pending_requests[numf].accepted = 1;
303 sprintf(numchar, "\n[i] Added friendnumber: %d\n\n", num);
304 printf(numchar);
305 ++maxnumfriends;
306 } else {
307 sprintf(numchar, "[i] failed to add friend");
308 printf(numchar);
309 }
310 }
294} 311}
295 312
296void line_eval(char* line) 313void line_eval(char* line)