Skip to content

Commit

Permalink
make transport explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
shumvgolove committed Feb 5, 2023
1 parent 3a77762 commit 938ab99
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions apps/android/app/src/main/assets/www/call.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions packages/simplex-chat-webrtc/src/call.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,8 +219,7 @@ const processCommand = (function () {

const defaultIceServers: RTCIceServer[] = [
{urls: ["stun:stun.simplex.im:443"]},
{urls: ["stun:stun.simplex.im:443?transport=tcp"]},
{urls: ["turn:turn.simplex.im:443"], username: "private", credential: "yleob6AVkiNI87hpR94Z"},
{urls: ["turn:turn.simplex.im:443?transport=udp"], username: "private", credential: "yleob6AVkiNI87hpR94Z"},
{urls: ["turn:turn.simplex.im:443?transport=tcp"], username: "private", credential: "yleob6AVkiNI87hpR94Z"},
]

Expand Down

0 comments on commit 938ab99

Please sign in to comment.