Index: talk/app/webrtc/peerconnectioninterface.h |
diff --git a/talk/app/webrtc/peerconnectioninterface.h b/talk/app/webrtc/peerconnectioninterface.h |
index ca853385e6327fdcad52014b32abc115685e80c1..24d0a45f2a0143292c58e70bd5189123c934caa9 100644 |
--- a/talk/app/webrtc/peerconnectioninterface.h |
+++ b/talk/app/webrtc/peerconnectioninterface.h |
@@ -245,6 +245,7 @@ class PeerConnectionInterface : public rtc::RefCountInterface { |
int audio_jitter_buffer_max_packets; |
bool audio_jitter_buffer_fast_accelerate; |
int ice_connection_receiving_timeout; |
+ bool ice_continue_getting_ports; |
std::vector<rtc::scoped_refptr<rtc::RTCCertificate>> certificates; |
RTCConfiguration() |
@@ -255,7 +256,8 @@ class PeerConnectionInterface : public rtc::RefCountInterface { |
tcp_candidate_policy(kTcpCandidatePolicyEnabled), |
audio_jitter_buffer_max_packets(kAudioJitterBufferMaxPackets), |
audio_jitter_buffer_fast_accelerate(false), |
- ice_connection_receiving_timeout(kUndefined) {} |
+ ice_connection_receiving_timeout(kUndefined), |
+ ice_continue_getting_ports(false) {} |
}; |
struct RTCOfferAnswerOptions { |