Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-09-12 | Merge branch 'tox_connect' of https://github.com/saneki/toxcore | irungentoo | |
2014-09-12 | Removed tox_connect, initial connections are made on first tox_do | saneki | |
2014-09-11 | testing works, but doesn't pass... | Dubslow | |
2014-09-11 | Add magic number, auto tests still required | Dubslow | |
2014-09-11 | Replace fprintf(stderr,...) by LOGGER_*() in net_crypto | Tux3 / Mlkj / !Lev.uXFMLA | |
2014-09-10 | Merge branch 'compiletimeLTO' of https://github.com/tux3/toxcore | irungentoo | |
2014-09-10 | Remove unused function in DHT.c | Tux3 / Mlkj / !Lev.uXFMLA | |
2014-09-10 | Remove unused variable in handle_sendnodes | Tux3 / Mlkj / !Lev.uXFMLA | |
2014-09-09 | spelling corrections | cgar | |
2014-09-09 | Fixed spacing | saneki | |
2014-09-09 | Added tox_connect function, no connecting done during tox_load | saneki | |
2014-09-08 | Added tests for custom lossy and lossless packets. | irungentoo | |
Fixed bug with lossless packets. | |||
2014-09-07 | Updated docs. | irungentoo | |
Fixed possible issue in last commit. | |||
2014-09-06 | This fixes an issue where nodes could stay unannounced for certain | irungentoo | |
periods of time. Online nodes should now be able to announce themselves continuously. | |||
2014-09-05 | Added custom packet functions to public tox api. | irungentoo | |
This should make it easy for people to use toxcore to power many types of networked applications. | |||
2014-09-03 | Fixed typo. | irungentoo | |
2014-09-03 | Fixed iOS possible SIGPIPE issue. | irungentoo | |
Apparently on iOS UDP sockets can SIGPIPE (what the fuck apple?). | |||
2014-09-02 | Expose the tox_add_tcp_relay() function in the public api. | irungentoo | |
Clients can use this function to make Tox connect to user specified TCP relays. | |||
2014-09-01 | Increased time between ping packets by 1 second. | irungentoo | |
This might make active connections less likely to time out needlessly. | |||
2014-08-31 | Tweaked some values in DHT to decrease the discovery time mainly | irungentoo | |
for the auto tests. | |||
2014-08-30 | Merge branch 'myChan' of https://github.com/lobiCode/toxcore | irungentoo | |
2014-08-30 | Add support for user avatars in the core protocol | Alexandre Erwin Ittner | |
Add a protocol and the APIs to straightforwardly support user avatars in client applications. The protocol is designed to transfer avatars in background, between friends only, and minimize network load by providing a lightweight avatar notification for local cache validation. Strict safeguards are imposed to avoid damage from non-cooperative or malicious users and to limit network usage. The complete documentation is available in docs/Avatars.md and sample code is available in testing/test_avatars.c. Code and documentation are released under the GNU GPLv3 or later, as described in the file COPYING. | |||
2014-08-29 | Speeded up start of file transfers. | irungentoo | |
2014-08-29 | Removed useless code. | irungentoo | |
2014-08-29 | Lossless crypto packets can now be sent without the congestion control ↵ | irungentoo | |
applying to them. | |||
2014-08-29 | added checking for null pointer in new_Assoc function | slaniCode | |
2014-08-28 | Fixed gcc warnings. | irungentoo | |
2014-08-27 | Removed send withid functions from api. | irungentoo | |
2014-08-27 | Added function to check if packet sent with net_crypto was received. | irungentoo | |
2014-08-26 | Merge branch 'lobiCode-myChan' | irungentoo | |
2014-08-27 | fix the memory leak in new_TCP_server function | slaniCode | |
2014-08-23 | onion_isconnected is the best indicator of if tox is connected. | irungentoo | |
2014-08-23 | Removed now deprecated function. | irungentoo | |
2014-08-22 | Small code cleanup. | irungentoo | |
2014-08-21 | Fixed some gcc warnings. | irungentoo | |
2014-08-18 | Speeded up onion friend finding. | irungentoo | |
2014-08-18 | Added function to check if we were only connected to LAN DHT peers. | irungentoo | |
2014-08-16 | Removed useless line. | irungentoo | |
2014-08-16 | Some 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-16 | New 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-15 | Set socket family to family of proxy when using proxy. | irungentoo | |
2014-08-14 | Modified tox_bootstrap_from_address() function. | irungentoo | |
PORT IS NO LONGER PASSED IN NETWORK BYTE ORDER. Removed useless ipv6enabled parameter. | |||
2014-08-14 | Added 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-14 | Function to save path nodes. | irungentoo | |
Forgot to commit it with before last commit. | |||
2014-08-14 | When getting disconnected from good relay, try to reconnect. | irungentoo | |
2014-08-14 | Save some path nodes to speed up joining network on pure TCP. | irungentoo | |
2014-08-14 | tox_isconnected() now works on TCP only. | irungentoo | |
2014-08-14 | UDP can now be disabled. | irungentoo | |
new_messenger() now takes an options struct as an argument. | |||
2014-08-14 | Remove useless code. | irungentoo | |
2014-08-14 | Added basic socks5 proxy support to TCP client. | irungentoo | |