blob: 8004cbf0e13c2ec8ceecad025bbb37c34341eb11 [file] [log] [blame]
Patrick Venture01123b22019-06-20 13:49:06 -07001#pragma once
2
3#include <cstdint>
4#include <ipmiblob/blob_interface.hpp>
5
6namespace 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 */
16bool pollStatus(std::uint16_t session, ipmiblob::BlobInterface* blob);
17
18} // namespace host_tool