Add support for Link header in NetworkProtocol
Similar to support added earlier in the tree, add support for the Link
header that Redfish requires.
Tested:
HEAD /redfish/v1/Managers/bmc/NetworkProtocol returns correct Link
header.
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: I0ffb86a4d95c8766822d208a51683dcbefc01dd5
diff --git a/redfish-core/lib/network_protocol.hpp b/redfish-core/lib/network_protocol.hpp
index 6b224ae..8e2fc4b 100644
--- a/redfish-core/lib/network_protocol.hpp
+++ b/redfish-core/lib/network_protocol.hpp
@@ -547,7 +547,7 @@
}
}
-inline void handleManagersNetworkProtocolGet(
+inline void handleManagersNetworkProtocolHead(
App& app, const crow::Request& req,
const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
{
@@ -555,6 +555,16 @@
{
return;
}
+ asyncResp->res.addHeader(
+ boost::beast::http::field::link,
+ "</redfish/v1/JsonSchemas/ManagerNetworkProtocol/ManagerNetworkProtocol.json>; rel=describedby");
+}
+
+inline void handleManagersNetworkProtocolGet(
+ App& app, const crow::Request& req,
+ const std::shared_ptr<bmcweb::AsyncResp>& asyncResp)
+{
+ handleManagersNetworkProtocolHead(app, req, asyncResp);
getNetworkData(asyncResp, req);
}
@@ -568,7 +578,7 @@
BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/NetworkProtocol/")
.privileges(redfish::privileges::headManagerNetworkProtocol)
.methods(boost::beast::http::verb::head)(
- std::bind_front(handleBmcNetworkProtocolHead, std::ref(app)));
+ std::bind_front(handleManagersNetworkProtocolHead, std::ref(app)));
BMCWEB_ROUTE(app, "/redfish/v1/Managers/bmc/NetworkProtocol/")
.privileges(redfish::privileges::getManagerNetworkProtocol)