blob: cf35e0db981c91f2f6c6569b46f316bc0b20e4b3 [file] [log] [blame]
Jaghathiswari Rankappagounder Natarajanfd0f1cf2019-01-18 15:31:07 -08001#pragma once
2
Patrick Venture07f85152019-03-15 21:36:56 -07003#include "handler.hpp"
4
William A. Kennington III2c9e1622019-02-07 15:45:19 -08005#include <ipmid/api.h>
Jaghathiswari Rankappagounder Natarajanfd0f1cf2019-01-18 15:31:07 -08006
7namespace google
8{
9namespace ipmi
10{
11
12// Handle the "entity id:entity instance" to entity name mapping command.
13// Sys can query the entity name for a particular "entity id:entity instance".
14ipmi_ret_t GetEntityName(const uint8_t* reqBuf, uint8_t* replyBuf,
Patrick Venture07f85152019-03-15 21:36:56 -070015 size_t* dataLen,
16 HandlerInterface* handler = &handlerImpl);
Jaghathiswari Rankappagounder Natarajanfd0f1cf2019-01-18 15:31:07 -080017
18} // namespace ipmi
19} // namespace google