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

add contributors to api/v1/authors

This commit is contained in:
winlin 2014-04-03 13:48:52 +08:00
parent 9d5abbd9a6
commit 4a40075f68
7 changed files with 66 additions and 12 deletions

View file

@ -82,6 +82,16 @@ public:
virtual int do_process_request(SrsSocket* skt, SrsHttpMessage* req);
};
class SrsApiAuthors : public SrsHttpHandler
{
public:
SrsApiAuthors();
virtual ~SrsApiAuthors();
public:
virtual bool can_handle(const char* path, int length, const char** pchild);
virtual int do_process_request(SrsSocket* skt, SrsHttpMessage* req);
};
class SrsHttpApi : public SrsConnection
{
private: