Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-08-11 | Added functions to receive and send onion packets via TCP to net_crypto.c | irungentoo | |
2014-08-11 | Some code refactoring to make passing onion packets through TCP easier. | irungentoo | |
2014-08-11 | Added length check to onion_send_1(). | irungentoo | |
2014-08-10 | Fixed bug. | irungentoo | |
2014-08-09 | Merge branch 'remove-sort_list' of https://github.com/pyruvate/toxcore | irungentoo | |
2014-08-09 | Onion paths creation no longer dependent on DHT only. | irungentoo | |
2014-08-09 | Refactoring of node replacements in addto_lists function | pyruvate | |
An index for replacement candidate is searched in one lookup cycle for all types (bad, possibly bad, good). Sorting of items has been removed (sorting logic can be substituted by a maximum search). | |||
2014-08-08 | Added path_nodes array and add_path_node() function. | irungentoo | |
2014-08-07 | Increased ping interval time to decrease bandwidth usage. | irungentoo | |
This should not increase the time it takes for people to find themselves. | |||
2014-08-04 | The receiver of a file now needs to confirm that he did receive it | irungentoo | |
correctly. This should fix an issue that happened when both clients got disconnected when the file was almost finished sending. The sender would show that the file had been sent successfully when it had not. See the modifications to tox.h | |||
2014-08-04 | Update with upstream | mannol | |
2014-08-04 | Fix some toxav warnings | mannol | |
2014-08-03 | remove unneeded printf's/prevent stdout spam | Jfreegman | |
2014-07-31 | Adding a new connection while a lossy packet is being sent could | irungentoo | |
also cause thread related issues. | |||
2014-07-31 | Fixed possible threading issues. | irungentoo | |
send_lossy_cryptpacket() can get called from another thread meaning the connection can be killed while the packet is sending. | |||
2014-07-30 | Added function to get public and private key from Tox object. | irungentoo | |
2014-07-29 | Spreading packets around TCP relays causes issues with the audio and video. | irungentoo | |
Make each connection stick to the same relay. | |||
2014-07-27 | Only send kill packet when killing established connection. | irungentoo | |
2014-07-22 | Use epoll_create() instead of epoll_create1() for compatibility with | irungentoo | |
older kernels. | |||
2014-07-22 | Merge branch 'master' of https://github.com/mannol1/toxcore | irungentoo | |
2014-07-21 | This should fix test failing | mannol | |
2014-07-21 | Fixed bug where two Tox clients sometimes didn't reconnect right | irungentoo | |
after disconnecting due to them getting stuck in a connection loop. | |||
2014-07-21 | Don't set connection to established if packet is kill packet. | irungentoo | |
Removed now useless defines in network.h | |||
2014-07-20 | LAN discovery should now work on windows machines with multiple | irungentoo | |
ethernet devices. Added some code to get real adapter broadcast addresses on windows. | |||
2014-07-20 | Added addr_parse_ip() to network.h header. | irungentoo | |
Removed useless semicolons. | |||
2014-07-19 | Removed useless function. | irungentoo | |
2014-07-18 | Spread packets over many TCP relays instead of just using the first one. | irungentoo | |
2014-07-16 | Fixed possible bug with TCP nonce not getting incremented. | irungentoo | |
2014-07-16 | Merge branch 'split-video' of https://github.com/notsecure/toxcore | irungentoo | |
2014-07-16 | fix memory leak | Jfreegman | |
2014-07-16 | applied priority queue changes to the TCP client too | notsecure | |
2014-07-15 | Merge branch 'notsecure-split-video' | irungentoo | |
2014-07-15 | fixed some issues | notsecure | |
2014-07-15 | added priority packet system for TCP server | notsecure | |
2014-07-15 | Fixed TCP bug. | irungentoo | |
Packet was being copied with a wrong, smaller length. | |||
2014-07-15 | Fixed bug with TCP. | irungentoo | |
Don't increment nonce if packet was discarded instead of being sent. | |||
2014-07-14 | Fixed file sending documentation. | irungentoo | |
2014-07-14 | Change connection status before handling data packets. | irungentoo | |
2014-07-14 | Set packets_left to default non zero values when creating connection. | irungentoo | |
2014-07-14 | Packets can now be sent from the connection status callback. | irungentoo | |
2014-07-14 | Attempted fix of file transfer issue. | irungentoo | |
Instead of dropping the rate to minimum just half it until it drops to the minimum. | |||
2014-07-13 | Fixed documentation comment errors | Jin^eLD | |
2014-07-12 | Merge branch 'split-video' of https://github.com/notsecure/toxcore | irungentoo | |
2014-07-11 | Fixed some small TCP issues. | irungentoo | |
2014-07-11 | . | notsecure | |
2014-07-10 | Made TCP a bit more solid. | irungentoo | |
TCP ping requests in TCP_client should have a higher success rate. | |||
2014-07-10 | Merge branch 'master' of https://github.com/irungentoo/toxcore into split-video | notsecure | |
2014-07-10 | fix send rate going up when peer disconnects | notsecure | |
2014-07-09 | TCP 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-08 | Fixed possible out of bounds read. | irungentoo | |