Loopback and audio only mode.
Adds a loopback button that will connect to itself by simulating another client connection to the web socket server. Adds an audio only mode switch. BUG= Review URL: https://codereview.webrtc.org/1334003002 Cr-Commit-Position: refs/heads/master@{#10153}
This commit is contained in:
@ -25,6 +25,7 @@
|
||||
// All properties should only be mutated from the main queue.
|
||||
@property(nonatomic, strong) id<ARDRoomServerClient> roomServerClient;
|
||||
@property(nonatomic, strong) id<ARDSignalingChannel> channel;
|
||||
@property(nonatomic, strong) id<ARDSignalingChannel> loopbackChannel;
|
||||
@property(nonatomic, strong) id<ARDTURNClient> turnClient;
|
||||
|
||||
@property(nonatomic, strong) RTCPeerConnection *peerConnection;
|
||||
@ -41,6 +42,8 @@
|
||||
@property(nonatomic, strong) NSMutableArray *iceServers;
|
||||
@property(nonatomic, strong) NSURL *webSocketURL;
|
||||
@property(nonatomic, strong) NSURL *webSocketRestURL;
|
||||
@property(nonatomic, readonly) BOOL isLoopback;
|
||||
@property(nonatomic, readonly) BOOL isAudioOnly;
|
||||
|
||||
@property(nonatomic, strong)
|
||||
RTCMediaConstraints *defaultPeerConnectionConstraints;
|
||||
|
||||
Reference in New Issue
Block a user