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

remove the config log http api. 0.9.148

This commit is contained in:
winlin 2014-07-05 13:02:50 +08:00
parent 28a6a1214c
commit 95e73d0be1
5 changed files with 22 additions and 254 deletions

View file

@ -87,29 +87,6 @@ protected:
virtual int do_process_request(SrsSocket* skt, SrsHttpMessage* req);
};
class SrsApiConfigs : public SrsHttpHandler
{
public:
SrsApiConfigs();
virtual ~SrsApiConfigs();
public:
virtual bool can_handle(const char* path, int length, const char** pchild);
protected:
virtual int do_process_request(SrsSocket* skt, SrsHttpMessage* req);
};
class SrsApiConfigsLogs : public SrsHttpHandler
{
public:
SrsApiConfigsLogs();
virtual ~SrsApiConfigsLogs();
public:
virtual bool can_handle(const char* path, int length, const char** pchild);
protected:
virtual bool is_handler_valid(SrsHttpMessage* req, int& status_code, std::string& reason_phrase);
virtual int do_process_request(SrsSocket* skt, SrsHttpMessage* req);
};
class SrsApiVersion : public SrsHttpHandler
{
public: