mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-13 20:11:19 -04:00
Don't specify port for stun server
No idea why but, with it, when a client disconnects the datachannel
doesn't close. This wasn't an issue prior to 359600d
since the
configuration wasn't being passed to the peerconnection constructor.
This probably just makes the url invalid and falls back to a default in
libwebrtc.
This commit is contained in:
parent
6e95581f53
commit
fb0578d840
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ Config.prototype.connectionsPerClient = 1;
|
|||
Config.prototype.pcConfig = {
|
||||
iceServers: [
|
||||
{
|
||||
urls: ['stun:stun.l.google.com:19302']
|
||||
urls: ['stun:stun.l.google.com']
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue