summaryrefslogtreecommitdiff
path: root/toxcore
AgeCommit message (Collapse)Author
2014-03-08send_custom_user_packet now returns -1 when friend is offline.irungentoo
2014-03-07Some tox_wait_* improvementsMaxim Biro
2014-03-07Fixed clients not connecting when there is only 2 people on the network.irungentoo
2014-03-07Speeded up onion requests.irungentoo
Also increased the maximum number of announce entries.
2014-03-07Fixed some possible ways connections could linger indefinitely without being ↵irungentoo
killed.
2014-03-06Your userstatus and message are now saved with tox_save().irungentoo
2014-03-06Made save more portable.irungentoo
This should fix the issue of the friends list getting cleared when something in it changes.
2014-03-05CPU optimizations.irungentoo
Use get_shared_key() in more places.
2014-03-05Set typing status before calling callback.AZ Huang
2014-03-04CPU usage improvements.irungentoo
Shared keys for recieved DHT packets are now stored in a special array so that they don't need to be recomputed for nodes that send us lots of packets.
2014-03-03Some small changes/fixes.irungentoo
Changed some timeouts and made cryptopacket_handle return correctly.
2014-03-03Made onion paths expire eventually client side.irungentoo
2014-03-03Some CPU optimizations and fixes to onion_announce_request.irungentoo
2014-03-02Small CPU optimizations to ping requests/reponses.irungentoo
Same idea as last commit.
2014-03-01Some small DHT CPU optimizations.irungentoo
Only compute the shared key once instead of twice for received DHT requests/responses.
2014-02-28Very simple fix to lower bandwidth usage at startup.irungentoo
2014-02-26Major speed/cpu usage/bandwidth improvements to onion.irungentoo
2014-02-25Allow to optionally use randombytes_stir() instead of sodium_init()Jin^eLD
According to sonOfRa sodium_init() has some timing issues on Android. libsodium people said randombytes_stir() can be used instead: https://github.com/jedisct1/libsodium/issues/121 sodium_init() stays the default, randombytes_stir() can be enabled by passing --enable-randombytes-stir to the configure script.
2014-02-24Speeded up DHT peer finding and decreased DHT bandwidth usage.irungentoo
2014-02-23Userstatus function fixes.irungentoo
2014-02-23Strings now no longer need to be NULL terminated.irungentoo
2014-02-22Renamed dht server to dht nodeMaxim Biro
2014-02-22Fixed the size function for self status messageMaxim Biro
2014-02-21Added size functions for names and status messagesMaxim Biro
2014-02-21Some api changes.irungentoo
2014-02-20Removed typedefs for consistencyMaxim Biro
2014-02-19Merge pull request #747 from Jman012/masterirungentoo
Groupchat crashing bug fixed.
2014-02-19Fixed the groupchat bug in a smarter way.Jman012
2014-02-19Groupchat crashing bug fixed.Jman012
2014-02-19Fixed bug in DHT.irungentoo
2014-02-18Astyled and added tests.irungentoo
2014-02-18Merge branch 'master' of https://github.com/Jman012/ProjectTox-Core into ↵irungentoo
Jman012-master
2014-02-17Changed libtoxcore_la_LDADD to libtoxcore_la_LIBADD cause of creating a library.exonity
2014-02-17astyled last commit.irungentoo
2014-02-17Merge branch 'lehi-dev' of https://github.com/lehitoskin/ProjectTox-Core ↵irungentoo
into lehitoskin-lehi-dev
2014-02-16Typing: Forgot the callback argument types.Jman012
2014-02-16Typing: Changed all return values to int for consistency and the -1 error.Jman012
2014-02-16Typos.Jman012
2014-02-16Fixed user typing bug where it'd alway return an error.Jman012
2014-02-16Added user typing changes in core.Jman012
2014-02-16Replaced magic numbers inside candidates_create_internal() with enumerated listLehi Toskin
2014-02-16Adjusted some delays.irungentoo
Decreased LAN discovery packet sending interval. Attempted fix of the everyone is unknown bug in group chats.
2014-02-16Possibly fixed the issue that group chats would sometimes DOS themselves.irungentoo
2014-02-15Fixed some possible issues.irungentoo
2014-02-15Added callback for A/V usage.irungentoo
2014-02-15Fixed issue.irungentoo
2014-02-14Added custom userpackets.irungentoo
A way to send and handle lossy UDP packets coming from friends. Will be used for A/V.
2014-02-14Fixed small bug in DHT.irungentoo
2014-02-13Onion now eventualy deletes friends from the DHT search.irungentoo
This should improve long term bandwidth usage by a bit.
2014-02-13Made onion paths expire.irungentoo