Patrick Venture | 01123b2 | 2019-06-20 13:49:06 -0700 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include <cstdint> | ||||
4 | #include <ipmiblob/blob_interface.hpp> | ||||
5 | |||||
6 | namespace host_tool | ||||
7 | { | ||||
8 | |||||
9 | /** | ||||
10 | * Poll an open verification session. | ||||
11 | * | ||||
12 | * @param[in] session - the open verification session | ||||
13 | * @param[in] blob - pointer to blob interface implementation object. | ||||
14 | * @return true if the verification was successul. | ||||
15 | */ | ||||
16 | bool pollStatus(std::uint16_t session, ipmiblob::BlobInterface* blob); | ||||
17 | |||||
18 | } // namespace host_tool |