| Index: webrtc/api/android/java/src/org/webrtc/PeerConnection.java
|
| diff --git a/webrtc/api/android/java/src/org/webrtc/PeerConnection.java b/webrtc/api/android/java/src/org/webrtc/PeerConnection.java
|
| index 04fd563e11279ef88f0c1cdc65ddf315100c11d4..70813a60d7a344e21548e72d72893b345f542be7 100644
|
| --- a/webrtc/api/android/java/src/org/webrtc/PeerConnection.java
|
| +++ b/webrtc/api/android/java/src/org/webrtc/PeerConnection.java
|
| @@ -146,6 +146,7 @@ public class PeerConnection {
|
| public KeyType keyType;
|
| public ContinualGatheringPolicy continualGatheringPolicy;
|
| public int iceCandidatePoolSize;
|
| + public boolean pruneTurnPorts;
|
| public boolean presumeWritableWhenFullyRelayed;
|
|
|
| public RTCConfiguration(List<IceServer> iceServers) {
|
| @@ -162,6 +163,7 @@ public class PeerConnection {
|
| keyType = KeyType.ECDSA;
|
| continualGatheringPolicy = ContinualGatheringPolicy.GATHER_ONCE;
|
| iceCandidatePoolSize = 0;
|
| + pruneTurnPorts = false;
|
| presumeWritableWhenFullyRelayed = false;
|
| }
|
| };
|
|
|