mirror of
https://github.com/oxen-io/session-android.git
synced 2025-01-06 07:07:43 +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;
|
||
|
}
|
||
|
}
|