We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4139d42 commit df16441Copy full SHA for df16441
Engine/Internal/Infrastructure/Endpoints/EndPoint.cs
@@ -58,6 +58,8 @@ public void Start()
58
{
59
Socket = new Socket(Endpoint.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
60
61
+ Socket.SetSocketOption(SocketOptionLevel.IPv6, SocketOptionName.IPv6Only, false);
62
+
63
Socket.Bind(Endpoint);
64
Socket.Listen(Configuration.Backlog);
65
}
0 commit comments