Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-24 | Portability saving fixes for big endian systems. | irungentoo_trip | |
Saves should now be portable from big endian to little endian systems though I need someone to actually test it to be sure I didn't mess up. | |||
2014-10-21 | Fixed unaligned memory access. | irungentoo_trip | |
2014-10-04 | Send friend request with connection if for some reason (groupchats) we | irungentoo | |
are already connected to the friend but they have not added us yet. | |||
2014-10-02 | People in groups can now be added/removed from friends list without issues. | irungentoo | |
2014-10-02 | Removed useless code. | irungentoo | |
2014-09-29 | Fixed crash in tox_new(). | irungentoo | |
2014-09-28 | Group chats now use friendcon_id instead of friendnumber. | irungentoo | |
2014-09-28 | Merge branch 'unset_avatar' of https://github.com/JFreegman/toxcore | irungentoo | |
2014-09-27 | Removed send_group_message_packet and its callback function from | irungentoo | |
Messenger. | |||
2014-09-27 | Moved all the connection stuff from messenger to friend_connection. | irungentoo | |
Messenger was doing way do many things. friend_connection takes care of finding and establishing a connection to friends. | |||
2014-09-27 | Make the ip port from DHT timeout after a while. | irungentoo | |
Some small fixes. | |||
2014-09-26 | Remove timestamp from set_connection_dht_public_key(). | irungentoo | |
2014-09-26 | Only set dht public key and direct ip when first creating connection. | irungentoo | |
Check if ip family is valid in set_direct_ip_port() function. | |||
2014-09-26 | Moved cleaup_friend functionality to Messenger. | 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-26 | add API function to unset avatar | Jfreegman | |
2014-09-25 | More groupchats code written. | irungentoo | |
2014-09-25 | Removed groupchats from core. | irungentoo | |
2014-09-24 | housekeeping | dubslow | |
2014-09-22 | Fixed typo. | irungentoo | |
2014-09-22 | Some fixes to avatar pull request. | irungentoo | |
Some bug fixes. Grouped all avatar related functions in the same place in tox.h | |||
2014-09-22 | Merge branch 'avatars' of https://github.com/ittner/toxcore | irungentoo | |
2014-09-21 | Remove chattiness from avatar data transfers | Alexandre Erwin Ittner | |
The chatty approach for the avatar data transfer was intended as a security feature to add explicit delays to the transfer and prevent amplification attacks among authenticated friends. This was deemed unnecessary in the code review and, therefore, replaced by a simpler approach that sends all data in a single burst. | |||
2014-09-12 | Some cleanups to last PR. | irungentoo | |
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-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-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-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 | Lossless crypto packets can now be sent without the congestion control ↵ | irungentoo | |
applying to them. | |||
2014-08-22 | Small code cleanup. | irungentoo | |
2014-08-14 | Save some path nodes to speed up joining network on pure TCP. | irungentoo | |
2014-08-14 | UDP can now be disabled. | irungentoo | |
new_messenger() now takes an options struct as an argument. | |||
2014-08-14 | Added basic socks5 proxy support to TCP client. | irungentoo | |
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-07-05 | delete groupchat when join fails | Jfreegman | |
2014-07-05 | Fixed bug when loading friends list already containing an added friend. | irungentoo | |
2014-07-02 | Merge branch 'const_correctness' of https://github.com/schuetzm/ProjectTox-Core | irungentoo | |
2014-06-30 | Const-correctness for tox.c | Marc Schütz | |
2014-06-30 | Const correctness for toxcore/Messenger.c and related files | Marc Schütz | |
2014-06-28 | Merge branch 'mannol1-master' | irungentoo | |
2014-06-27 | Fixed tox_do_interval() returning value so high it broke A/V. | irungentoo | |
2014-06-25 | Fixed some more possible issues with file transfers/conjestion control. | irungentoo | |
2014-06-20 | Merge branch 'perf-rebase' of https://github.com/tux3/toxcore | irungentoo | |
2014-06-20 | Remove some immediatly overwritten writes | Tux3 / Mlkj / !Lev.uXFMLA | |
Fix local variable being modified just before it goes out of scope When memcpy-ing in a buffer, only memset the part of the buffer not modified by the memcpy, not the whole buffer Also reorder the memset after the memcpy, to potentially avoid cache misses (NOT profiled) | |||
2014-06-18 | Included assert.h for Messenger/DHT.c | Jman012 | |