1
0
Fork 0
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:
winlin 2019-04-28 08:21:48 +08:00
parent fbe40dc42c
commit 224d7c539f
7 changed files with 129 additions and 231 deletions

View file

@ -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;
};