Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-08-24 | Add loopback and broadcast constants | Diadlo | |
2017-08-24 | Remove useless 'to_net_family' and 'to_host_family' | Diadlo | |
2017-08-24 | Add platform independent constants | Diadlo | |
2017-08-24 | AF_INET -> TOX_AF_INET | Diadlo | |
2017-08-22 | Run tests only once on FreeBSD due to Travis timeout | Maxim Biro | |
2017-08-22 | Fix compiler warning due to missing void | Maxim Biro | |
2017-08-22 | Fix FreeBSD failing on Travis after update | Maxim Biro | |
2017-08-22 | Update FreeBSD version on Travis to 11.1 | Maxim Biro | |
2017-08-22 | Define INADDR_LOOPBACK on systems not defining it | Maxim Biro | |
2017-08-22 | Disable MSG_NOSIGNAL on systems not supporting it | Maxim Biro | |
2017-08-22 | Disable compiler thread safety analysis | Maxim Biro | |
2017-08-22 | Update FreeBSD image on new tag | Maxim Biro | |
Instead of updating it in every Travis build. | |||
2017-08-22 | Allow FreeBSD tests to fail | Maxim Biro | |
2017-08-22 | Test toxcore on FreeBSD on Travis | Maxim Biro | |
2017-08-06 | Release v0.1.10 | Robin Lindén | |
2017-08-05 | Save bandwidth by moderating onion pinging. | zugz | |
2017-06-09 | Fix Windows build | Maxim Biro | |
2017-06-06 | Release v0.1.9 | Robin Lindén | |
2017-06-06 | Remove unused variable | Maxim Biro | |
2017-06-06 | Fix non-portable zeroing out of doubles | Maxim Biro | |
2017-06-05 | Fix theoretical memory leaks | Maxim Biro | |
2017-06-05 | Fold hstox tests into the general linux test. | iphydf | |
We can run the spectest from within cmake, so we should exercise that. | |||
2017-06-05 | Build tests on appveyor, the MSVC build. | iphydf | |
Tests are not actually ran on appveyor for now, since they all fault for some reason. For now, we just build them. Also, some tests are disabled on msvc entirely, because they don't even compile. We'll need to look into those, later. They are disabled using `MSVC_DONT_BUILD`. | |||
2017-06-05 | Add test for changing the conference title and not receiving a callback. | pranomostro | |
2017-06-05 | Document inverted mutex lock/unlock. | iphydf | |
All other code in this file does lock/call/unlock, except this one instance, so we should explain why. | |||
2017-06-05 | Change way to iterate through assoc | Diadlo | |
2017-06-05 | Make work with assoc more generic | Diadlo | |
2017-06-05 | Improve formatting and syntax | Diadlo | |
2017-06-05 | Cleanup punch_holes | Diadlo | |
2017-06-05 | Add using id_equal | Diadlo | |
2017-06-05 | Update crypto_size and check index | Diadlo | |
2017-06-05 | Extract 'update_client_data' to reduce code duplication | Diadlo | |
2017-06-05 | Extract 'update_client_with_reset' function to reduce code duplication | Diadlo | |
2017-06-05 | Extract 'update_client' function | Diadlo | |
To make 'client_or_ip_port_in_list' code easy to read | |||
2017-06-05 | Extract variables | Diadlo | |
2017-06-05 | Change return type to be the same as return value type | Diadlo | |
Return value of 'addto_list' function is 'used' counter, which is uint32_t. It will be better to use the same return type. | |||
2017-06-05 | Add using macros to improve code | Diadlo | |
2017-06-05 | Add 'index_of' functions | Diadlo | |
- Replace 'for' with long body - Replace friend_number function on index_of_friend_pk - Replace client_in_nodelist on index_of_node_pk | |||
2017-06-05 | Extract SharedKey struct and use it as var instead of indexing | Diadlo | |
2017-06-05 | Add using C99 'for' syntax | Diadlo | |
2017-06-04 | Split daemon's logging backends in separate modules | Maxim Biro | |
2017-06-04 | Add a monolith_test that includes all toxcore sources. | iphydf | |
This requires that every symbol, even if static (file-scope), is unique. The idea is that we can easily run "whole" program static analysis on programs that include monolith.h ("whole" is in quotes, as we don't include dependencies like libsodium in this static analysis). | |||
2017-06-04 | Test for memberlist not changing after changing own name. | pranomostro | |
This test shows that the conference members callback is not invoked when the own name changes. | |||
2017-06-04 | Factor out strict_abi cmake code into a separate module. | iphydf | |
2017-06-04 | Fix formatting and spelling in version-sync script. | iphydf | |
Also some minor reformatting and fixes to the hstox sut driver. | |||
2017-06-04 | Forbid undefined symbols in shared libraries. | iphydf | |
Also a little bit of refactoring: - Moved add_cflag and friends from CMakeLists.txt to a separate AddCompilerFlag module. - Build the spectest SUT if msgpack is found, even if spectest itself is not found, so once it exists, users can run it themselves or reconfigure cmake. | |||
2017-06-03 | Use new encoding of `Maybe` in msgpack results. | iphydf | |
The new encoding is `0` for `Nothing` and `[1, x]` for `Just x`. | |||
2017-05-13 | Make OSX test failures fail the Travis CI build. | iphydf | |
2017-05-13 | Make variable names in file saving test less cryptic. | pranomostro | |
2017-04-29 | check if already in close list in ping_node_from_getnodes_ok() | zugz | |
fix index bounds check in add_to_close() and is_pk_in_close_list() add TODO to write test for bug which fixed by this commit |