Skip to content

Commit

Permalink
Remove metered turn server
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Aug 30, 2024
1 parent bf74b47 commit bf1c481
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 0 additions & 1 deletion platforms/core/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@
"fragmentPaths": ["wix/service.wxs"],
"componentRefs": ["ServiceEntry"]
},
"signCommand": "trusted-signing-cli %1 -e https://wus2.codesigning.azure.net -a mnr -c Profile3",
"webviewInstallMode": {
"type": "skip"
}
Expand Down
5 changes: 5 additions & 0 deletions platforms/core/tauri.windows.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,10 @@
}
}
]
},
"bundle": {
"windows": {
"signCommand": "trusted-signing-cli %1 -e https://wus2.codesigning.azure.net -a mnr -c Profile3"
}
}
}
2 changes: 1 addition & 1 deletion platforms/windows/service/RTCServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace service;
public class RTCServer {
internal static EzRTCHost EzRTCHost = new(new Uri("wss://rtc-usw.levminer.com/one-to-many"), Program.Settings.connectionCode, new List<RTCIceServer> { new RTCIceServer { urls = "stun:openrelay.metered.ca:80" }, new RTCIceServer { urls = "turn:standard.relay.metered.ca:443", credential = "hZA1e3RHAhw70JoP", username = "34a987bde7c718428704bde7", credentialType = RTCIceCredentialType.password }, new RTCIceServer { urls = "turn:standard.relay.metered.ca:80", credential = "hZA1e3RHAhw70JoP", username = "34a987bde7c718428704bde7", credentialType = RTCIceCredentialType.password } });
internal static EzRTCHost EzRTCHost = new(new Uri("wss://rtc-usw.levminer.com/one-to-many"), Program.Settings.connectionCode, new List<RTCIceServer> { new RTCIceServer { urls = "stun:stun.cloudflare.com:3478" } });
internal static bool stop = false;

public void Start(HardwareInfo hardwareInfo) {
Expand Down

0 comments on commit bf1c481

Please sign in to comment.