Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-03-12 | tox_new now sets error to TOX_ERR_NEW_PORT_ALLOC when binding to port fails. | irungentoo | |
2015-03-11 | tox_callback_connection_status() implemented. | irungentoo | |
Attempted fix of connection checking to make it more stable. | |||
2015-03-10 | Implementation of new api file transfers. | irungentoo | |
Everything should work except resuming. | |||
2015-03-09 | Updated new_filesender function in Messenger.c | irungentoo | |
2015-03-06 | Updated File request packet to new format. | irungentoo | |
[uint8_t packet_id (PACKET_ID_FILE_SENDREQUEST)][uint8_t file_number] [uint32_t type][uint64_t file_size][filename (currently max 255 bytes)] recv file numbers are << by 16 to distinguish them from sending files. | |||
2015-03-05 | enums are no longer typedefed to uint8_t. | irungentoo | |
2015-03-05 | Code cleanups. | irungentoo | |
Fixed wrong variable used, removed useless elements of struct. | |||
2015-03-02 | Merge branch 'port_range_option' of https://github.com/saneki/toxcore into ↵ | irungentoo | |
new_api | |||
2015-02-27 | Removed backwards compatibility code from core. | irungentoo | |
That function should be static. | |||
2015-02-27 | Allow for specifying the port range to use in Tox_Options | saneki | |
2015-02-26 | Added different error codes for custom packet functions in Messenger. | irungentoo | |
2015-02-26 | Changes to custom packet functions in Messenger. | irungentoo | |
Added function for rtp A/V packets, modified functions to behave correctly for the new api. | |||
2015-02-24 | Remove avatar stuff from Messenger. | irungentoo | |
The new api sees avatars as a different type of file transfer. | |||
2015-02-20 | Implemented message send functions in public api. | irungentoo | |
Internal message functions now return better error codes. | |||
2015-02-20 | Merge branch 'fixed-receipts' into new_api | irungentoo | |
2015-02-19 | Tox connection function and callback should now work as expected. | irungentoo | |
Changes in Messenger to call the callback every time the connection type changes from TCP to UDP. | |||
2015-02-19 | Typing and status functions implemented. | irungentoo | |
2015-02-18 | use bool in is typing callback. | irungentoo | |
2015-02-17 | Updated types in Messenger callbacks to fit with the ones in the new api. | irungentoo | |
Friend number changed from int32_t to uint32_t. Some lengths changed to size_t. | |||
2015-02-17 | Messenger add friends functions error code fixes. | irungentoo | |
Removed unknown error. norequest function now returns proper error codes. | |||
2015-02-16 | More new api work done. | irungentoo | |
m_copy_self_statusmessage no longer takes a buffer length argument. | |||
2015-02-16 | Allow empty names and status messages. | irungentoo | |
2015-02-15 | New api progress. | irungentoo | |
2015-01-27 | client_id is a bad name for the long term public key. | irungentoo | |
2014-12-21 | Some refactoring of proxy code | Maxim Biro | |
2014-12-09 | Merge branch 'more_consistent_custom_packet_handlers' of ↵ | irungentoo | |
https://github.com/wrouesnel/toxcore | |||
2014-12-09 | Change prototype for custom_packet_handler functions | Will Rouesnel | |
Change the custom_packet_handler callback function interface to be consistent with other callback interfaces. The new interface takes the Messenger object calling as the first parameter, and moves the user data object to be the last parameter. This makes it comparable to the callbacks for file transfer and the like, and should simplify building interfaces. The new prototype is: int (*)(Messenger *m, int32_t friendnumber, const uint8_t *data, uint32_t len, void *object) | |||
2014-11-04 | Some initial groupchat lossy packet code. | irungentoo | |
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-10-01 | Group chats now actually work somewhat. | 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 | Moved cleaup_friend functionality to Messenger. | irungentoo | |
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 | 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-21 | Remove support for avatar image formats other than PNG | Alexandre Erwin Ittner | |
Support for other formats was deemed unnecessary in the code review and therefore removed. The value for the constant TOX_AVATARFORMAT_PNG is now set in stone; if the other formats become needed again in the future, this commit shall be reverted and the enum values reordered to keep compatibility. | |||
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 | Fixed spacing | saneki | |
2014-09-09 | Added tox_connect function, no connecting done during tox_load | saneki | |