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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 @property(nonatomic, assign) RTCTcpCandidatePolicy tcpCandidatePolicy; | 76 @property(nonatomic, assign) RTCTcpCandidatePolicy tcpCandidatePolicy; |
77 @property(nonatomic, assign) | 77 @property(nonatomic, assign) |
78 RTCContinualGatheringPolicy continualGatheringPolicy; | 78 RTCContinualGatheringPolicy continualGatheringPolicy; |
79 @property(nonatomic, assign) int audioJitterBufferMaxPackets; | 79 @property(nonatomic, assign) int audioJitterBufferMaxPackets; |
80 @property(nonatomic, assign) int iceConnectionReceivingTimeout; | 80 @property(nonatomic, assign) int iceConnectionReceivingTimeout; |
81 @property(nonatomic, assign) int iceBackupCandidatePairPingInterval; | 81 @property(nonatomic, assign) int iceBackupCandidatePairPingInterval; |
82 | 82 |
83 /** Key type used to generate SSL identity. Default is ECDSA. */ | 83 /** Key type used to generate SSL identity. Default is ECDSA. */ |
84 @property(nonatomic, assign) RTCEncryptionKeyType keyType; | 84 @property(nonatomic, assign) RTCEncryptionKeyType keyType; |
85 | 85 |
| 86 /** ICE candidate pool size as defined in JSEP. Default is 0. */ |
| 87 @property(nonatomic, assign) int iceCandidatePoolSize; |
| 88 |
86 - (instancetype)init NS_DESIGNATED_INITIALIZER; | 89 - (instancetype)init NS_DESIGNATED_INITIALIZER; |
87 | 90 |
88 @end | 91 @end |
89 | 92 |
90 NS_ASSUME_NONNULL_END | 93 NS_ASSUME_NONNULL_END |
OLD | NEW |