Skip to content

Commit

Permalink
add google STUN server to turn RTC config.
Browse files Browse the repository at this point in the history
this helps with netowrk traversal when using custom TURN config and TURN is not available but STUN is.
note that the google stun server is bypassed if force-turn is enabled.
  • Loading branch information
danisla authored Sep 4, 2023
1 parent 5898164 commit 7fcbce1
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/selkies_gstreamer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ def make_turn_rtc_config_json(host, port, username, password, protocol='udp', tl
"iceServers": [
{
"urls": [
"stun:stun.l.google.com:19302",
"stun:%s:%s"
]
},
Expand Down

0 comments on commit 7fcbce1

Please sign in to comment.