summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-08-25Removed unnecessary parametersolologin
2014-08-24Update downloads URLDavid Lohle
This page contains all the available downloads for Tox.
2014-08-24Merge branch 'nurupo-tox-shell-fix'irungentoo
2014-08-23Added FreeBSD includeMaxim Biro
2014-08-23Merge branch 'install-update' of https://github.com/nurupo/InsertProjectNameHereirungentoo
2014-08-23Updated Windows cross-compiling instructionsMaxim Biro
2014-08-23onion_isconnected is the best indicator of if tox is connected.irungentoo
2014-08-23Removed now deprecated function.irungentoo
2014-08-22Small code cleanup.irungentoo
2014-08-22Merge branch 'master' of https://github.com/beemaster/toxcoreirungentoo
2014-08-22Fix toxcore linkage on qnxbeemaster
2014-08-21Fixed some gcc warnings.irungentoo
2014-08-20Merge branch 'stal888-patch-6'irungentoo
2014-08-20Daily OS X fix.stal
Patch also fixes NetBSD and OpenBSD, but I can't test that. <pty.h> is <util.h> on some BSDs.
2014-08-19Added tox_shell to testing.irungentoo
tox_shell is a basic secure shell that can be used to control a computer from any Tox client. Just run tox_shell and make it add your Tox id. It's very basic but it works.
2014-08-19Merge branch 'nurupo-bootstrapd-fix'irungentoo
2014-08-18Added .sh ending to bootstrapd's init scriptMaxim Biro
Fixes some build issues.
2014-08-18Speeded up onion friend finding.irungentoo
2014-08-18Added function to check if we were only connected to LAN DHT peers.irungentoo
2014-08-17Merge branch 'bootstrapd-update' of ↵irungentoo
https://github.com/nurupo/InsertProjectNameHere
2014-08-17Fixed some warningsMaxim Biro
2014-08-17Fixed daemon taking long time to stopMaxim Biro
2014-08-17Renamed files for less confusionMaxim Biro
2014-08-17Made possible to run the daemon under its own userMaxim Biro
2014-08-17Made init.d script work with systemdMaxim Biro
2014-08-16Renamed tox_bootstrap_daemon into tox-bootstrapdMaxim Biro
2014-08-16Removed useless line.irungentoo
2014-08-16Some thread safety related fixes to TCP connections in net_crypto.irungentoo
Added a recursive mutex to fix possible thread issues when the A/V thread sends data at the same time as the main thread.
2014-08-16New congestion control algorithm.irungentoo
This new congestion control algorithm uses the increase in size of the send queue to regulate how fast it sends data. When tweaked it should work better than the old one.
2014-08-15Set socket family to family of proxy when using proxy.irungentoo
2014-08-14Modified tox_bootstrap_from_address() function.irungentoo
PORT IS NO LONGER PASSED IN NETWORK BYTE ORDER. Removed useless ipv6enabled parameter.
2014-08-14Added disabling of UDP and basic SOCKS5 proxy support to public API.irungentoo
tox_new() now takes a Tox_Options struct as argument. If a NULL pointer is passed to that struct, defaults are used.
2014-08-14Function to save path nodes.irungentoo
Forgot to commit it with before last commit.
2014-08-14When getting disconnected from good relay, try to reconnect.irungentoo
2014-08-14Save some path nodes to speed up joining network on pure TCP.irungentoo
2014-08-14tox_isconnected() now works on TCP only.irungentoo
2014-08-14UDP can now be disabled.irungentoo
new_messenger() now takes an options struct as an argument.
2014-08-14Remove useless code.irungentoo
2014-08-14Added basic socks5 proxy support to TCP client.irungentoo
2014-08-13Tox should now work on TCP only networks.irungentoo
Coming soon: a function to disable UDP.
2014-08-13Tox now closer to working on TCP only networks.irungentoo
Use TCP paths when UDP is not connected. Made some code depend less on the UDP only DHT.
2014-08-13If the path is a TCP one, the onion packet is sent with TCP.irungentoo
2014-08-13Decreased maximum onion_test test time.irungentoo
2014-08-13Added function to create onion packets to send via TCP.irungentoo
2014-08-12Fixed bug that led to increased bandwidth usage.irungentoo
2014-08-12Onion packets can now be received via TCP.irungentoo
2014-08-12No longer rely on source ip to get the path the packet was sent with.irungentoo
2014-08-11Added functions to receive and send onion packets via TCP to net_crypto.cirungentoo
2014-08-11Some code refactoring to make passing onion packets through TCP easier.irungentoo
2014-08-11Added length check to onion_send_1().irungentoo