mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Refine typo in service.
This commit is contained in:
parent
fbe40dc42c
commit
224d7c539f
7 changed files with 129 additions and 231 deletions
|
@ -26,9 +26,7 @@
|
|||
|
||||
#include <srs_core.hpp>
|
||||
|
||||
/**
|
||||
* The connection interface for all HTTP/RTMP/RTSP object.
|
||||
*/
|
||||
// The connection interface for all HTTP/RTMP/RTSP object.
|
||||
class ISrsConnection
|
||||
{
|
||||
public:
|
||||
|
@ -36,18 +34,14 @@ public:
|
|||
virtual ~ISrsConnection();
|
||||
};
|
||||
|
||||
/**
|
||||
* the manager for connection.
|
||||
*/
|
||||
// The manager for connection.
|
||||
class IConnectionManager
|
||||
{
|
||||
public:
|
||||
IConnectionManager();
|
||||
virtual ~IConnectionManager();
|
||||
public:
|
||||
/**
|
||||
* Remove then free the specified connection.
|
||||
*/
|
||||
// Remove then free the specified connection.
|
||||
virtual void remove(ISrsConnection* c) = 0;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue