summaryrefslogtreecommitdiff
path: root/http/http_server.hpp
diff options
context:
space:
mode:
authorEd Tanous <edtanous@google.com>2023-09-02 00:20:50 +0300
committerEd Tanous <ed@tanous.net>2023-12-05 21:54:28 +0300
commit4fa45dffd1ece21a468ed32850428b3b41bc8093 (patch)
treeda14af66150c4b652c8aeb5c42d1e5789ac04cdd /http/http_server.hpp
parent7164bc62dd26ec92b01985aaae97ecc48276dea5 (diff)
downloadbmcweb-4fa45dffd1ece21a468ed32850428b3b41bc8093.tar.xz
Unit test Connection
Boost asio provides a test stream object that we can use to begin unit testing the connection object. This patchset uses it to re-enable some simple http1.1 tests. There's some features that have snuck into the connection class that aren't compatible with a stream (like ip address getting), so unfortunately we do need the connection class to be aware if it's in test mode, but that tradeoff seems worthwhile. Tested: Unit test pass. Change-Id: Id8b1f8866582b58502dbafe6139f841bf64b8ef3 Signed-off-by: Ed Tanous <edtanous@google.com>
Diffstat (limited to 'http/http_server.hpp')
-rw-r--r--http/http_server.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/http/http_server.hpp b/http/http_server.hpp
index b290ad7902..2a6bd9f4aa 100644
--- a/http/http_server.hpp
+++ b/http/http_server.hpp
@@ -38,14 +38,14 @@ class Server
adaptorCtx(std::move(adaptorCtxIn))
{}
- Server(Handler* handlerIn, const std::string& bindaddr, uint16_t port,
+ Server(Handler* handlerIn, uint16_t port,
const std::shared_ptr<boost::asio::ssl::context>& adaptorCtxIn,
const std::shared_ptr<boost::asio::io_context>& io =
std::make_shared<boost::asio::io_context>()) :
Server(handlerIn,
std::make_unique<boost::asio::ip::tcp::acceptor>(
*io, boost::asio::ip::tcp::endpoint(
- boost::asio::ip::make_address(bindaddr), port)),
+ boost::asio::ip::make_address("0.0.0.0"), port)),
adaptorCtxIn, io)
{}