replace boost.asio with standalone asio.

This commit is contained in:
Chunting Gu
2020-02-20 10:43:46 +08:00
parent b72db3a048
commit 718392fa9e
490 changed files with 110256 additions and 144 deletions
+2 -2
View File
@@ -7,7 +7,7 @@
#include <string>
#include <vector>
#include "boost/asio/buffer.hpp" // for const_buffer
#include "asio/buffer.hpp" // for const_buffer
#include "webcc/config.h"
@@ -21,7 +21,7 @@ using Strings = std::vector<std::string>;
// Could also be considered as arguments, so named as UrlArgs.
using UrlArgs = std::vector<std::string>;
using Payload = std::vector<boost::asio::const_buffer>;
using Payload = std::vector<asio::const_buffer>;
// -----------------------------------------------------------------------------