hjon | 6d49a8e | 2016-01-26 13:06:42 -0800 | [diff] [blame] | 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 | |
hjon | 6d49a8e | 2016-01-26 13:06:42 -0800 | [diff] [blame] | 26 | + (webrtc::PeerConnectionInterface::IceTransportsType) |
| 27 | nativeTransportsTypeForTransportPolicy:(RTCIceTransportPolicy)policy; |
| 28 | |
| 29 | + (RTCIceTransportPolicy)transportPolicyForTransportsType: |
| 30 | (webrtc::PeerConnectionInterface::IceTransportsType)nativeType; |
| 31 | |
| 32 | + (NSString *)stringForTransportPolicy:(RTCIceTransportPolicy)policy; |
| 33 | |
| 34 | + (webrtc::PeerConnectionInterface::BundlePolicy)nativeBundlePolicyForPolicy: |
| 35 | (RTCBundlePolicy)policy; |
| 36 | |
| 37 | + (RTCBundlePolicy)bundlePolicyForNativePolicy: |
| 38 | (webrtc::PeerConnectionInterface::BundlePolicy)nativePolicy; |
| 39 | |
| 40 | + (NSString *)stringForBundlePolicy:(RTCBundlePolicy)policy; |
| 41 | |
| 42 | + (webrtc::PeerConnectionInterface::RtcpMuxPolicy)nativeRtcpMuxPolicyForPolicy: |
| 43 | (RTCRtcpMuxPolicy)policy; |
| 44 | |
| 45 | + (RTCRtcpMuxPolicy)rtcpMuxPolicyForNativePolicy: |
| 46 | (webrtc::PeerConnectionInterface::RtcpMuxPolicy)nativePolicy; |
| 47 | |
| 48 | + (NSString *)stringForRtcpMuxPolicy:(RTCRtcpMuxPolicy)policy; |
| 49 | |
| 50 | + (webrtc::PeerConnectionInterface::TcpCandidatePolicy) |
| 51 | nativeTcpCandidatePolicyForPolicy:(RTCTcpCandidatePolicy)policy; |
| 52 | |
| 53 | + (RTCTcpCandidatePolicy)tcpCandidatePolicyForNativePolicy: |
| 54 | (webrtc::PeerConnectionInterface::TcpCandidatePolicy)nativePolicy; |
| 55 | |
| 56 | + (NSString *)stringForTcpCandidatePolicy:(RTCTcpCandidatePolicy)policy; |
| 57 | |
| 58 | @end |
| 59 | |
| 60 | NS_ASSUME_NONNULL_END |