xref: /openbmc/phosphor-debug-collector/host_transport_exts.hpp (revision 07b9b56d1bf677b9550a7f3ffe3bfa26c2e98c87)
1 #include <cstdint>
2 
3 namespace phosphor
4 {
5 namespace dump
6 {
7 namespace host
8 {
9 
10 /**
11  * @brief Initiate offload of the dump with provided id
12  *
13  * @param[in] id - The Dump Source ID.
14  *
15  */
16 void requestOffload(uint32_t id);
17 
18 /**
19  * @brief Request to delete dump
20  *
21  * @param[in] id - The Dump Source ID.
22  * @param[in] type - transport defined type of the dump.
23  * @return NULL
24  *
25  */
26 void requestDelete(uint32_t id, uint32_t type);
27 
28 } // namespace host
29 } // namespace dump
30 } // namespace phosphor
31