blob: 7d7139dcc0c6fbd808c0cf64193365ece1a9738a [file] [log] [blame]
Ramesh Iyyar3af5c322020-12-04 00:38:42 -06001// SPDX-License-Identifier: Apache-2.0
2
3namespace phosphor
4{
5namespace dump
6{
7namespace host
8{
9/**
10 * @brief Initiate offload of the dump with provided dump source ID
11 *
12 * @param[in] id - The Dump Source ID.
13 *
14 */
15void requestOffload(uint32_t)
16{
17 throw std::runtime_error("PLDM: Hostdump offload method not specified");
18}
Ramesh Iyyar22793862020-12-04 04:03:03 -060019
20void requestDelete(uint32_t)
21{
22 throw std::runtime_error("PLDM: Hostdump delete method not specified");
23}
Ramesh Iyyar3af5c322020-12-04 00:38:42 -060024} // namespace host
25} // namespace dump
26} // namespace phosphor