diff options
author | Mauro Sardara <msardara@cisco.com> | 2020-06-09 00:03:15 +0200 |
---|---|---|
committer | Mauro Sardara <msardara@cisco.com> | 2020-06-09 01:15:22 +0200 |
commit | a84ff82bb37ac53f20639d6e5e7f19d002459f31 (patch) | |
tree | e2ff9697793c320aaf17da2dd24b3611d64aa112 /libtransport/src/protocols/rtc.h | |
parent | 37819ae5a3631afc8329d05d73ead9091fc513b3 (diff) |
[HICN-623] Initialize is_async in ConsumerSocket constructor.
Also force transports to use base method TransportProtocol::start() instead
of redefining their own start(), in order to have the callbacks and the
boolean is_async_ initialized upon protocol start.
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Change-Id: I780b26cca5b8dc59f0def5c08a032bbc90371acd
Signed-off-by: Mauro Sardara <msardara@cisco.com>
Diffstat (limited to 'libtransport/src/protocols/rtc.h')
-rw-r--r-- | libtransport/src/protocols/rtc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libtransport/src/protocols/rtc.h b/libtransport/src/protocols/rtc.h index a12c96b69..9f1bcc25b 100644 --- a/libtransport/src/protocols/rtc.h +++ b/libtransport/src/protocols/rtc.h @@ -93,7 +93,7 @@ class RTCTransportProtocol : public TransportProtocol, ~RTCTransportProtocol(); - int start() override; + using TransportProtocol::start; using TransportProtocol::stop; @@ -103,6 +103,7 @@ class RTCTransportProtocol : public TransportProtocol, private: // algo functions + void initParams(); void reset() override; // CC functions |