switch asio from standalone to boost

This commit is contained in:
Chunting Gu
2020-08-31 14:57:47 +08:00
parent 20f02aa704
commit d49db1ec9c
507 changed files with 237 additions and 110294 deletions
+2 -2
View File
@@ -7,7 +7,7 @@
#include <string>
#include <vector>
#include "asio/buffer.hpp" // for const_buffer
#include "boost/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<asio::const_buffer>;
using Payload = std::vector<boost::asio::const_buffer>;
// -----------------------------------------------------------------------------