Re: [PATCH 2/2] socket: add minimum listen queue length sysctl
From: Hagen Paul Pfeifer <hidden>
Date: 2011-03-25 23:51:05
* Rick Jones | 2011-03-25 13:24:37 [-0700]: Hello Rick
Well, one could LD_PRELOAD something that intercepted listen() calls no?
Noes, for dynamically linked programs yes, for statically linked ones no. Furthermore, for distribution shipped programs an administrator would not alter the init script or something. Editing /etc/sysctl.conf is as simple as ...
Is there already a similar minimum the admin can configure when the applications makes "too small" an explicit setsockopt() call against SO_SNDBUF or SO_RCVBUF?
net.ipv4.tcp_rmem, net.ipv4.tcp_mem, net.core.rmem_default, ...? IMHO, _if_ a programmer modifies the send or receive buffer he _knows_ exactly why. If he does not modify the buffer it is fine too, because _we_ tune the buffers as good as we can - and we are good in this. But, the backlog is different. Often the programmer does _not_ know how to tune this variable. And, often the backlog depends on the target system, on the network characteristic and the like. Therefore we provide the system administrator the _ability_ to tune the actual backlog. Hagen