Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Unified Diff: webrtc/pc/rtptransport.cc

Issue 2981513002: Wire up RTP keep-alive in ortc api. (Closed)
Patch Set: wip Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« webrtc/ortc/rtptransportadapter.cc ('K') | « webrtc/pc/rtptransport.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/pc/rtptransport.cc
diff --git a/webrtc/pc/rtptransport.cc b/webrtc/pc/rtptransport.cc
index 6b0141fc8e92986e2ec690360f3a97805cf17ee6..7a2df3b4316ff6ddbad9601b615301c33d4dab8b 100644
--- a/webrtc/pc/rtptransport.cc
+++ b/webrtc/pc/rtptransport.cc
@@ -135,6 +135,23 @@ RtcpParameters RtpTransport::GetRtcpParameters() const {
return rtcp_parameters_;
}
+RTCError RtpTransport::SetRtpTransportParameters(
+ const RtpTransportParameters& parameters) {
+ if (rtp_transport_parameters_.keepalive.timeout_interval_ms > 0 &&
Taylor Brandstetter 2017/07/12 16:19:50 The parameters in this class don't appear to be us
ilnik 2017/07/21 12:21:19 Acknowledged.
+ rtp_transport_parameters_.keepalive != parameters.keepalive) {
+ LOG_AND_RETURN_ERROR(
+ RTCErrorType::INVALID_STATE,
+ "Cannot change RTP keep-alive parameters once enabled.");
+ }
+
+ rtp_transport_parameters_ = parameters;
+ return RTCError::OK();
+}
+
+RtpTransportParameters RtpTransport::GetRtpTransportParameters() const {
+ return rtp_transport_parameters_;
+}
+
RtpTransportAdapter* RtpTransport::GetInternal() {
return nullptr;
}
« webrtc/ortc/rtptransportadapter.cc ('K') | « webrtc/pc/rtptransport.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698