Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
libtoxcore.pc now has -lpthread like it's supposed to on systems
where it is needed.
|
|
logger_init_fix
|
|
|
|
|
|
Audio dropping on video calls issue should no longer happen.
|
|
|
|
|
|
This should speed up DHT searches.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Should prevent issues that might occur because a different thread is
reading it.
|
|
|
|
Video should look better now.
|
|
|
|
|
|
|
|
|
|
|
|
https://github.com/wrouesnel/toxcore
|
|
|
|
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)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|