blob: 09b96dbebe097766c80d1f12eca128b3d169c7df [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
Dhruvaraj Subhashchandran4c63ce52020-12-18 02:07:22 -060024void requestDelete(uint32_t, uint32_t)
Ramesh Iyyar22793862020-12-04 04:03:03 -060025{
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