summaryrefslogtreecommitdiff
path: root/http/http_client.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'http/http_client.hpp')
-rw-r--r--http/http_client.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/http/http_client.hpp b/http/http_client.hpp
index 75304f69a1..6a20453b82 100644
--- a/http/http_client.hpp
+++ b/http/http_client.hpp
@@ -29,9 +29,9 @@
#include <boost/asio/ssl/context.hpp>
#include <boost/asio/ssl/error.hpp>
#include <boost/asio/steady_timer.hpp>
-#include <boost/beast/core/flat_buffer.hpp>
#include <boost/beast/core/flat_static_buffer.hpp>
#include <boost/beast/http/message.hpp>
+#include <boost/beast/http/message_generator.hpp>
#include <boost/beast/http/parser.hpp>
#include <boost/beast/http/read.hpp>
#include <boost/beast/http/write.hpp>
@@ -279,19 +279,19 @@ class ConnectionInfo : public std::enable_shared_from_this<ConnectionInfo>
// Set a timeout on the operation
timer.expires_after(std::chrono::seconds(30));
timer.async_wait(std::bind_front(onTimeout, weak_from_this()));
-
+ boost::beast::http::message_generator messageGenerator(std::move(req));
// Send the HTTP request to the remote host
if (sslConn)
{
- boost::beast::http::async_write(
- *sslConn, req,
+ boost::beast::async_write(
+ *sslConn, std::move(messageGenerator),
std::bind_front(&ConnectionInfo::afterWrite, this,
shared_from_this()));
}
else
{
- boost::beast::http::async_write(
- conn, req,
+ boost::beast::async_write(
+ conn, std::move(messageGenerator),
std::bind_front(&ConnectionInfo::afterWrite, this,
shared_from_this()));
}