Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[wasm] Don't use a fixed listening port for the proxy
Fixes #70670 .
  • Loading branch information
radical authored Jun 13, 2022
commit 64d1c4e385a3cbe607668e7901859258d5e0e7fb
4 changes: 2 additions & 2 deletions src/mono/wasm/debugger/BrowserDebugProxy/ProxyOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ public class ProxyOptions
{
public Uri DevToolsUrl { get; set; } = new Uri($"http://localhost:9222");
public int? OwnerPid { get; set; }
public int FirefoxProxyPort { get; set; } = 6300;
public int FirefoxProxyPort { get; set; }
public int FirefoxDebugPort { get; set; } = 6000;
public int DevToolsProxyPort { get; set; } = 9300;
public int DevToolsProxyPort { get; set; }
public int DevToolsDebugPort
{
get => DevToolsUrl.Port;
Expand Down