Implement IPv6 support for server and direct connect

This commit is contained in:
jrb0001
2020-01-06 22:19:52 +01:00
committed by reaperrr
parent bd1a936c7a
commit bf397591f9
16 changed files with 328 additions and 118 deletions

View File

@@ -82,7 +82,7 @@ namespace OpenRA.Mods.Common.Server
public void ServerStarted(S server)
{
if (!server.Ip.Equals(IPAddress.Loopback) && LanGameBeacon != null)
if (server.Type != ServerType.Local && LanGameBeacon != null)
LanGameBeacon.Start();
}