Skip to content

Commit

Permalink
[wasm] Don't use a fixed listening port for the proxy (#70681)
Browse files Browse the repository at this point in the history
Fixes #70670 .
  • Loading branch information
radical committed Jun 14, 2022
1 parent fbae62d commit a344441
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 a344441

Please sign in to comment.