mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-02 14:35:21 +00:00
ea0945d406
// FREEBIE
12 lines
255 B
Java
12 lines
255 B
Java
package org.thoughtcrime.securesms.webrtc;
|
|
|
|
|
|
import org.webrtc.PeerConnectionFactory;
|
|
|
|
public class PeerConnectionFactoryOptions extends PeerConnectionFactory.Options {
|
|
|
|
public PeerConnectionFactoryOptions() {
|
|
this.networkIgnoreMask = 1 << 4;
|
|
}
|
|
}
|