summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-02-06Fixed memory leak.irungentoo
2015-02-06Fix memory leaks.irungentoo
2015-02-06Fixed memory leak.irungentoo
2015-02-06Fixed memory leak.irungentoo
2015-02-05Lowered CPU usage.irungentoo
Check if onion data will be sent before encrypting it, not after.
2015-02-05Documentation and service description for using tox-bootstrapd withEugene Lopatin
systemd
2015-02-04Removed useless misleading define.irungentoo
2015-02-03Merge branch 'urras-master'irungentoo
2015-02-03Move OS X install scriptUrras
2015-02-03Merge branch 'urras-patch-2'irungentoo
2015-02-03Travis should build Tox with Libsodium stableUrras
2015-02-02Merge branch 'make-funny-savefile' of https://github.com/ittner/toxcoreirungentoo
2015-02-01Merge branch 'ittner-update-avatar-docs-2'irungentoo
2015-02-01Progressmannol
2015-02-01Add script to generate save files with custom keysAlexandre Erwin Ittner
Allow users to play with keys generated outside Tox core without depending on features from any specific client. Just generate a stub save file that every client will understand.
2015-01-31Update avatar documentationAlexandre Erwin Ittner
Add missing function and fixes some typos and formatting.
2015-01-31Rename "client id" to "public key" in avatar docs and examplesAlexandre Erwin Ittner
Commit b8d530c9e0bbce331f22cbff7f818e49673d5bd7 and some of its parents changed the public name of "client id" to "public key". Update the avatar documentation to follow the idea.
2015-01-31Fixed bug where mutex would be destroyed but not recreated for newirungentoo
net_crypto connection. Only destroy mutex when it is realloced out.
2015-01-30Prevent unnecessary sending of packets.irungentoo
If name/status/typing didn't actually change return success and don't actually do anything.
2015-01-29Api break.irungentoo
TOX_CLIENT_ID_SIZE renamed to TOX_PUBLIC_KEY_SIZE. Renamed client_id to public_ke in public api.
2015-01-29Code cleanups.irungentoo
Rename array in Node_format from client_id to public_key.
2015-01-28Code cleanups.irungentoo
2015-01-27client_id is a bad name for the long term public key.irungentoo
2015-01-26Code cleanup.irungentoo
2015-01-25Merge branch 'bootstrapd-example-nodes' of ↵irungentoo
https://github.com/nurupo/InsertProjectNameHere
2015-01-25Replace hardcoded nodes with examplesMaxim Biro
Reverts Proplex'es change.
2015-01-24Updated TODO.irungentoo
2015-01-24Current progressmannol
2015-01-23Code cleanups.irungentoo
Remove duplicate addfriend code and shoved it in its own function.
2015-01-22Zero broadcast ips are invalid.irungentoo
2015-01-21Code cleanups.irungentoo
2015-01-20Fixed gcc warnings.irungentoo
2015-01-19Fixed gcc warnings.irungentoo
2015-01-18Merge branch 'win_log' of https://github.com/MovingtoMars/toxcoreirungentoo
2015-01-17Attempted fix of Tox disconnecting during file transfers by tweakingirungentoo
some congestion control numbers.
2015-01-18Add 2015 to copyright noticeMovingtoMars
2015-01-18Fix logging on WindowsMovingtoMars
2015-01-17Fixed logger build issue.irungentoo
2015-01-17Merge branch 'mannol-master'irungentoo
2015-01-17fix_logger-v.0.2mannol
2015-01-17Progressmannol
2015-01-16Tox should work better on TCP only when some people have broken TCPirungentoo
nodes and don't update them. Paths now try to use the same TCP node for their entire lifetime.
2015-01-15Fixed warning.irungentoo
2015-01-14Don't enforce limits on pings for LAN ips.irungentoo
2015-01-13Fix TCP server regression.irungentoo
onion.c was parsing recieved packets a bit too strictly and discarding packets that had ips with non valid families. TCP uses a non valid family to send back the packet to the proper connected node.
2015-01-12Attempted fix of Tox killing routers part 2.irungentoo
Reduced drastically the number of ips the DHT pings by only pinging nodes that would be included in one of the close lists.
2015-01-12Merge branch 'nurupo-logger-fix'irungentoo
2015-01-12Fixed Windows buildMaxim Biro
Apparently ERROR was defined as some constant somewhere on Windows.
2015-01-11Attempted fix of Tox killing routers.irungentoo
This commit makes tox use one Onion_Client_Paths struct for all friends instead of one per friend. This should lower the number of ips tox sends packets to which is what I think causes the router issues.
2015-01-10Fixed use after free.irungentoo