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 /** 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. |
| 98 */ |
| 99 @property(nonatomic, assign) bool presumeWritableWhenFullyRelayed; |
| 100 |
96 - (instancetype)init NS_DESIGNATED_INITIALIZER; | 101 - (instancetype)init NS_DESIGNATED_INITIALIZER; |
97 | 102 |
98 @end | 103 @end |
99 | 104 |
100 NS_ASSUME_NONNULL_END | 105 NS_ASSUME_NONNULL_END |
OLD | NEW |