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

For #913, refine the error mechanism

This commit is contained in:
winlin 2017-06-09 13:29:23 +08:00
parent bb200b5d2d
commit 93710c7489
11 changed files with 38 additions and 31 deletions

View file

@ -533,11 +533,13 @@ SrsHttpServeMux::~SrsHttpServeMux()
hijackers.clear();
}
int SrsHttpServeMux::initialize()
srs_error_t SrsHttpServeMux::initialize()
{
int ret = ERROR_SUCCESS;
// TODO: FIXME: implements it.
return ret;
srs_error_t err = srs_success;
// TODO: FIXME: Implements it.
return err;
}
void SrsHttpServeMux::hijack(ISrsHttpMatchHijacker* h)