Commit 628fc06c authored by Stéphane Graziano's avatar Stéphane Graziano

Disable Nagle algorithm (really better network performances)

parent bd28898a
......@@ -271,6 +271,7 @@ namespace Titanium.Web.Proxy.Network.Tcp
{
tcpClient = new TcpClient(upStreamEndPoint)
{
NoDelay = true,
ReceiveTimeout = proxyServer.ConnectionTimeOutSeconds * 1000,
SendTimeout = proxyServer.ConnectionTimeOutSeconds * 1000,
SendBufferSize = proxyServer.BufferSize,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment