mirror of
https://github.com/ossrs/srs.git
synced 2025-03-09 15:49:59 +00:00
Change virtual public to public. 4.0.109
This commit is contained in:
parent
53e20d4a37
commit
717e811002
25 changed files with 50 additions and 51 deletions
|
@ -75,7 +75,7 @@ public:
|
|||
/**
|
||||
* the reader for the protocol to read from whatever channel.
|
||||
*/
|
||||
class ISrsProtocolReader : virtual public ISrsReader, virtual public ISrsProtocolStatistic
|
||||
class ISrsProtocolReader : public ISrsReader, virtual public ISrsProtocolStatistic
|
||||
{
|
||||
public:
|
||||
ISrsProtocolReader();
|
||||
|
@ -97,7 +97,7 @@ public:
|
|||
/**
|
||||
* the writer for the protocol to write to whatever channel.
|
||||
*/
|
||||
class ISrsProtocolWriter : virtual public ISrsWriter, virtual public ISrsProtocolStatistic
|
||||
class ISrsProtocolWriter : public ISrsWriter, virtual public ISrsProtocolStatistic
|
||||
{
|
||||
public:
|
||||
ISrsProtocolWriter();
|
||||
|
@ -114,7 +114,7 @@ public:
|
|||
/**
|
||||
* The reader and writer.
|
||||
*/
|
||||
class ISrsProtocolReadWriter : virtual public ISrsProtocolReader, virtual public ISrsProtocolWriter
|
||||
class ISrsProtocolReadWriter : public ISrsProtocolReader, public ISrsProtocolWriter
|
||||
{
|
||||
public:
|
||||
ISrsProtocolReadWriter();
|
||||
|
|
|
@ -137,7 +137,7 @@ public:
|
|||
* user->set_io(kbps, kbps);
|
||||
* the server never know how many bytes already send/recv, for the connection maybe closed.
|
||||
*/
|
||||
class SrsKbps : virtual public ISrsProtocolStatistic, virtual public ISrsKbpsDelta
|
||||
class SrsKbps : public ISrsProtocolStatistic, public ISrsKbpsDelta
|
||||
{
|
||||
private:
|
||||
SrsKbpsSlice is;
|
||||
|
|
|
@ -46,7 +46,7 @@ class SrsTcpClient;
|
|||
#define SRS_HTTP_CLIENT_TIMEOUT (30 * SRS_UTIME_SECONDS)
|
||||
|
||||
// The SSL client over TCP transport.
|
||||
class SrsSslClient : virtual public ISrsReader, virtual public ISrsStreamWriter
|
||||
class SrsSslClient : public ISrsReader, public ISrsStreamWriter
|
||||
{
|
||||
private:
|
||||
SrsTcpClient* transport;
|
||||
|
|
|
@ -257,7 +257,7 @@ public:
|
|||
};
|
||||
|
||||
// Response reader use st socket.
|
||||
class SrsHttpResponseReader : virtual public ISrsHttpResponseReader
|
||||
class SrsHttpResponseReader : public ISrsHttpResponseReader
|
||||
{
|
||||
private:
|
||||
ISrsReader* skt;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue