summaryrefslogtreecommitdiff
path: root/toxcore/tox.h
AgeCommit message (Collapse)Author
2015-03-02Merge branch 'port_range_option' of https://github.com/saneki/toxcore into ↵irungentoo
new_api
2015-02-27Realign toxencryptsave with new APIDubslow
2015-02-27Allow for specifying the port range to use in Tox_Optionssaneki
2015-02-20Merge branch 'fixed-receipts' into new_apiirungentoo
2015-02-18Put const adjective before type nounsDubslow
(Done with two applications of "sed -i -r "s/(\\w+) const\\b/const \\1/g" toxcore/tox.*" ) Conflicts: toxcore/tox.c
2015-02-18Apparently enums are bad for wrappers and doing this makes wrappingirungentoo
toxcore easier.
2015-02-17More new api functions implemented.irungentoo
Some small self explainatory changes to the api.
2015-02-16More new api work done.irungentoo
m_copy_self_statusmessage no longer takes a buffer length argument.
2015-02-15New api progress.irungentoo
2015-02-14A bit of new api work done.irungentoo
2015-02-13Started implementing new Tox api.irungentoo
2015-01-29Api break.irungentoo
TOX_CLIENT_ID_SIZE renamed to TOX_PUBLIC_KEY_SIZE. Renamed client_id to public_ke in public api.
2014-12-26Make it possible to port clients to the new api by just replacingirungentoo
proxy_enabled with proxy_type.
2014-12-21Further refactoring of proxy codeMaxim Biro
2014-12-21Some refactoring of proxy codeMaxim Biro
2014-12-13Added HTTP proxy supportMaxim Biro
2014-12-10Add define for the maximum length of the friend request to the public api.irungentoo
2014-12-09Merge branch 'more_consistent_custom_packet_handlers' of ↵irungentoo
https://github.com/wrouesnel/toxcore
2014-12-09Change prototype for custom_packet_handler functionsWill 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-12-01Comment fix.irungentoo
2014-11-19get peer pubkey apidubslow
2014-11-15Some modifications to the last pull request.irungentoo
2014-11-14add api function to get group titleJfreegman
2014-11-13Merge branch 'titles' of https://github.com/dubslow/toxcoreirungentoo
2014-11-11fix type checkingdubslow
2014-11-11public api, finishing tweaksdubslow
2014-11-11Added function to get groupchat type.irungentoo
2014-11-10Group chats now have types.irungentoo
2014-10-30Missing cv-qualifiers in tox.h commentsTux3 / Mlkj / !Lev.uXFMLA
2014-10-15re-implement copy_chatlist functionJfreegman
2014-10-14Add function to check if the peernumber is ours for group chats.irungentoo
2014-10-02Fixed tox_load() comment.irungentoo
2014-09-28Merge branch 'unset_avatar' of https://github.com/JFreegman/toxcoreirungentoo
2014-09-27Merge branch 'update-avatar-docs' of https://github.com/ittner/toxcoreirungentoo
2014-09-26add API function to unset avatarJfreegman
2014-09-26Group chats are starting to work.irungentoo
2014-09-25Update avatar documentationAlexandre Erwin Ittner
Update the documentation to reflect the API changes introduced by commits 21be438b2b3f7aa1b65b76a7f528eacfe5b634db and d409bad30dd1657f6b54ea5e38a4d9155f718ae1
2014-09-25Tox object doesn't need to be passed to tox_hash.irungentoo
2014-09-24remove tox_avatar_hashdubslow
2014-09-24housekeepingdubslow
2014-09-22Some fixes to avatar pull request.irungentoo
Some bug fixes. Grouped all avatar related functions in the same place in tox.h
2014-09-22Merge branch 'avatars' of https://github.com/ittner/toxcoreirungentoo
2014-09-21Remove support for avatar image formats other than PNGAlexandre 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-11testing works, but doesn't pass...Dubslow
2014-09-11Add magic number, auto tests still requiredDubslow
2014-09-09compiling against nacl seems to break VANILLA_NACL...Dubslow
2014-09-09Merge branch 'master' into encrypted_dataDubslow
2014-09-05Added 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-09-03Merge branch 'master' into encrypted_dataDubslow
2014-09-03Added encrypted save to toxcore, if sodium is usedDubslow
Note, this is untested