11 lines
255 B
Java
11 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;
|
|
}
|
|
}
|