blob: 5580972cf53c9a555ee38640c9d6bc5e4a13b41f [file] [log] [blame]
Patrick Venture01123b22019-06-20 13:49:06 -07001#pragma once
2
Patrick Venture01123b22019-06-20 13:49:06 -07003#include <ipmiblob/blob_interface.hpp>
4
Patrick Venture9b37b092020-05-28 20:58:57 -07005#include <cstdint>
6
Patrick Venture01123b22019-06-20 13:49:06 -07007namespace host_tool
8{
9
10/**
11 * Poll an open verification session.
12 *
13 * @param[in] session - the open verification session
14 * @param[in] blob - pointer to blob interface implementation object.
15 * @return true if the verification was successul.
16 */
17bool pollStatus(std::uint16_t session, ipmiblob::BlobInterface* blob);
18
19} // namespace host_tool