OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2015 The WebRTC project authors. All Rights Reserved. |
| 3 * |
| 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 |
| 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ |
| 10 |
| 11 #import "RTCConfiguration.h" |
| 12 |
| 13 #include "talk/app/webrtc/peerconnectioninterface.h" |
| 14 |
| 15 NS_ASSUME_NONNULL_BEGIN |
| 16 |
| 17 @interface RTCConfiguration () |
| 18 |
| 19 /** |
| 20 * RTCConfiguration struct representation of this RTCConfiguration. This is |
| 21 * needed to pass to the underlying C++ APIs. |
| 22 */ |
| 23 @property(nonatomic, readonly) |
| 24 webrtc::PeerConnectionInterface::RTCConfiguration nativeConfiguration; |
| 25 |
| 26 - (instancetype)initWithNativeConfiguration: |
| 27 (webrtc::PeerConnectionInterface::RTCConfiguration)nativeConfiguration; |
| 28 |
| 29 + (webrtc::PeerConnectionInterface::IceTransportsType) |
| 30 nativeTransportsTypeForTransportPolicy:(RTCIceTransportPolicy)policy; |
| 31 |
| 32 + (RTCIceTransportPolicy)transportPolicyForTransportsType: |
| 33 (webrtc::PeerConnectionInterface::IceTransportsType)nativeType; |
| 34 |
| 35 + (NSString *)stringForTransportPolicy:(RTCIceTransportPolicy)policy; |
| 36 |
| 37 + (webrtc::PeerConnectionInterface::BundlePolicy)nativeBundlePolicyForPolicy: |
| 38 (RTCBundlePolicy)policy; |
| 39 |
| 40 + (RTCBundlePolicy)bundlePolicyForNativePolicy: |
| 41 (webrtc::PeerConnectionInterface::BundlePolicy)nativePolicy; |
| 42 |
| 43 + (NSString *)stringForBundlePolicy:(RTCBundlePolicy)policy; |
| 44 |
| 45 + (webrtc::PeerConnectionInterface::RtcpMuxPolicy)nativeRtcpMuxPolicyForPolicy: |
| 46 (RTCRtcpMuxPolicy)policy; |
| 47 |
| 48 + (RTCRtcpMuxPolicy)rtcpMuxPolicyForNativePolicy: |
| 49 (webrtc::PeerConnectionInterface::RtcpMuxPolicy)nativePolicy; |
| 50 |
| 51 + (NSString *)stringForRtcpMuxPolicy:(RTCRtcpMuxPolicy)policy; |
| 52 |
| 53 + (webrtc::PeerConnectionInterface::TcpCandidatePolicy) |
| 54 nativeTcpCandidatePolicyForPolicy:(RTCTcpCandidatePolicy)policy; |
| 55 |
| 56 + (RTCTcpCandidatePolicy)tcpCandidatePolicyForNativePolicy: |
| 57 (webrtc::PeerConnectionInterface::TcpCandidatePolicy)nativePolicy; |
| 58 |
| 59 + (NSString *)stringForTcpCandidatePolicy:(RTCTcpCandidatePolicy)policy; |
| 60 |
| 61 @end |
| 62 |
| 63 NS_ASSUME_NONNULL_END |
OLD | NEW |