diff options
author | Patrick Venture <venture@google.com> | 2019-02-11 08:21:10 -0800 |
---|---|---|
committer | Patrick Venture <venture@google.com> | 2019-02-11 08:22:04 -0800 |
commit | 4beac9a0eb11f122ed4e007cc491708c85b7cc90 (patch) | |
tree | bb4c667a7e8d58bc09f287112e6b52ecec0dc6ce /ipmi.hpp | |
parent | 86c87f55de9bb69f6e49c6203ffb0e12947ea7cf (diff) | |
download | phosphor-ipmi-blobs-4beac9a0eb11f122ed4e007cc491708c85b7cc90.tar.gz phosphor-ipmi-blobs-4beac9a0eb11f122ed4e007cc491708c85b7cc90.zip |
move blob command enum to installed header
Move the blob command enum to an installed header to improve cross-use.
Change-Id: I2093bf993f76a2b87f8e7fdbdfcbaf2dfc012af9
Signed-off-by: Patrick Venture <venture@google.com>
Diffstat (limited to 'ipmi.hpp')
-rw-r--r-- | ipmi.hpp | 16 |
1 files changed, 1 insertions, 15 deletions
@@ -4,26 +4,12 @@ #include <host-ipmid/ipmid-api.h> +#include <blobs-ipmid/blobs.hpp> #include <string> namespace blobs { -enum BlobOEMCommands -{ - bmcBlobGetCount = 0, - bmcBlobEnumerate = 1, - bmcBlobOpen = 2, - bmcBlobRead = 3, - bmcBlobWrite = 4, - bmcBlobCommit = 5, - bmcBlobClose = 6, - bmcBlobDelete = 7, - bmcBlobStat = 8, - bmcBlobSessionStat = 9, - bmcBlobWriteMeta = 10, -}; - /* Used by bmcBlobGetCount */ struct BmcBlobCountTx { |