We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 117a294 commit b3d65deCopy full SHA for b3d65de
projects/RabbitMQ.Client/client/api/ConnectionFactoryBase.cs
@@ -53,8 +53,6 @@ public class ConnectionFactoryBase
53
public static ITcpClient DefaultSocketFactory(AddressFamily addressFamily)
54
{
55
var socket = new Socket(addressFamily, SocketType.Stream, ProtocolType.Tcp);
56
- socket.ReceiveBufferSize = 32 * 1024;
57
- socket.SendBufferSize = 32 * 1024;
58
SocketConnection.SetRecommendedClientOptions(socket);
59
return new TcpClientAdapter(socket);
60
}
0 commit comments