Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-07-20 | refactor: move compat.h into compat/ | fanquake | |
2022-06-22 | net: rename Sock::Reset() to Sock::Close() and make it private | Vasil Dimov | |
Outside of `Sock`, `Sock::Reset()` was used in just one place (in `i2p.cpp`) which can use the assignment operator instead. This simplifies the public `Sock` API by having one method less. | |||
2022-06-20 | net: remove now unused Sock::Release() | Vasil Dimov | |
2021-04-13 | net: flag relevant Sock methods with [[nodiscard]] | Vasil Dimov | |
2021-03-16 | test: add a test to ensure RecvUntilTerminator() limit works | Vasil Dimov | |
2021-02-12 | test: fix sign comparison warning in socket tests | fanquake | |
This fixes: ```bash In file included from test/sock_tests.cpp:10: In file included from /usr/local/include/boost/test/unit_test.hpp:18: In file included from /usr/local/include/boost/test/test_tools.hpp:46: /usr/local/include/boost/test/tools/old/impl.hpp:107:17: warning: comparison of integers of different signs: 'const long' and 'const unsigned long' [-Wsign-compare] return left == right; ~~~~ ^ ~~~~~ ``` which was introduced in #20788. | |||
2021-02-11 | test: add Sock unit tests | Vasil Dimov | |