Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: webrtc/sdk/objc/Framework/Headers/WebRTC/RTCConfiguration.h

Issue 2988553004: Adding Obj-C binding for RTCConfiguration::max_ipv6_networks. (Closed)
Patch Set: Rebase. Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCConfiguration.mm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 77
78 /** The media-bundling policy to use when gathering ICE candidates. */ 78 /** The media-bundling policy to use when gathering ICE candidates. */
79 @property(nonatomic, assign) RTCBundlePolicy bundlePolicy; 79 @property(nonatomic, assign) RTCBundlePolicy bundlePolicy;
80 80
81 /** The rtcp-mux policy to use when gathering ICE candidates. */ 81 /** The rtcp-mux policy to use when gathering ICE candidates. */
82 @property(nonatomic, assign) RTCRtcpMuxPolicy rtcpMuxPolicy; 82 @property(nonatomic, assign) RTCRtcpMuxPolicy rtcpMuxPolicy;
83 @property(nonatomic, assign) RTCTcpCandidatePolicy tcpCandidatePolicy; 83 @property(nonatomic, assign) RTCTcpCandidatePolicy tcpCandidatePolicy;
84 @property(nonatomic, assign) RTCCandidateNetworkPolicy candidateNetworkPolicy; 84 @property(nonatomic, assign) RTCCandidateNetworkPolicy candidateNetworkPolicy;
85 @property(nonatomic, assign) 85 @property(nonatomic, assign)
86 RTCContinualGatheringPolicy continualGatheringPolicy; 86 RTCContinualGatheringPolicy continualGatheringPolicy;
87
88 /** By default, the PeerConnection will use a limited number of IPv6 network
89 * interfaces, in order to avoid too many ICE candidate pairs being created
90 * and delaying ICE completion.
91 *
92 * Can be set to INT_MAX to effectively disable the limit.
93 */
94 @property(nonatomic, assign) int maxIPv6Networks;
95
87 @property(nonatomic, assign) int audioJitterBufferMaxPackets; 96 @property(nonatomic, assign) int audioJitterBufferMaxPackets;
88 @property(nonatomic, assign) BOOL audioJitterBufferFastAccelerate; 97 @property(nonatomic, assign) BOOL audioJitterBufferFastAccelerate;
89 @property(nonatomic, assign) int iceConnectionReceivingTimeout; 98 @property(nonatomic, assign) int iceConnectionReceivingTimeout;
90 @property(nonatomic, assign) int iceBackupCandidatePairPingInterval; 99 @property(nonatomic, assign) int iceBackupCandidatePairPingInterval;
91 100
92 /** Key type used to generate SSL identity. Default is ECDSA. */ 101 /** Key type used to generate SSL identity. Default is ECDSA. */
93 @property(nonatomic, assign) RTCEncryptionKeyType keyType; 102 @property(nonatomic, assign) RTCEncryptionKeyType keyType;
94 103
95 /** ICE candidate pool size as defined in JSEP. Default is 0. */ 104 /** ICE candidate pool size as defined in JSEP. Default is 0. */
96 @property(nonatomic, assign) int iceCandidatePoolSize; 105 @property(nonatomic, assign) int iceCandidatePoolSize;
(...skipping 18 matching lines...) Expand all
115 * starting a new ICE generation. The regathering happens continuously with 124 * starting a new ICE generation. The regathering happens continuously with
116 * interval specified in milliseconds by the uniform distribution [a, b]. 125 * interval specified in milliseconds by the uniform distribution [a, b].
117 */ 126 */
118 @property(nonatomic, strong, nullable) RTCIntervalRange *iceRegatherIntervalRang e; 127 @property(nonatomic, strong, nullable) RTCIntervalRange *iceRegatherIntervalRang e;
119 128
120 - (instancetype)init; 129 - (instancetype)init;
121 130
122 @end 131 @end
123 132
124 NS_ASSUME_NONNULL_END 133 NS_ASSUME_NONNULL_END
OLDNEW
« no previous file with comments | « webrtc/sdk/objc/Framework/Classes/PeerConnection/RTCConfiguration.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698