Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-06 | Fixed typedef. | irungentoo | |
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-05 | spelling, punctuation, ... | aaannndddyyy | |
2015-03-05 | minor punctuation fixes | aaannndddyyy | |
only minor punctuation fixes. not changed the wording, except for one 'logical typo'. | |||
2015-03-04 | Removed useless TODO comments. | irungentoo | |
2015-03-03 | Merge branch 'jin-eld-rpm' | irungentoo | |
2015-03-04 | Add spec file for rpm generation | Jin^eLD | |
The spec file gets processed by configure, the version will be filled in automatically. To generate an rpm make sure to install rpm-build, then "configure" as you would usually do, run "make dist", then process the generated tarball with rpmbuild: rpmbuild -tb tox-0.0.0.tar.gz Tested on Fedora 22. | |||
2015-03-03 | Add README.md to the dist tarball | Jin^eLD | |
2015-03-03 | Fix dist target | Jin^eLD | |
Modify tar options to allow extra long filen and directory names, if not set souces under toxencryptsave might not end up in the tarball. | |||
2015-03-02 | Merge branch 'port_range_option' of https://github.com/saneki/toxcore into ↵ | irungentoo | |
new_api | |||
2015-03-01 | Properly fixed encryptsave_test.c | irungentoo | |
2015-03-01 | Merge branch 'new_api' of https://github.com/dubslow/toxcore into new_api | irungentoo | |
2015-02-28 | Merge branch 'urras-patch-1' | irungentoo | |
2015-02-28 | Update encryption autotest | Dubslow | |
2015-02-27 | Removed backwards compatibility code from core. | irungentoo | |
That function should be static. | |||
2015-02-27 | Test fixes. | irungentoo | |
2015-02-27 | Realign toxencryptsave with new API | Dubslow | |
2015-02-27 | Allow for specifying the port range to use in Tox_Options | saneki | |
2015-02-26 | Implemented custom packet functions in new api. | irungentoo | |
2015-02-26 | Added different error codes for custom packet functions in Messenger. | irungentoo | |
2015-02-26 | More tests ported to new api. | 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-25 | Minor changes to README | Urras | |
Regarding documentation and an outdated link | |||
2015-02-25 | Ported some tests to the new api. | irungentoo | |
2015-02-25 | toxav new api fixes. | irungentoo | |
2015-02-25 | Fixed bug. | irungentoo | |
2015-02-24 | Ported some of the code in testing/ to the new api. | irungentoo | |
2015-02-24 | Remove avatar stuff from Messenger. | irungentoo | |
The new api sees avatars as a different type of file transfer. | |||
2015-02-23 | Use edge trigger on listen socket in TCP_Server. | irungentoo | |
This may or may not improve things. | |||
2015-02-22 | When socket dies, kill it. | irungentoo | |
Use epoll to detect when socket closed connection. | |||
2015-02-21 | Fixed possible TCP server bug. | irungentoo | |
Function returned success when should have returned failure. | |||
2015-02-20 | Implemented callbacks. | irungentoo | |
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 | Merge branch 'new_api' of https://github.com/dubslow/toxcore into new_api | irungentoo | |
2015-02-19 | Typing and status functions implemented. | irungentoo | |
2015-02-18 | Put const adjective before type nouns | Dubslow | |
(Done with two applications of "sed -i -r "s/(\\w+) const\\b/const \\1/g" toxcore/tox.*" ) Conflicts: toxcore/tox.c | |||
2015-02-18 | use bool in is typing callback. | irungentoo | |
2015-02-18 | Apparently enums are bad for wrappers and doing this makes wrapping | irungentoo | |
toxcore easier. | |||
2015-02-17 | More new api functions implemented. | irungentoo | |
Some small self explainatory changes to the api. | |||
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 | Fixed friend_not_valid function. | irungentoo | |
It now returns if friend is valid or not not only if memory location is valid. | |||
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-02-14 | Code cleanups. | irungentoo | |