1 // SPDX-License-Identifier: Apache-2.0 2 3 #include <cstdint> 4 #include <stdexcept> 5 6 namespace phosphor 7 { 8 namespace dump 9 { 10 namespace host 11 { 12 /** 13 * @brief Initiate offload of the dump with provided dump source ID 14 * 15 * @param[in] id - The Dump Source ID. 16 * 17 */ 18 void requestOffload(uint32_t) 19 { 20 throw std::runtime_error("PLDM: Hostdump offload method not specified"); 21 } 22 23 void requestDelete(uint32_t, uint32_t) 24 { 25 throw std::runtime_error("PLDM: Hostdump delete method not specified"); 26 } 27 } // namespace host 28 } // namespace dump 29 } // namespace phosphor 30