summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-12-28Use same jbuf size for group as for one on one chats.irungentoo
Use define instead of constant.
2014-12-27onion_isconnected fix attempt.irungentoo
Try to make it more stable.
2014-12-26Make it possible to port clients to the new api by just replacingirungentoo
proxy_enabled with proxy_type.
2014-12-26Fixed bug with auto tests and cleaned up the code a bit.irungentoo
2014-12-26Merge branch 'http-proxy-feature' of ↵irungentoo
https://github.com/nurupo/InsertProjectNameHere
2014-12-25Fixed bug.irungentoo
Set friend in onion as offline when friend goes offline.
2014-12-25Onion client improvements.irungentoo
Put bootstrap nodes in a separate list than known good nodes.
2014-12-25Add function to get nodes from onion path.irungentoo
2014-12-24Don't populate path nodes too much.irungentoo
2014-12-23Merge branch 'instructions' of https://github.com/zetok/ProjectTox-Coreirungentoo
2014-12-23Update INSTALL.mdZetok Zalbavar
pkg-config is required for proper autodetection of opus and vpx, without it they are not detected by ./configure on Debian 7.
2014-12-22Improved detection of dead paths.irungentoo
2014-12-21Fixed bug in tox_load where names of size TOX_MAX_NAME_LENGTH didn'tirungentoo
load.
2014-12-21Further refactoring of proxy codeMaxim Biro
2014-12-21Some refactoring of proxy codeMaxim Biro
2014-12-20auto test group titles.irungentoo
2014-12-19Merge branch 'cscope.files' of https://github.com/jdp5087/toxcoreirungentoo
2014-12-19Merge branch 'logger_init_fix' of https://github.com/jdp5087/toxcoreirungentoo
2014-12-19Added cscope.files to .gitignoreJon Poler
2014-12-18Build system fixes.irungentoo
libtoxcore.pc now has -lpthread like it's supposed to on systems where it is needed.
2014-12-18Merge branch 'master' of https://github.com/irungentoo/toxcore into ↵Jon Poler
logger_init_fix
2014-12-18Removed calloc from logger_init, because the pid was no longer being appended.Jon Poler
2014-12-17Cut one on one default audio bitrate by half.irungentoo
2014-12-16Fixed some A/V threading issues.irungentoo
Audio dropping on video calls issue should no longer happen.
2014-12-16cs_set_video_encoder_resolution improvements.irungentoo
2014-12-15Fixed test.irungentoo
2014-12-15DHT fixes.irungentoo
This should speed up DHT searches.
2014-12-15Some optimizations on how TCP relays are used.irungentoo
2014-12-15Increased max TCP connections.irungentoo
2014-12-14Fixed DHT doc.irungentoo
2014-12-14Sendback data size is always 8 bytes.irungentoo
2014-12-13Added HTTP proxy supportMaxim Biro
2014-12-13More group auto testing.irungentoo
2014-12-12Merge branch 'mem-leak-fix' of https://github.com/nurupo/InsertProjectNameHereirungentoo
2014-12-12Fixed memory leaks.irungentoo
2014-12-12Fixed a memory leakMaxim Biro
2014-12-12Increase video quality and distance between keyframes.irungentoo
2014-12-12Make the maximum size of the jbuf at least 4 times the capacity.irungentoo
Should prevent issues that might occur because a different thread is reading it.
2014-12-12Having two buffers for audio isn't really good.irungentoo
2014-12-12Fixed video packet assembling.irungentoo
Video should look better now.
2014-12-11Test if everything goes well when a peer leaves the group chat.irungentoo
2014-12-11Fixed crash when connection was killed during the packet callback.irungentoo
2014-12-10Added a tox_add_friend auto test.irungentoo
2014-12-10Add define for the maximum length of the friend request to the public api.irungentoo
2014-12-09Fixed tox_test.cirungentoo
2014-12-09Merge branch 'more_consistent_custom_packet_handlers' of ↵irungentoo
https://github.com/wrouesnel/toxcore
2014-12-09Patch auto_tests/tox_test.c with the new prototypeWill Rouesnel
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-08Restore compatibility with older group chats.irungentoo
2014-12-08Delete close connection when peer leaves chat.irungentoo