summaryrefslogtreecommitdiff
path: root/toxcore
AgeCommit message (Collapse)Author
2014-07-14Attempted fix of file transfer issue.irungentoo
Instead of dropping the rate to minimum just half it until it drops to the minimum.
2014-07-13Fixed documentation comment errorsJin^eLD
2014-07-12Merge branch 'split-video' of https://github.com/notsecure/toxcoreirungentoo
2014-07-11Fixed some small TCP issues.irungentoo
2014-07-11.notsecure
2014-07-10Made TCP a bit more solid.irungentoo
TCP ping requests in TCP_client should have a higher success rate.
2014-07-10Merge branch 'master' of https://github.com/irungentoo/toxcore into split-videonotsecure
2014-07-10fix send rate going up when peer disconnectsnotsecure
2014-07-09TCP should be a bit more solid.irungentoo
When a TCP ping request is recieved, try to send the response until success instead of just dropping it if sending the response fails on the first try.
2014-07-08Fixed possible out of bounds read.irungentoo
2014-07-07Fixed overflow bug.irungentoo
2014-07-06Typo fix.irungentoo
2014-07-06Update ping_array.ckyle condon
Change calloc call on line 138 from empty_array->entries = calloc(size * sizeof(Ping_Array_Entry), 1);, to empty_array->entries = calloc(size, sizeof(Ping_Array_Entry));
2014-07-05delete groupchat when join failsJfreegman
2014-07-05Fixed bug when loading friends list already containing an added friend.irungentoo
2014-07-02Merge branch 'const_correctness' of https://github.com/schuetzm/ProjectTox-Coreirungentoo
2014-06-30Const-correctness for tox.cMarc Schütz
2014-06-30Const-correctness for TCP_server.cMarc Schütz
2014-06-30Const-correctness for TCP_client.cMarc Schütz
2014-06-30Const-correctness for onion_client.cMarc Schütz
2014-06-30Const-correctness for onion.cMarc Schütz
2014-06-30Const-correctness for toxcore/onion_announce.cMarc Schütz
2014-06-30Const-correctness for toxcore/net_crypto.cMarc Schütz
2014-06-30Const correctness for toxcore/Messenger.c and related filesMarc Schütz
2014-06-29Core should no longer attempt to send data faster than the links canirungentoo
carry it.
2014-06-28Merge branch 'mannol1-master'irungentoo
2014-06-27Merge branch 'master' of https://github.com/notsecure/toxcoreirungentoo
2014-06-27Fixed tox_do_interval() returning value so high it broke A/V.irungentoo
2014-06-27remove pointer type warnings when building with mingwnotsecure
2014-06-25Fixed some more possible issues with file transfers/conjestion control.irungentoo
2014-06-25Tweaked conjestion control algorithm.irungentoo
File transfers should now work better.
2014-06-21Fixed possible issues with list introduced in the last commit.irungentoo
2014-06-21Merge branch 'list-fix' of https://github.com/nurupo/InsertProjectNameHereirungentoo
2014-06-20Reduced number of realloc calls bs_list doesMaxim Biro
2014-06-20Fix CppCheck style errorsTux3 / Mlkj / !Lev.uXFMLA
#if 0 the content of toxav/msi.c : int stringify_message(MSIMessage *msg, char *dest) This function has no effect and does not seem to be used for actively waiting. Fix various other style errors, reduce scope when possible, avoid redundant writes, clarify operator priorities, etc.
2014-06-20Merge branch 'tcpserv' of https://github.com/tux3/toxcoreirungentoo
2014-06-20Merge branch 'perf-rebase' of https://github.com/tux3/toxcoreirungentoo
2014-06-20Fix redundant assignment in TCP_server.cTux3 / Mlkj / !Lev.uXFMLA
2014-06-20Remove some immediatly overwritten writesTux3 / Mlkj / !Lev.uXFMLA
Fix local variable being modified just before it goes out of scope When memcpy-ing in a buffer, only memset the part of the buffer not modified by the memcpy, not the whole buffer Also reorder the memset after the memcpy, to potentially avoid cache misses (NOT profiled)
2014-06-18Preparation work to make onion packets go through TCP.irungentoo
2014-06-18Merge branch 'master' of https://github.com/Jman012/toxcore into Jman012-masterirungentoo
2014-06-18Included assert.h for Messenger/DHT.cJman012
2014-06-18Comment out extra argument to sprintfTux3 / Mlkj / !Lev.uXFMLA
2014-06-17Small fixes.irungentoo
Added toxdns.h include to toxdns.c. Removed default "Online" status message.
2014-06-16Merge branch 'ntox' of https://github.com/kitech/toxcore into kitech-ntoxirungentoo
2014-06-16The comments say this function only returns -1 on error, fixed that.irungentoo
2014-06-16Added more input validation to add_friend functions.irungentoo
2014-06-16fix func protoliuguangzhao
2014-06-15Astyled code.irungentoo
2014-06-13Const correctness for various packet callbacksMarc Schütz