mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-03 15:05:24 +00:00
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;
|
||
|
}
|
||
|
}
|