physical-chrome
Version:
virtual physical network infrastructure layer for chrome
15 lines (14 loc) • 437 B
text/typescript
export let config : IConfig = {
permissiveMode: false,
rtcConfiguration : {
iceServers: [
{"urls":"stun://stun.l.google.com:19305"},
{"urls":"stun://stun.gmx.net:3478"}
],
iceCandidatePoolSize: 2
}
};
interface IConfig {
permissiveMode : boolean; //whether to wait for stalled (ice failed/disconnected) connections.
rtcConfiguration : RTCConfiguration;
}