Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-10-23 | Prevent seek equal to size of file transfer so that toxcore respects what ↵ | irungentoo | |
the docs say. | |||
2015-10-23 | Fix PACKET_ID_OFFLINE fallinthrough PACKET_ID_NICKNAME | tux3 | |
This fixes the PACKET_ID_OFFLINE handling code incorrectly falling through to the PACKET_ID_NICKNAME handling code This bug resulted in a friend B's name being wiped on friend A's client after B removes A Fixes tux3/qTox#1967 Fixes #1426 | |||
2015-10-10 | New Adaptive BR algorithm, cleanups and fixes | Eniz Vukovic | |
2015-08-03 | Remove useless var. | irungentoo | |
2015-08-02 | Save fixes. | irungentoo | |
2015-07-29 | client_id -> public_key | irungentoo | |
2015-07-23 | Save important parts of save first. | irungentoo | |
This might reduce the likelyness of broken saves. | |||
2015-07-22 | Fixed bug. | irungentoo | |
2015-07-21 | Fixed bug. | irungentoo | |
2015-07-19 | Pack onion path nodes in save. | irungentoo | |
2015-07-17 | Allow savedata to be slightly smaller than the allocated buffer. | irungentoo | |
2015-07-16 | Pack connected TCP relay nodes. | irungentoo | |
2015-07-11 | Tell A/V that friend is offline when friend is deleted. | irungentoo | |
2015-07-08 | Fix segfault caused by cleanup functions in wrong order | Jfreegman | |
2015-06-30 | Allow sending data after file is paused. | irungentoo | |
Dissallow sending non requested data. | |||
2015-06-28 | Removed useless parameter from new_TCP_server() | irungentoo | |
2015-06-22 | Fixed warning. | irungentoo | |
2015-05-26 | Fixed rare bug where userstatus, name, etc... would not be sent to friend. | irungentoo | |
2015-05-26 | Fixed bug when deleting friend that we are connected to in group chat. | irungentoo | |
2015-05-21 | Load only secret key from tox save, not public key. | irungentoo | |
Calculate public key from it. | |||
2015-05-14 | Added tcp test. | irungentoo | |
2015-05-12 | Connect to own TCP server if hosting one. | irungentoo | |
Removed useless code. | |||
2015-05-08 | Added basic TCP server hosting to tox.h api. | irungentoo | |
TODO: tell friends we are hosting a relay and prioritize using relays hosted by friends over bootstrap ones. | |||
2015-05-03 | Removed useless code. | irungentoo | |
2015-04-27 | Move LAN discovery from Messenger to friend_connection. | irungentoo | |
2015-04-24 | Fixed a couple possible issues with the friend connection callback. | irungentoo | |
A TCP callback could be received when only a UDP connection was present. Increased a UDP timeout to make it less likely to time out and switch to TCP. | |||
2015-04-21 | Move the send tcp relay packet from Messenger to friend connection. | irungentoo | |
2015-04-18 | Some messenger fixes. | irungentoo | |
2015-04-16 | Properly share connected relays and connect to the friend correctly | irungentoo | |
with them. | |||
2015-04-16 | Store TCP relays tied to friend and reconnect to some when reconnecting. | irungentoo | |
2015-04-05 | Fixed typo. | irungentoo | |
2015-04-03 | File transfer fixes. | irungentoo | |
Don't allow non transferring files to be paused and then resumed starting the file transfer. | |||
2015-04-02 | API function to get last seen timestamp of friend | Jfreegman | |
also removed remnants of the no longer used variable ping_lastrecv | |||
2015-03-30 | Removed unused variable. | irungentoo | |
2015-03-27 | Fixed file transfer bug. | irungentoo | |
This should have been at the beginning of the loop, not the end. | |||
2015-03-23 | Added some more checks for file packets. | irungentoo | |
2015-03-21 | Transfers with filelength == 0 now behave exactly like transfers of every | irungentoo | |
other size (except streaming of course). | |||
2015-03-20 | Allow sending of file transfer requests with length 0 but don't allocate | irungentoo | |
any file number for them in core. These can be used to tell friends we don't have an avatar set or to unset a set avatar. | |||
2015-03-20 | For file transfers UINT64_MAX is now used as the size for streaming | irungentoo | |
transfers instead of 0. For avatar transfers file size 0 now means that the client has no avatar set. Added a test for streaming transfers. | |||
2015-03-18 | Merged normal message function and send action function into one | irungentoo | |
messaging function. This removes code duplication and allows us to easily add new message types to the api without having to add new functions. | |||
2015-03-17 | Kill all file transfers associated with the friend when friend goes | irungentoo | |
offline. | |||
2015-03-17 | Added tox_file_send_seek() function to api. | irungentoo | |
This function can be used to seek an incoming file tranfer right before accepting it. It is meant to be used to resume incomplete file tranfers by clients. | |||
2015-03-17 | Allow file names to be of length 0. | irungentoo | |
Pointer in callback will be NULL if length is 0. | |||
2015-03-17 | Added and implemented file_id parameter to file tranfers. | irungentoo | |
file_id is a 32byte identifier that can be used by users to identify file tranfers across core/client restarts in order to resume broken file tranfers. In avatar tranfers it corresponds to the hash of the avatar. Added tox_file_get_file_id() function to api to obtain the file_id of an ongoing file transfer. If not set, core will generate a random one. | |||
2015-03-15 | Avatar hash is now the filename of the file transfer instead of the | irungentoo | |
first 32 bytes. Enforce length of filename in core when transfer is an avatar type transfer to make things more safe. | |||
2015-03-13 | When link can't send packets anymore, stop the request chunk callback. | irungentoo | |
Removed time variable in packet struct and replaced it with sent variable. | |||
2015-03-13 | File kind is now a uint32_t. | irungentoo | |
This allows clients to agree on what numbers mean what without having it be set in core. | |||
2015-03-13 | tox_file_send_chunk() must now send data the same length as requested | irungentoo | |
in the requested chunk callback. For zero size transfers if the data sent is not the same length, the file is assumed to be done. | |||
2015-03-12 | File transfer fixes and improvements. | irungentoo | |
2015-03-12 | Don't assume tox_file_send_chunk() is called in the request chunk | irungentoo | |
callback. |