summaryrefslogtreecommitdiff
path: root/http/http_client.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'http/http_client.hpp')
-rw-r--r--http/http_client.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/http/http_client.hpp b/http/http_client.hpp
index 63c2611a2d..f59438be8c 100644
--- a/http/http_client.hpp
+++ b/http/http_client.hpp
@@ -632,7 +632,7 @@ class HttpClient
// Used as a dummy callback by sendData() in order to call
// sendDataWithCallback()
- static void genericResHandler(Response& res)
+ static void genericResHandler(const Response& res)
{
BMCWEB_LOG_DEBUG << "Response handled with return code: "
<< std::to_string(res.resultInt());
@@ -660,7 +660,7 @@ class HttpClient
const boost::beast::http::verb verb,
const std::string& retryPolicyName)
{
- std::function<void(Response&)> cb = genericResHandler;
+ const std::function<void(const Response&)> cb = genericResHandler;
sendDataWithCallback(data, id, destIP, destPort, destUri, httpHeader,
verb, retryPolicyName, cb);
}