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

fix the empty config error

This commit is contained in:
winlin 2014-07-20 17:08:47 +08:00
parent 75bfe2af78
commit 0db2e6b8e9
3 changed files with 37 additions and 1 deletions

View file

@ -42,4 +42,13 @@ public:
virtual int fullfill(const char* filename);
};
class MockSrsConfig : public SrsConfig
{
public:
MockSrsConfig();
virtual ~MockSrsConfig();
public:
virtual int parse(std::string buf);
};
#endif