summaryrefslogtreecommitdiff
path: root/http/routing/sserule.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'http/routing/sserule.hpp')
-rw-r--r--http/routing/sserule.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/http/routing/sserule.hpp b/http/routing/sserule.hpp
index c0a4e504b3..ad05bafbe2 100644
--- a/http/routing/sserule.hpp
+++ b/http/routing/sserule.hpp
@@ -30,7 +30,6 @@ class SseSocketRule : public BaseRule
asyncResp->res.result(boost::beast::http::status::not_found);
}
-#ifndef BMCWEB_ENABLE_SSL
void handleUpgrade(const Request& /*req*/,
const std::shared_ptr<bmcweb::AsyncResp>& /*asyncResp*/,
boost::asio::ip::tcp::socket&& adaptor) override
@@ -42,7 +41,6 @@ class SseSocketRule : public BaseRule
std::move(adaptor), openHandler, closeHandler);
myConnection->start();
}
-#else
void handleUpgrade(const Request& /*req*/,
const std::shared_ptr<bmcweb::AsyncResp>& /*asyncResp*/,
boost::beast::ssl_stream<boost::asio::ip::tcp::socket>&&
@@ -55,7 +53,6 @@ class SseSocketRule : public BaseRule
std::move(adaptor), openHandler, closeHandler);
myConnection->start();
}
-#endif
template <typename Func>
self_t& onopen(Func f)