Skip to content

Commit a344441

Browse files
authored
[wasm] Don't use a fixed listening port for the proxy (#70681)
Fixes #70670 .
1 parent fbae62d commit a344441

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mono/wasm/debugger/BrowserDebugProxy/ProxyOptions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ public class ProxyOptions
1111
{
1212
public Uri DevToolsUrl { get; set; } = new Uri($"http://localhost:9222");
1313
public int? OwnerPid { get; set; }
14-
public int FirefoxProxyPort { get; set; } = 6300;
14+
public int FirefoxProxyPort { get; set; }
1515
public int FirefoxDebugPort { get; set; } = 6000;
16-
public int DevToolsProxyPort { get; set; } = 9300;
16+
public int DevToolsProxyPort { get; set; }
1717
public int DevToolsDebugPort
1818
{
1919
get => DevToolsUrl.Port;

0 commit comments

Comments
 (0)