Tom Joseph | f8da32a | 2016-12-06 16:56:04 +0530 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include <cstddef> | ||||
4 | #include <vector> | ||||
5 | |||||
6 | #include "comm_module.hpp" | ||||
7 | |||||
8 | namespace command | ||||
9 | { | ||||
10 | |||||
11 | constexpr size_t BMC_GUID_LEN = 16; | ||||
12 | |||||
13 | /* | ||||
14 | * @brief Get System GUID | ||||
15 | * | ||||
16 | * @return If UUID is successfully read from the Chassis DBUS object, then the | ||||
17 | * GUID is returned, else a canned GUID is returned | ||||
18 | */ | ||||
19 | std::array<uint8_t, BMC_GUID_LEN> getSystemGUID(); | ||||
20 | |||||
21 | } // namespace command |