Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: The Source of All Evil <source@NetBSD.ORG>
List: source-changes
Date: 04/30/1998 19:00:01
thorpej
Thu Apr 30 18:57:26 PDT 1998
Update of /cvsroot/src/usr.sbin/inetd
In directory nb00:/tmp/cvs-serv21797

Modified Files:
	inetd.8 inetd.c 
Log Message:
Add support for specifying the send and receive socket buffer sizes.  This
is especially useful for TCP servers which must specify the receive
socket buffer size before the connection is made so that the connection's
window scale factor can be properly advertised.

Example /etc/inetd.conf configuration line:

shell stream tcp,rcvbuf=1m nowait root /usr/libexec/rshd rshd

That line will cause the rshd to advertise a 1 megabyte window, which could
improve the performance of an rcp in some situations.