Skip to content

Commit

Permalink
fix(ENGDESK-7173): change the STUN_SERVER port from 3843 to 3478 (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeividVeloso authored Nov 18, 2020
1 parent 592dfa3 commit cc8f78f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/js/src/Modules/Verto/tests/Verto.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ describe('Verto', () => {
username: 'testuser',
});
expect(telnyxRTC.iceServers[1]).toEqual({
urls: 'stun:stun.telnyx.com:3843',
urls: 'stun:stun.telnyx.com:3478',
});
});

Expand Down
2 changes: 1 addition & 1 deletion packages/js/src/Modules/Verto/util/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const SESSION_ID = 'sessId';

export const PROD_HOST = 'wss://rtc.telnyx.com:14938';
export const DEV_HOST = 'wss://rtcdev.telnyx.com:14938';
export const STUN_SERVER = { urls: 'stun:stun.telnyx.com:3843' };
export const STUN_SERVER = { urls: 'stun:stun.telnyx.com:3478' };
export const TURN_SERVER = {
urls: 'turn:turn.telnyx.com:3478?transport=tcp',
username: 'testuser',
Expand Down

0 comments on commit cc8f78f

Please sign in to comment.