summaryrefslogtreecommitdiff
path: root/http/http_client.hpp
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2022-06-28 22:02:42 +0300
committerEd Tanous <ed@tanous.net>2022-07-01 17:14:53 +0300
commitbb49eb5c2f7244e119aa1c8311d36655dd01e6cf (patch)
tree549d1f3aa2bcdc7ff88583b4c9ae5259e3e716a9 /http/http_client.hpp
parent4e23a444e8503fd03ab40de2844c783e142ebef8 (diff)
downloadbmcweb-bb49eb5c2f7244e119aa1c8311d36655dd01e6cf.tar.xz
Fix #includes on http_client.hpp
Include what you use. Tested: Code compiles Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: I23c89fee6f3e39d2f2a7dc1c3ba2db8819e8adc7
Diffstat (limited to 'http/http_client.hpp')
-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>