1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00
This commit is contained in:
winlin 2015-12-08 18:32:37 +08:00
parent fabcc91a0e
commit 5ac8177ce6
6 changed files with 28 additions and 13 deletions

View file

@ -225,7 +225,11 @@ public:
/**
* do on_cycle while server doing cycle.
*/
virtual int on_cycle(int connections) = 0;
virtual int on_cycle() = 0;
/**
* callback the handler when got client.
*/
virtual int on_accept_client(int conf_conns, int curr_conns) = 0;
};
/**