1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

add meminfo

This commit is contained in:
winlin 2014-04-20 00:15:26 +08:00
parent 15aea4d9b3
commit a5f4f6bd14
5 changed files with 208 additions and 12 deletions

View file

@ -131,6 +131,17 @@ protected:
virtual int do_process_request(SrsSocket* skt, SrsHttpMessage* req);
};
class SrsApiMemInfos : public SrsHttpHandler
{
public:
SrsApiMemInfos();
virtual ~SrsApiMemInfos();
public:
virtual bool can_handle(const char* path, int length, const char** pchild);
protected:
virtual int do_process_request(SrsSocket* skt, SrsHttpMessage* req);
};
class SrsApiAuthors : public SrsHttpHandler
{
public: