Enforce ordered data channel
// FREEBIE
This commit is contained in:
parent
3fd5e58bd5
commit
1525d0833c
1 changed files with 4 additions and 3 deletions
|
@ -25,8 +25,6 @@ import org.webrtc.VideoCapturer;
|
||||||
import org.webrtc.VideoRenderer;
|
import org.webrtc.VideoRenderer;
|
||||||
import org.webrtc.VideoSource;
|
import org.webrtc.VideoSource;
|
||||||
import org.webrtc.VideoTrack;
|
import org.webrtc.VideoTrack;
|
||||||
import org.webrtc.voiceengine.WebRtcAudioManager;
|
|
||||||
import org.webrtc.voiceengine.WebRtcAudioUtils;
|
|
||||||
|
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -114,7 +112,10 @@ public class PeerConnectionWrapper {
|
||||||
}
|
}
|
||||||
|
|
||||||
public DataChannel createDataChannel(String name) {
|
public DataChannel createDataChannel(String name) {
|
||||||
return this.peerConnection.createDataChannel(name, new DataChannel.Init());
|
DataChannel.Init dataChannelConfiguration = new DataChannel.Init();
|
||||||
|
dataChannelConfiguration.ordered = true;
|
||||||
|
|
||||||
|
return this.peerConnection.createDataChannel(name, dataChannelConfiguration);
|
||||||
}
|
}
|
||||||
|
|
||||||
public SessionDescription createOffer(MediaConstraints mediaConstraints) throws PeerConnectionException {
|
public SessionDescription createOffer(MediaConstraints mediaConstraints) throws PeerConnectionException {
|
||||||
|
|
Loading…
Add table
Reference in a new issue