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. */ | 96 /** Prune turn ports on the same network to the same turn server. |
97 @property(nonatomic, assign) bool pruneTurnPorts; | 97 * Default is NO. |
98 */ | |
99 @property(nonatomic, assign) bool shouldPruneTurnPorts; | |
tkchin_webrtc
2016/07/11 19:52:21
BOOL
honghaiz3
2016/07/11 20:00:00
Done.
| |
98 | 100 |
99 /** If set to true, this means the ICE transport should presume TURN-to-TURN | 101 /** If set to YES, this means the ICE transport should presume TURN-to-TURN |
100 * candidate pairs will succeed, even before a binding response is received. | 102 * candidate pairs will succeed, even before a binding response is received. |
101 */ | 103 */ |
102 @property(nonatomic, assign) bool presumeWritableWhenFullyRelayed; | 104 @property(nonatomic, assign) bool shouldPresumeWritableWhenFullyRelayed; |
103 | 105 |
104 - (instancetype)init NS_DESIGNATED_INITIALIZER; | 106 - (instancetype)init NS_DESIGNATED_INITIALIZER; |
105 | 107 |
106 @end | 108 @end |
107 | 109 |
108 NS_ASSUME_NONNULL_END | 110 NS_ASSUME_NONNULL_END |
OLD | NEW |