Increasing TCP/IP Window size
- by Lior
I am trying to send messages over tcp/ip between two servers.
I want to send a message that is 30KB.
But I want to send it with as a whole.
I don't want tcp protocol to break it into segments.
I am using communication between 2 Windows Server 2008 R2.
The client and the server are coded using c#.
I tryed using
tcpclnt.SendBufferSize = 100000;
tcpclnt.Client.DontFragment = true;
and the same at the server.
I also tried configuring the window size of the server(editing the registry).