// // Copyright (c) 2013-2021 Winlin // // SPDX-License-Identifier: MIT // #ifndef SRS_APP_HEARTBEAT_HPP #define SRS_APP_HEARTBEAT_HPP #include // The http heartbeat to api-server to notice api that the information of SRS. class SrsHttpHeartbeat { public: SrsHttpHeartbeat(); virtual ~SrsHttpHeartbeat(); public: virtual void heartbeat(); private: virtual srs_error_t do_heartbeat(); }; #endif