From b9b4733b0f7f284def76fdf339db4a0b6624189c Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Wed, 27 Dec 2023 08:20:35 -0500 Subject: [PATCH] Make port use test bind to any IP --- tests/Tgstation.Server.Tests/Live/TestLiveServer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs b/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs index d745eddbcb..0a4b956cc8 100644 --- a/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs +++ b/tests/Tgstation.Server.Tests/Live/TestLiveServer.cs @@ -154,7 +154,7 @@ namespace Tgstation.Server.Tests.Live { do { - var l = new TcpListener(IPAddress.Loopback, 0); + var l = new TcpListener(IPAddress.Any, 0); l.Start(); try {