blob: 5ed442b3bd9afa89eb1d6f9b346dafe6709e58ec [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".
Patrick Venture45fad1b2019-03-18 16:52:14 -070014ipmi_ret_t getEntityName(const uint8_t* reqBuf, uint8_t* replyBuf,
Patrick Venturec87de552020-05-20 20:25:39 -070015 size_t* dataLen, HandlerInterface* handler);
Jaghathiswari Rankappagounder Natarajanfd0f1cf2019-01-18 15:31:07 -080016
17} // namespace ipmi
18} // namespace google