summaryrefslogtreecommitdiffstats
path: root/status.hpp
blob: 667c0506d888aa56a3fb69acdf938c8913c06e75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

#include <cstdint>

namespace ipmi_flash
{

enum class VerifyCheckResponses : std::uint8_t
{
    running = 0,
    success = 1,
    failed = 2,
    other = 3,
};

/** The status of the update mechanism. */
enum class UpdateStatus : std::uint8_t
{
    running = 0,
    success = 1,
    failed = 2,
    unknown = 3,
};

} // namespace ipmi_flash
OpenPOWER on IntegriCloud