Compare commits

..

13 commits

Author SHA1 Message Date
Anton
28147ee0e3 fix on-push-commit-check
All checks were successful
PR Check / on-push-commit-check (push) Successful in 13m18s
2024-11-16 22:36:39 +03:00
Anton
ee408b7ff8 socks5 tests fixed reinterpret_cast
Some checks failed
PR Check / on-push-commit-check (push) Failing after 14m25s
2024-11-13 02:03:30 +03:00
Anton
b115439029 ConnectViaProxy socks5 tests passed
Some checks failed
PR Check / on-push-commit-check (push) Failing after 12m44s
2024-11-12 20:28:38 +03:00
810ebbfa86 Add Serialization and Deserialization generation for std::optional 2024-11-12 20:28:25 +03:00
23070660f9 Use LLVM 19.1.3 instead LLVM 19.1.1 and continue CI if clang-format failed 2024-11-12 20:28:25 +03:00
eafa3aff85 Add serialization and deserialization for vector 2024-11-12 20:28:25 +03:00
efcbc8e86a CI: Added configuring clang for tidy checks 2024-11-12 20:28:25 +03:00
460f3f96c9 Add automatic serialization/deserialization generation 2024-11-12 20:28:25 +03:00
9b670ab098 Add gtest to install from Arch Linux repositories in workflow 2024-11-12 20:28:25 +03:00
f4cb788a48 Remove pugixml dependency 2024-11-12 20:28:25 +03:00
7b97541320 Update server URL in workflow 2024-11-12 20:28:25 +03:00
42bd42f3e2 Update utempl URL 2024-11-12 20:28:25 +03:00
Anton
46d630de39 ConnectViaProxy socks5 fix try
Some checks failed
PR Check / on-push-commit-check (push) Failing after 3m26s
2024-11-12 01:55:26 +03:00

View file

@ -35,8 +35,6 @@ template <typename Socket>
struct PrintStream : Socket {
using Socket::Socket;
PrintStream(PrintStream&&) = default;
constexpr PrintStream(Socket&& sock) : Socket(std::move(sock)) {
}
using Executor = Socket::executor_type;
template <typename ConstBufferSequence,
BOOST_ASIO_COMPLETION_TOKEN_FOR(void(boost::system::error_code, std::size_t))