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

Release v5.0-r3 and v6.0-d5.

This commit is contained in:
winlin 2024-06-15 17:33:45 +08:00
parent e7069788e9
commit e3d74fb045
2 changed files with 5 additions and 2 deletions

View file

@ -234,14 +234,15 @@ public:
// For WebRTC over TCP.
class SrsRtcTcpConn : public ISrsConnection, public ISrsCoroutineHandler, public ISrsExecutorHandler
{
private:
// Because session references to this object, so we should directly use the session ptr.
SrsRtcConnection* session_;
private:
// The ip and port of client.
std::string ip_;
int port_;
// The delta for statistic.
SrsNetworkDelta* delta_;
// WebRTC session object.
SrsRtcConnection* session_;
ISrsProtocolReadWriter* skt_;
// Packet cache.
char* pkt_;