summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2013-08-18Added minor error checking in Core, this helps prevent CERT MEM04-C; CWE-131Sean Qureshi
2013-08-18Fixed a core memory leakSean Qureshi
2013-08-17Fixed bug.irungentoo
2013-08-17Added dynamic memory allocation to crypto connections.irungentoo
Also fixed some possible bugs in Messenger.c
2013-08-17Messenger stores / loads nicknameMichael Rose
new toxic command to show nickname (mynick)
2013-08-16Metadata collection prevention part 2 of ???irungentoo
Improved friend request sending. As a side effect friend requests should now be routed less than before. See added comments for details.
2013-08-16Passed everything through astyle.irungentoo
2013-08-16Merge branch 'master' of https://github.com/irungentoo/ProjectTox-Coreirungentoo
2013-08-16Some DHT hardening done.irungentoo
See comments of added functions for details.
2013-08-15Merge pull request #471 from krisl/masterirungentoo
Add spam length to data length
2013-08-15Fixed loading and a small problem with the length of crypto requests.irungentoo
2013-08-16Add spam length to data length in comparison against max sizeAaron Lipinski
2013-08-15Updated comment.irungentoo
2013-08-15Merge branch 'master' of https://github.com/irungentoo/ProjectTox-Coreirungentoo
2013-08-15Small improvement to DHT. Useless file removed. Small fix to toxic.irungentoo
2013-08-15Check return value of realloc_friendlist and return FAERR_NOMEM on errorFlorian Hahn
2013-08-15provide access to the close client listAaron Lipinski
2013-08-15move client data struct to header fileAaron Lipinski
2013-08-14Metadata collection prevention part 1 of ???.irungentoo
Crypto requests packets are packets that can be routed by nodes in the DHT. In this pull request I have merged both Natping requests and friend requests into one common packet (Crypto request packets). Both these packets should now only be distinguishable by the size of the data in them to an outside observer for an example on how to send and recieve data with these packets see: friend_requests.c Note that these packets are prefixed with id 32 (friend request packets) which means this change is compatible with the currently running DHT bootstrap servers. Also changed small thing in DHT_test.c
2013-08-14Merge branch 'master' of https://github.com/irungentoo/ProjectTox-Coreirungentoo
2013-08-14Add friend now fails if it already is in DHT.irungentoo
2013-08-14Merge pull request #464 from slvr/crypto-fixirungentoo
Incorrect constants: s/BOXZERO/ZERO/
2013-08-14Messenger fix from pr #461.irungentoo
2013-08-14Reduced redundant code, added new crypto testslvr
2013-08-14s/BOXZERO/ZERO/slvr
2013-08-14Incorrect constants: s/BOXZERO/ZERO/slvr
2013-08-14fixing minor memory leak of friendlistChris Hall
2013-08-14removing unnecessary function pointer _isset variablesChris Hall
2013-08-13Attempt to quickly fix a test.irungentoo
2013-08-13Simple XOR checksum added to address.irungentoo
2013-08-13clarified comment.irungentoo
2013-08-13Friend requests with different nospam fix and added saving/loading of nospam.irungentoo
2013-08-13Fixed spam problem. (I broke the API so this will not build)irungentoo
The friend address is what the byte string that you give away for people to add you will be called. 1. Every friend address now contains a number set by the friend. This is to prevent someone from randomly spamming people in the DHT with friend requests and makes it so you need the person to actually give you the address in some way to send the friend request. This number is expected to be encrypted with the friend request. All requests that do not contain this number will be rejected. This means the spammer can no longer use the DHT to collect lists of valid addresses to spam. It also enables users to quickly change the number in case a spammer gets hold of the address and starts spamming it. 2. A 2 byte checksum will be added (not implemented yet) to prevent people from accidentally adding random strings as friends. (NOTE that this has nothing to do with the spam problem I just decided to add a placeholder for it now.)
2013-08-13Merge pull request #441 from slvr/timerirungentoo
Timer Subsystem
2013-08-13Portabily print out uint64_t using PRIu64slvr
2013-08-13Removed core/Messenger.c.origslvr
Cleanup from merge conflict.
2013-08-13timer_new -> new_timer and timer_delete -> delete_timer to avoid name conflictslvr
2013-08-13core: Fix a possible buffer overflow using getself_name().Andreas Schneider
If the passed buffer is smaller than MAX_NAME_LENGTH then, you will probably overflow it.
2013-08-12Resolve Merge Conflictslvr
2013-08-12Merge remote-tracking branch 'upstream/master' into timerslvr
Conflicts: core/Messenger.c
2013-08-12remember to call timer_pollslvr
2013-08-12Messenger Timerslvr
2013-08-12Added LAN discovery timerslvr
2013-08-12Added support for userdata in callbacksalek900
2013-08-12Implemented Deadline Timer and timer_testslvr
2013-08-12Messenger refactor - redid work from pull request 79Chris Hall
Moves static state out of Messenger.c and into a Messenger struct Purely stylistic, no functional changes were made. This commit also changed all the callers of Messenger as they now have to pass an instance of the Messenger struct to messenger functions. Also removed some uses of the 'static' keyword at the beginning of function definitions when the function was already declared static, as these caused gcc to whine.
2013-08-11Send our current status and name to friend that just came online.alek900
Our username and status might have changed while our friend was offline.
2013-08-11Fixed a mistakeMaxim Biro
2013-08-11Fixed a typoMaxim Biro
2013-08-11Replaced friendstatus with connectionstatusMaxim Biro