blob: f432b03a669a813148f605f720ed4dda5e27eebc [file] [log] [blame]
Ramesh Iyyar3af5c322020-12-04 00:38:42 -06001// SPDX-License-Identifier: Apache-2.0
2
Ramesh Iyyarebd43d52021-01-18 09:31:30 -06003#include <stdint.h>
4
5#include <stdexcept>
6
Ramesh Iyyar3af5c322020-12-04 00:38:42 -06007namespace phosphor
8{
9namespace dump
10{
11namespace host
12{
13/**
14 * @brief Initiate offload of the dump with provided dump source ID
15 *
16 * @param[in] id - The Dump Source ID.
17 *
18 */
19void requestOffload(uint32_t)
20{
21 throw std::runtime_error("PLDM: Hostdump offload method not specified");
22}
Ramesh Iyyar22793862020-12-04 04:03:03 -060023
24void requestDelete(uint32_t)
25{
26 throw std::runtime_error("PLDM: Hostdump delete method not specified");
27}
Ramesh Iyyar3af5c322020-12-04 00:38:42 -060028} // namespace host
29} // namespace dump
30} // namespace phosphor