mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Rename SrsConnection to SrsTcpConnection
This commit is contained in:
parent
2135b638b1
commit
88826aae8f
16 changed files with 49 additions and 47 deletions
|
@ -104,7 +104,8 @@ SrsClientInfo::~SrsClientInfo()
|
|||
srs_freep(res);
|
||||
}
|
||||
|
||||
SrsRtmpConn::SrsRtmpConn(SrsServer* svr, srs_netfd_t c, string cip, int port) : SrsConnection(svr, c, cip, port)
|
||||
SrsRtmpConn::SrsRtmpConn(SrsServer* svr, srs_netfd_t c, string cip, int port)
|
||||
: SrsTcpConnection(svr, c, cip, port)
|
||||
{
|
||||
server = svr;
|
||||
|
||||
|
@ -141,7 +142,7 @@ SrsRtmpConn::~SrsRtmpConn()
|
|||
|
||||
void SrsRtmpConn::dispose()
|
||||
{
|
||||
SrsConnection::dispose();
|
||||
SrsTcpConnection::dispose();
|
||||
|
||||
// wakeup the handler which need to notice.
|
||||
if (wakable) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue