Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ public TCPCommunicationLayer()
public override Client CreateClient()
{
IPEndPoint ipEndPoint = new(IPAddress.Loopback, inPort);
return new TCPClient(ipEndPoint, connectionTimeout);
return new TCPClient(ipEndPoint, int.MaxValue);
}

public override Host CreateHost()
{
IPEndPoint ipEndPoint = new(IPAddress.Loopback, outPort);
return new TCPHost(ipEndPoint);
return new TCPHost(ipEndPoint, int.MaxValue, int.MaxValue);
}

public override void GetIpcSettings(out object outLocation, out object inLocation, out string assemblyLocation)
Expand Down
Loading