summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2022-05-25 20:40:41 +0300
committerEd Tanous <ed@tanous.net>2022-05-27 20:24:36 +0300
commit918ef25bf3f32253bd143dca1140d5e603c31bbb (patch)
treeede11ece4dc6279be9558f985c723b2950123197
parentd055a34aeb4072c34d012517ffb5014a1301313a (diff)
downloadbmcweb-918ef25bf3f32253bd143dca1140d5e603c31bbb.tar.xz
Include-what-you-use in http connection
Lots of #includes were missing in this file that we tangentially got through boost/beast/websocket.hpp. Tested: Code builds. Signed-off-by: Ed Tanous <edtanous@google.com> Change-Id: Iac5198f2f65eabaecf47d0fb6bb05bfa5a261f32
-rw-r--r--http/http_connection.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/http/http_connection.hpp b/http/http_connection.hpp
index 564593c081..330c565831 100644
--- a/http/http_connection.hpp
+++ b/http/http_connection.hpp
@@ -14,6 +14,10 @@
#include <boost/asio/ssl/stream.hpp>
#include <boost/asio/steady_timer.hpp>
#include <boost/beast/core/flat_static_buffer.hpp>
+#include <boost/beast/http/parser.hpp>
+#include <boost/beast/http/read.hpp>
+#include <boost/beast/http/serializer.hpp>
+#include <boost/beast/http/write.hpp>
#include <boost/beast/ssl/ssl_stream.hpp>
#include <boost/beast/websocket.hpp>
#include <boost/url/url_view.hpp>