summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--http/http_client.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/http/http_client.hpp b/http/http_client.hpp
index ae077ef07b..14e2cf263f 100644
--- a/http/http_client.hpp
+++ b/http/http_client.hpp
@@ -14,15 +14,25 @@
// limitations under the License.
*/
#pragma once
+#include <boost/asio/io_context.hpp>
#include <boost/asio/ip/address.hpp>
#include <boost/asio/ip/basic_endpoint.hpp>
+#include <boost/asio/ip/tcp.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/core/tcp_stream.hpp>
#include <boost/beast/http/message.hpp>
+#include <boost/beast/http/parser.hpp>
+#include <boost/beast/http/read.hpp>
+#include <boost/beast/http/string_body.hpp>
+#include <boost/beast/http/write.hpp>
#include <boost/beast/version.hpp>
#include <boost/container/devector.hpp>
+#include <boost/system/error_code.hpp>
+#include <http/http_response.hpp>
#include <include/async_resolve.hpp>
+#include <logging.hpp>
#include <cstdlib>
#include <functional>