Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-20 | Small fix in Lossless UDP. | irungentoo | |
2013-09-20 | Increased the size of the UDP buffers. | irungentoo | |
2013-09-19 | Fixed bug in Lossless UDP. | irungentoo | |
2013-09-19 | Fixed bug in Lossless UDP. | irungentoo | |
2013-09-18 | Merge pull request #588 from FullName/LoggingPreInitStoring | irungentoo | |
Allow loginit() to be delayed, store loglog() data in intermediate buffer... | |||
2013-09-18 | Forgot an else. | irungentoo | |
2013-09-18 | Fixed bad code in nTox. | irungentoo | |
2013-09-18 | Allow loginit() to be delayed, store loglog() data in intermediate buffer ↵ | Coren[m] | |
and flush it out when loginit() is called util.c: - handle loglog() before loginit() by storing the lines into an expanding buffer - when loginit() is called, write out and kill the buffer network.c: - push loginit() to the point where we know the actually used port | |||
2013-09-17 | Merge branch 'group-chat' | irungentoo | |
2013-09-17 | astyled everything. | irungentoo | |
2013-09-17 | Merge pull request #585 from JFreegman/master | irungentoo | |
numchats needs to be decremented | |||
2013-09-17 | numchats needs to be decremented | Jfreegman | |
2013-09-16 | Functions to get name of peer in group chat added. | irungentoo | |
Group message callback modified. | |||
2013-09-16 | Merge pull request #583 from FullName/TestCryptoSlow | irungentoo | |
Make test "endtoend" pass on 'slow' systems | |||
2013-09-16 | Merge pull request #584 from FullName/MessengerLoadSave | irungentoo | |
Tests of state loading/saving lead to two fixes for DHT.c and util.c | |||
2013-09-17 | Merge remote-tracking branch 'upstream/master' into MessengerLoadSave | Coren[m] | |
2013-09-17 | Tests of state loading/saving lead to two fixes for DHT.c and util.c | Coren[m] | |
util.c: - fix in empty section at the end of the state, showed as bug when having an empty name DHT.c: - fix in saving less data than originally announced, showed as bug when not having reached any clients ever (no clients or only with timestamp of zero) | |||
2013-09-16 | Make test "endtoend" pass on 'slow' systems | Coren[m] | |
auto_test/crypto_test.c: - test "endtoend": increased timeout from default ~5s to 15s, making it pass on slower systems - signed/unsiged warning fixed by cast | |||
2013-09-16 | Fixed build. | irungentoo | |
2013-09-16 | Toxcore should never print anything when built normally. | irungentoo | |
2013-09-16 | Merge pull request #576 from FullName/MessengerLoadSave | irungentoo | |
State loading/saving: Instead of a blob, segment into sections marked with tags. | |||
2013-09-16 | Merge pull request #582 from FullName/UnWallWextra | irungentoo | |
Fix warnings of -Wall -Wextra | |||
2013-09-16 | Fix warnings of -Wall -Wextra | Coren[m] | |
2013-09-16 | additional length >= size checks | Coren[m] | |
Messenger.c: - additional size checks - removed one pointless copying of data, instead using it directly util.c: - lost a newline vs. master | |||
2013-09-16 | Merge remote-tracking branch 'upstream/master' into MessengerLoadSave | Coren[m] | |
Conflicts: toxcore/Messenger.c toxcore/util.c toxcore/util.h | |||
2013-09-15 | Merge pull request #577 from FullName/nTox | irungentoo | |
nTox: Save data on friend operations/exit | |||
2013-09-15 | Merge pull request #580 from FullName/networking_test | irungentoo | |
Fix in ip_equal, plus testing code which led to that fix... | |||
2013-09-15 | Fix in ip_equal, plus testing code which led to that fix... | Coren[m] | |
network.c: - use the correct macro for IPv4-in-IPv6 test network_test.c: - bunch of tests for addr_resolve() and ip_equal() | |||
2013-09-15 | Merge pull request #581 from stal888/csafixes | irungentoo | |
Fix leaks and null dereferences in net_crypto | |||
2013-09-15 | Fix leaks and null dereferences in net_crypto | Sebastian Stal | |
2013-09-15 | Merge remote-tracking branch 'upstream/master' into nTox | Coren[m] | |
2013-09-15 | more portability fixes. | irungentoo | |
2013-09-15 | Fixed portability problems. | irungentoo | |
2013-09-15 | Fixed merge problems. | irungentoo | |
2013-09-15 | Merge branch 'master' of https://github.com/irungentoo/ProjectTox-Core | irungentoo | |
2013-09-15 | Fixed portablity problems. | irungentoo | |
struct in6_addr member names can differ per platform. | |||
2013-09-15 | Merge pull request #579 from FullName/Integration | irungentoo | |
IPv6: post-integration fixes | |||
2013-09-15 | Merge remote-tracking branch 'upstream/master' into Integration | Coren[m] | |
2013-09-15 | ip_equal(): handle embedded v4 vs. native v4 as equal | Coren[m] | |
network.c: - ip_equal(): on IPv4 vs. IPv6, check if the IPv6 is an embedded IPv4 and if true, compare that | |||
2013-09-15 | addr_resolve() rewrite broke { (ipv6enabled == true) name => IPv4 address } | Coren[m] | |
network.c: - addr_resolve(): save AF_UNSPEC ip4 address into ip4, not into to->ip4 | |||
2013-09-14 | DHT peer finding for new friends should now be slightly faster. | irungentoo | |
Also fixed the "[i] could not send message" bug in nTox. | |||
2013-09-14 | Fixed warnings. | irungentoo | |
2013-09-14 | Fixed small problems, updated TODO. | irungentoo | |
2013-09-14 | Small fixes. | irungentoo | |
2013-09-14 | Fixed some warnings. | irungentoo | |
2013-09-14 | astyled everything. | irungentoo | |
2013-09-14 | Some fixes. | irungentoo | |
2013-09-14 | Save datafile when adding a friend/accepting a friend request. | Coren[m] | |
(Note to self: make clean is your friend. Those extra seconds are well spent.) | |||
2013-09-14 | DHT.c: | Coren[m] | |
- get_close_nodes(): refactored the inner loop out into get_close_nodes_inner() | |||
2013-09-14 | network.c: | Coren[m] | |
- addr_resolve(): for() instead of while(), flip conditions for a much neater function (suggested by Andreas Schneider) - ip_ntoa(): enforced termination: terminate at the maximum position, that's the one snprintf() may forget - networking_poll(): forgot tabs2spaces |