mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00
Expose enableDscp in Obj-C API.
network_priority was already exposed, but without the ability to set enable_dscp, it wasn't actually doing anything. Bug: webrtc:5658 Change-Id: I092bc3dd46e3e7be363313203428bccfccccf3c5 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/171641 Reviewed-by: Anders Carlsson <andersc@webrtc.org> Commit-Queue: Taylor <deadbeef@webrtc.org> Cr-Commit-Position: refs/heads/master@{#30951}
This commit is contained in:
parent
8cdd2c7d3c
commit
21c80320ca
2 changed files with 11 additions and 2 deletions
|
@ -72,6 +72,11 @@ NS_ASSUME_NONNULL_BEGIN
|
||||||
RTC_OBJC_EXPORT
|
RTC_OBJC_EXPORT
|
||||||
@interface RTCConfiguration : NSObject
|
@interface RTCConfiguration : NSObject
|
||||||
|
|
||||||
|
/** If true, allows DSCP codes to be set on outgoing packets, configured using
|
||||||
|
* networkPriority field of RTCRtpEncodingParameters. Defaults to false.
|
||||||
|
*/
|
||||||
|
@property(nonatomic, assign) BOOL enableDscp;
|
||||||
|
|
||||||
/** An array of Ice Servers available to be used by ICE. */
|
/** An array of Ice Servers available to be used by ICE. */
|
||||||
@property(nonatomic, copy) NSArray<RTCIceServer *> *iceServers;
|
@property(nonatomic, copy) NSArray<RTCIceServer *> *iceServers;
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,7 @@
|
||||||
|
|
||||||
@implementation RTCConfiguration
|
@implementation RTCConfiguration
|
||||||
|
|
||||||
|
@synthesize enableDscp = _enableDscp;
|
||||||
@synthesize iceServers = _iceServers;
|
@synthesize iceServers = _iceServers;
|
||||||
@synthesize certificate = _certificate;
|
@synthesize certificate = _certificate;
|
||||||
@synthesize iceTransportPolicy = _iceTransportPolicy;
|
@synthesize iceTransportPolicy = _iceTransportPolicy;
|
||||||
|
@ -66,6 +67,7 @@
|
||||||
- (instancetype)initWithNativeConfiguration:
|
- (instancetype)initWithNativeConfiguration:
|
||||||
(const webrtc::PeerConnectionInterface::RTCConfiguration &)config {
|
(const webrtc::PeerConnectionInterface::RTCConfiguration &)config {
|
||||||
if (self = [super init]) {
|
if (self = [super init]) {
|
||||||
|
_enableDscp = config.dscp();
|
||||||
NSMutableArray *iceServers = [NSMutableArray array];
|
NSMutableArray *iceServers = [NSMutableArray array];
|
||||||
for (const webrtc::PeerConnectionInterface::IceServer& server : config.servers) {
|
for (const webrtc::PeerConnectionInterface::IceServer& server : config.servers) {
|
||||||
RTCIceServer *iceServer = [[RTCIceServer alloc] initWithNativeServer:server];
|
RTCIceServer *iceServer = [[RTCIceServer alloc] initWithNativeServer:server];
|
||||||
|
@ -140,7 +142,7 @@
|
||||||
- (NSString *)description {
|
- (NSString *)description {
|
||||||
static NSString *formatString = @"RTCConfiguration: "
|
static NSString *formatString = @"RTCConfiguration: "
|
||||||
@"{\n%@\n%@\n%@\n%@\n%@\n%@\n%@\n%@\n%d\n%d\n%d\n%d\n%d\n%d\n"
|
@"{\n%@\n%@\n%@\n%@\n%@\n%@\n%@\n%@\n%d\n%d\n%d\n%d\n%d\n%d\n"
|
||||||
@"%d\n%@\n%d\n%d\n%d\n%d\n%d\n%@\n}\n";
|
@"%d\n%@\n%d\n%d\n%d\n%d\n%d\n%@\n%d\n}\n";
|
||||||
|
|
||||||
return [NSString
|
return [NSString
|
||||||
stringWithFormat:formatString,
|
stringWithFormat:formatString,
|
||||||
|
@ -166,7 +168,8 @@
|
||||||
_disableIPV6OnWiFi,
|
_disableIPV6OnWiFi,
|
||||||
_maxIPv6Networks,
|
_maxIPv6Networks,
|
||||||
_activeResetSrtpParams,
|
_activeResetSrtpParams,
|
||||||
_useMediaTransport];
|
_useMediaTransport,
|
||||||
|
_enableDscp];
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma mark - Private
|
#pragma mark - Private
|
||||||
|
@ -177,6 +180,7 @@
|
||||||
nativeConfig(new webrtc::PeerConnectionInterface::RTCConfiguration(
|
nativeConfig(new webrtc::PeerConnectionInterface::RTCConfiguration(
|
||||||
webrtc::PeerConnectionInterface::RTCConfigurationType::kAggressive));
|
webrtc::PeerConnectionInterface::RTCConfigurationType::kAggressive));
|
||||||
|
|
||||||
|
nativeConfig->set_dscp(_enableDscp);
|
||||||
for (RTCIceServer *iceServer in _iceServers) {
|
for (RTCIceServer *iceServer in _iceServers) {
|
||||||
nativeConfig->servers.push_back(iceServer.nativeServer);
|
nativeConfig->servers.push_back(iceServer.nativeServer);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue