summaryrefslogtreecommitdiff
path: root/toxcore
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2013-09-17 16:28:39 -0400
committerirungentoo <irungentoo@gmail.com>2013-09-17 16:28:39 -0400
commit5a83c1296cee5b0bfaae564896f56d78ae265fbc (patch)
tree89db75e5314c676872cbee193357b63d003bf635 /toxcore
parentdd12d464de48ca478540457cee4207c38ce69982 (diff)
astyled everything.
Diffstat (limited to 'toxcore')
-rw-r--r--toxcore/DHT.c2
-rw-r--r--toxcore/Messenger.c4
-rw-r--r--toxcore/Messenger.h2
-rw-r--r--toxcore/group_chats.c4
-rw-r--r--toxcore/group_chats.h4
-rw-r--r--toxcore/net_crypto.c4
-rw-r--r--toxcore/tox.c2
-rw-r--r--toxcore/tox.h2
-rw-r--r--toxcore/util.h2
9 files changed, 16 insertions, 10 deletions
diff --git a/toxcore/DHT.c b/toxcore/DHT.c
index f38ce3a5..84c00c70 100644
--- a/toxcore/DHT.c
+++ b/toxcore/DHT.c
@@ -1579,6 +1579,7 @@ void DHT_save(DHT *dht, uint8_t *data)
1579 len = num * sizeof(Client_data); 1579 len = num * sizeof(Client_data);
1580 type = DHT_STATE_TYPE_CLIENTS; 1580 type = DHT_STATE_TYPE_CLIENTS;
1581 data = z_state_save_subheader(data, len, type); 1581 data = z_state_save_subheader(data, len, type);
1582
1582 if (num) { 1583 if (num) {
1583 Client_data *clients = (Client_data *)data; 1584 Client_data *clients = (Client_data *)data;
1584 1585
@@ -1586,6 +1587,7 @@ void DHT_save(DHT *dht, uint8_t *data)
1586 if (dht->close_clientlist[i].timestamp != 0) 1587 if (dht->close_clientlist[i].timestamp != 0)
1587 memcpy(&clients[num++], &dht->close_clientlist[i], sizeof(Client_data)); 1588 memcpy(&clients[num++], &dht->close_clientlist[i], sizeof(Client_data));
1588 } 1589 }
1590
1589 data += len; 1591 data += len;
1590} 1592}
1591 1593
diff --git a/toxcore/Messenger.c b/toxcore/Messenger.c
index 0aacc703..d6bee5a1 100644
--- a/toxcore/Messenger.c
+++ b/toxcore/Messenger.c
@@ -788,7 +788,7 @@ int del_groupchat(Messenger *m, int groupnumber)
788 788
789/* Copy the name of peernumber who is in groupnumber to name. 789/* Copy the name of peernumber who is in groupnumber to name.
790 * name must be at least MAX_NICK_BYTES long. 790 * name must be at least MAX_NICK_BYTES long.
791 * 791 *
792 * return length of name if success 792 * return length of name if success
793 * return -1 if failure 793 * return -1 if failure
794 */ 794 */
@@ -802,6 +802,7 @@ int m_group_peername(Messenger *m, int groupnumber, int peernumber, uint8_t *nam
802 802
803 if (m->chats[groupnumber] == NULL) 803 if (m->chats[groupnumber] == NULL)
804 return -1; 804 return -1;
805
805 return group_peername(m->chats[groupnumber], peernumber, name); 806 return group_peername(m->chats[groupnumber], peernumber, name);
806} 807}
807/* return 1 if that friend was invited to the group 808/* return 1 if that friend was invited to the group
@@ -1609,6 +1610,7 @@ static int messenger_load_state_callback(void *outer, uint8_t *data, uint32_t le
1609 break; 1610 break;
1610 1611
1611#ifdef DEBUG 1612#ifdef DEBUG
1613
1612 default: 1614 default:
1613 fprintf(stderr, "Load state: contains unrecognized part (len %u, type %u)\n", 1615 fprintf(stderr, "Load state: contains unrecognized part (len %u, type %u)\n",
1614 length, type); 1616 length, type);
diff --git a/toxcore/Messenger.h b/toxcore/Messenger.h
index 2aabd90d..78580dc0 100644
--- a/toxcore/Messenger.h
+++ b/toxcore/Messenger.h
@@ -403,7 +403,7 @@ int del_groupchat(Messenger *m, int groupnumber);
403 403
404/* Copy the name of peernumber who is in groupnumber to name. 404/* Copy the name of peernumber who is in groupnumber to name.
405 * name must be at least MAX_NICK_BYTES long. 405 * name must be at least MAX_NICK_BYTES long.
406 * 406 *
407 * return length of name if success 407 * return length of name if success
408 * return -1 if failure 408 * return -1 if failure
409 */ 409 */
diff --git a/toxcore/group_chats.c b/toxcore/group_chats.c
index 23018cab..dc8e158b 100644
--- a/toxcore/group_chats.c
+++ b/toxcore/group_chats.c
@@ -281,7 +281,7 @@ static int delpeer(Group_Chat *chat, uint8_t *client_id)
281 281
282/* Copy the name of peernum to name. 282/* Copy the name of peernum to name.
283 * name must be at least MAX_NICK_BYTES long. 283 * name must be at least MAX_NICK_BYTES long.
284 * 284 *
285 * return length of name if success 285 * return length of name if success
286 * return -1 if failure 286 * return -1 if failure
287 */ 287 */
@@ -289,10 +289,12 @@ int group_peername(Group_Chat *chat, int peernum, uint8_t *name)
289{ 289{
290 if ((uint32_t)peernum >= chat->numpeers) 290 if ((uint32_t)peernum >= chat->numpeers)
291 return -1; 291 return -1;
292
292 if (chat->group[peernum].nick_len == 0) { 293 if (chat->group[peernum].nick_len == 0) {
293 memcpy(name, "NSA Agent", 10); /* Kindly remind the user that someone with no name might be a NSA agent.*/ 294 memcpy(name, "NSA Agent", 10); /* Kindly remind the user that someone with no name might be a NSA agent.*/
294 return 10; 295 return 10;
295 } 296 }
297
296 memcpy(name, chat->group[peernum].nick, chat->group[peernum].nick_len); 298 memcpy(name, chat->group[peernum].nick, chat->group[peernum].nick_len);
297 return chat->group[peernum].nick_len; 299 return chat->group[peernum].nick_len;
298} 300}
diff --git a/toxcore/group_chats.h b/toxcore/group_chats.h
index 7089458c..e45f2af2 100644
--- a/toxcore/group_chats.h
+++ b/toxcore/group_chats.h
@@ -41,7 +41,7 @@ typedef struct {
41 uint64_t last_recv; 41 uint64_t last_recv;
42 uint64_t last_recv_msgping; 42 uint64_t last_recv_msgping;
43 uint32_t last_message_number; 43 uint32_t last_message_number;
44 44
45 uint8_t nick[MAX_NICK_BYTES]; 45 uint8_t nick[MAX_NICK_BYTES];
46 uint16_t nick_len; 46 uint16_t nick_len;
47} Group_Peer; 47} Group_Peer;
@@ -72,7 +72,7 @@ typedef struct Group_Chat {
72 72
73/* Copy the name of peernum to name. 73/* Copy the name of peernum to name.
74 * name must be at least MAX_NICK_BYTES long. 74 * name must be at least MAX_NICK_BYTES long.
75 * 75 *
76 * return length of name if success 76 * return length of name if success
77 * return -1 if failure 77 * return -1 if failure
78 */ 78 */
diff --git a/toxcore/net_crypto.c b/toxcore/net_crypto.c
index 1de32cb0..a2e42557 100644
--- a/toxcore/net_crypto.c
+++ b/toxcore/net_crypto.c
@@ -456,7 +456,7 @@ int crypto_connect(Net_Crypto *c, uint8_t *public_key, IP_Port ip_port)
456 } 456 }
457 457
458 if (realloc_cryptoconnection(c, c->crypto_connections_length + 1) == -1 458 if (realloc_cryptoconnection(c, c->crypto_connections_length + 1) == -1
459 || c->crypto_connections == NULL) 459 || c->crypto_connections == NULL)
460 return -1; 460 return -1;
461 461
462 memset(&(c->crypto_connections[c->crypto_connections_length]), 0, sizeof(Crypto_Connection)); 462 memset(&(c->crypto_connections[c->crypto_connections_length]), 0, sizeof(Crypto_Connection));
@@ -580,7 +580,7 @@ int accept_crypto_inbound(Net_Crypto *c, int connection_id, uint8_t *public_key,
580 * } 580 * }
581 */ 581 */
582 if (realloc_cryptoconnection(c, c->crypto_connections_length + 1) == -1 582 if (realloc_cryptoconnection(c, c->crypto_connections_length + 1) == -1
583 || c->crypto_connections == NULL) 583 || c->crypto_connections == NULL)
584 return -1; 584 return -1;
585 585
586 memset(&(c->crypto_connections[c->crypto_connections_length]), 0, sizeof(Crypto_Connection)); 586 memset(&(c->crypto_connections[c->crypto_connections_length]), 0, sizeof(Crypto_Connection));
diff --git a/toxcore/tox.c b/toxcore/tox.c
index 78074db1..4fba360b 100644
--- a/toxcore/tox.c
+++ b/toxcore/tox.c
@@ -410,7 +410,7 @@ int tox_del_groupchat(void *tox, int groupnumber)
410 410
411/* Copy the name of peernumber who is in groupnumber to name. 411/* Copy the name of peernumber who is in groupnumber to name.
412 * name must be at least MAX_NICK_BYTES long. 412 * name must be at least MAX_NICK_BYTES long.
413 * 413 *
414 * return length of name if success 414 * return length of name if success
415 * return -1 if failure 415 * return -1 if failure
416 */ 416 */
diff --git a/toxcore/tox.h b/toxcore/tox.h
index cc7fc5ec..b39008fe 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -378,7 +378,7 @@ int tox_del_groupchat(Tox *tox, int groupnumber);
378 378
379/* Copy the name of peernumber who is in groupnumber to name. 379/* Copy the name of peernumber who is in groupnumber to name.
380 * name must be at least TOX_MAX_NAME_LENGTH long. 380 * name must be at least TOX_MAX_NAME_LENGTH long.
381 * 381 *
382 * return length of name if success 382 * return length of name if success
383 * return -1 if failure 383 * return -1 if failure
384 */ 384 */
diff --git a/toxcore/util.h b/toxcore/util.h
index 6937f7d4..9e4ac79a 100644
--- a/toxcore/util.h
+++ b/toxcore/util.h
@@ -18,7 +18,7 @@ void id_cpy(uint8_t *dest, uint8_t *src);
18 18
19typedef int (*load_state_callback_func)(void *outer, uint8_t *data, uint32_t len, uint16_t type); 19typedef int (*load_state_callback_func)(void *outer, uint8_t *data, uint32_t len, uint16_t type);
20int load_state(load_state_callback_func load_state_callback, void *outer, 20int load_state(load_state_callback_func load_state_callback, void *outer,
21 uint8_t *data, uint32_t length, uint16_t cookie_inner); 21 uint8_t *data, uint32_t length, uint16_t cookie_inner);
22 22
23#undef LOGGING 23#undef LOGGING
24/* #define LOGGING */ 24/* #define LOGGING */