Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 86 @property(nonatomic, assign) int audioJitterBufferMaxPackets; | 86 @property(nonatomic, assign) int audioJitterBufferMaxPackets; |
| 87 @property(nonatomic, assign) int iceConnectionReceivingTimeout; | 87 @property(nonatomic, assign) int iceConnectionReceivingTimeout; |
| 88 @property(nonatomic, assign) int iceBackupCandidatePairPingInterval; | 88 @property(nonatomic, assign) int iceBackupCandidatePairPingInterval; |
| 89 | 89 |
| 90 /** Key type used to generate SSL identity. Default is ECDSA. */ | 90 /** Key type used to generate SSL identity. Default is ECDSA. */ |
| 91 @property(nonatomic, assign) RTCEncryptionKeyType keyType; | 91 @property(nonatomic, assign) RTCEncryptionKeyType keyType; |
| 92 | 92 |
| 93 /** ICE candidate pool size as defined in JSEP. Default is 0. */ | 93 /** ICE candidate pool size as defined in JSEP. Default is 0. */ |
| 94 @property(nonatomic, assign) int iceCandidatePoolSize; | 94 @property(nonatomic, assign) int iceCandidatePoolSize; |
| 95 | 95 |
| 96 /** Prune turn ports on the same network to the same turn server. Default is fal se. */ | |
| 97 @property(nonatomic, assign) bool pruneTurnPorts; | |
|
tkchin_webrtc
2016/07/08 21:09:04
BOOL shouldPruneTurnPorts
Default is NO.
honghaiz3
2016/07/21 03:30:01
Fixed in a separate CL.
| |
| 98 | |
| 96 /** If set to true, this means the ICE transport should presume TURN-to-TURN | 99 /** If set to true, this means the ICE transport should presume TURN-to-TURN |
| 97 * candidate pairs will succeed, even before a binding response is received. | 100 * candidate pairs will succeed, even before a binding response is received. |
| 98 */ | 101 */ |
| 99 @property(nonatomic, assign) bool presumeWritableWhenFullyRelayed; | 102 @property(nonatomic, assign) bool presumeWritableWhenFullyRelayed; |
|
tkchin_webrtc
2016/07/08 21:09:04
I don't recall this property. It should also be a
honghaiz3
2016/07/21 03:30:01
I believe this is from a different CL by Taylor.
| |
| 100 | 103 |
| 101 - (instancetype)init NS_DESIGNATED_INITIALIZER; | 104 - (instancetype)init NS_DESIGNATED_INITIALIZER; |
| 102 | 105 |
| 103 @end | 106 @end |
| 104 | 107 |
| 105 NS_ASSUME_NONNULL_END | 108 NS_ASSUME_NONNULL_END |
| OLD | NEW |