From df16441d47b199bd2203e2decc39954ae3cb893b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20N=C3=A4geli?= Date: Fri, 10 Jan 2025 15:24:58 +0100 Subject: [PATCH] ... --- Engine/Internal/Infrastructure/Endpoints/EndPoint.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Engine/Internal/Infrastructure/Endpoints/EndPoint.cs b/Engine/Internal/Infrastructure/Endpoints/EndPoint.cs index 20508c84..35068059 100644 --- a/Engine/Internal/Infrastructure/Endpoints/EndPoint.cs +++ b/Engine/Internal/Infrastructure/Endpoints/EndPoint.cs @@ -58,6 +58,8 @@ public void Start() { Socket = new Socket(Endpoint.AddressFamily, SocketType.Stream, ProtocolType.Tcp); + Socket.SetSocketOption(SocketOptionLevel.IPv6, SocketOptionName.IPv6Only, false); + Socket.Bind(Endpoint); Socket.Listen(Configuration.Backlog); }