Skip to content

Commit

Permalink
[wasm] Don't use a fixed listening port for the proxy
Browse files Browse the repository at this point in the history
Fixes dotnet#70670 .
  • Loading branch information
radical authored Jun 13, 2022
1 parent 27811e5 commit 64d1c4e
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 64d1c4e

Please sign in to comment.