mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
* Refine AUTHORS.txt to AUTHORS.md, etc. 5.0.8 * Update README.md * Update README.md * Refine format for AUTHORS.md
25 lines
439 B
C++
25 lines
439 B
C++
//
|
|
// Copyright (c) 2013-2021 The SRS Authors
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
//
|
|
|
|
#ifndef SRS_APP_HEARTBEAT_HPP
|
|
#define SRS_APP_HEARTBEAT_HPP
|
|
|
|
#include <srs_core.hpp>
|
|
|
|
// 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
|
|
|