Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-03 | Added some comments to net_crypto.h | irungentoo | |
2014-10-18 | File transfer speed should jump up a bit faster. | irungentoo | |
2014-09-26 | Remove timestamp from set_connection_dht_public_key(). | irungentoo | |
2014-09-26 | Removed useless code from onion_client. | irungentoo | |
Astyled. | |||
2014-09-26 | Added callbacks to onion_client and net_crypto for the temp dht key. | irungentoo | |
Better than the polling mess. Moved DHT to Messenger from onion_client (still needs some cleanups). | |||
2014-09-18 | Lowered minimum transfer speed. | irungentoo | |
2014-09-09 | spelling corrections | cgar | |
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-27 | Added function to check if packet sent with net_crypto was received. | 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-14 | Added basic socks5 proxy support to TCP client. | irungentoo | |
2014-08-11 | Added functions to receive and send onion packets via TCP to net_crypto.c | irungentoo | |
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-10 | fix send rate going up when peer disconnects | notsecure | |
2014-07-02 | Merge branch 'const_correctness' of https://github.com/schuetzm/ProjectTox-Core | irungentoo | |
2014-06-30 | Const-correctness for toxcore/net_crypto.c | Marc Schütz | |
2014-06-30 | Const correctness for toxcore/Messenger.c and related files | Marc Schütz | |
2014-06-29 | Core should no longer attempt to send data faster than the links can | irungentoo | |
carry it. | |||
2014-06-25 | Fixed some more possible issues with file transfers/conjestion control. | irungentoo | |
2014-06-12 | pthread is now a core dependency instead of just a toxav dependency. | irungentoo | |
Fixed possible thread bug with sending A/V packets. TODO: eventually make toxcore thread safe. | |||
2014-06-10 | Const correctness in various interdependent files | Marc Schütz | |
2014-06-06 | Renamed list functions to fix conflict issue on certain machines. | irungentoo | |
2014-06-05 | Optimized net_crypto UDP packet sorting using list. | irungentoo | |
2014-06-04 | Doubled minimum transfer rate. | irungentoo | |
File transfers got stuck because it was too low. | |||
2014-06-04 | Added data packet padding to toxcore. | irungentoo | |
Data sent as lossless or lossy is now padded with: ((MAX_CRYPTO_DATA_SIZE - data_length) % CRYPTO_MAX_PADDING) bytes in order to reduce the possibility of length related attacks. I set CRYPTO_MAX_PADDING to 8 but it can be changed anytime without breaking network compatibility between tox cores. | |||
2014-06-03 | Tweaked file transfers a bit. | irungentoo | |
2014-06-02 | Increased some timeouts to try to prevent disconnections when | irungentoo | |
transferring files on wireless networks. | |||
2014-05-30 | Renamed tox_do_run_interval to tox_do_interval. | irungentoo | |
tox_do_interval now returns a time in ms based on how much action is going on in net_crypto. | |||
2014-05-22 | more conjestion control | notsecure | |
needs testing | |||
2014-05-21 | improved conjestion control | notsecure | |
2014-05-21 | Added functions to send and receive lossy encrypted packets over | irungentoo | |
the Tox connection. A/V should now work over TCP. | |||
2014-05-18 | TCP branch now ready for start of real testing. | irungentoo | |
Friends can now exchange TCP relay addresses so that they can connect together. Currently all bootstrap nodes are treated as TCP relays. | |||
2014-05-17 | add_tcp_relay_peer() can be used to add relays that we know that | irungentoo | |
peer is connected to. Some cleanups/fixes. | |||
2014-05-17 | Added a function to get the DHT public key stored in net_crypto. | irungentoo | |
The DHT public keys in onion_client/net_crypto are synced and set to whichever is more recent. Tox peers now try to connect directly even when already connected with a TCP relay. | |||
2014-05-17 | Net_crypto can now handle packets sent as TCP OOB packets. | irungentoo | |
Added timestamp to know which DHT public key is good in case onion_client and net_crypto report different ones. | |||
2014-05-17 | Changed cookie/cookie request packet. | irungentoo | |
Cookie now contains the dht public key of the peer which makes more sense than including the real public key of the reciever. It means we no longer have to rely entirely on onion_client to find the dht public key of the other peer. | |||
2014-05-16 | Fixed typo. | irungentoo | |
2014-05-16 | Some TCP code added to net_crypto. | irungentoo | |
add_tcp_relay() can be used to connect to some TCP relays. If both Toxes are connected to the same TCP relay(s) and create a connection on which they set the others dht_public_key, they will connect. | |||
2014-05-12 | Fixed some issues. | irungentoo | |
Friends with multiple ips (on LAN) should be handled better. Remade the function to check the crypto connection status. | |||
2014-05-11 | Added kill packets. | irungentoo | |
There should be no more delay between a peer closing their client and their friend being notified of them going offline. (unless the kill packet is lost) | |||
2014-05-10 | Added basic congestion control to net_crypto. | irungentoo | |
2014-05-09 | Fixed small issues. | irungentoo | |
Added set_buffer_end(). File transfer test now checks if pieces arrive correctly. | |||
2014-05-08 | Connection between toxes is lossless once again. | irungentoo | |
2014-05-04 | Added arrays to store packets on send/recv in net crypto. | irungentoo | |
Wrote down more of the protocol. Padding support has been added and implemented which will make it possible for us to pad packets to mitigate length related attacks. | |||
2014-05-03 | All time in core is now monotonic. | irungentoo | |
2014-05-02 | Messenger now works with the new net_crypto api. | irungentoo | |
Added callbacks in net_crypto for the data packets and status changes. Added onion_getfriend_DHT_pubkey to onion_client. Net crypto isn't done yet so connections between toxes are not lossless, this means file sending is broken hence why the test fails. | |||
2014-05-02 | Remove Lossless UDP (This breaks Tox.) | irungentoo | |
2014-05-01 | Protocol implementation is starting to look ok. | irungentoo | |
Still need to decide exactly how data packets will work though. |