Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: None <source@NetBSD.ORG>
List: source-changes
Date: 01/05/1998 09:20:01
thorpej
Mon Jan  5 01:12:30 PST 1998
Update of /cvsroot/src/sys/kern
In directory netbsd1:/var/slash-tmp/cvs-serv9491/kern

Modified Files:
	uipc_socket.c 
Log Message:
>From 4.4BSD-Lite2 (noted by Frank van der Linden):
so_linger is used as an argument to tsleep(), so was stuffed with
clockticks for the TCP linger time.  However, so_linger is set directly from
l_linger if the linger time is specified, and l_linger is seconds (although
this is not currently documented anywhere).  Fix this to set the TCP
linger time in seconds, and multiply so_linger by hz when tsleep() is
called to actually perform the linger.


thorpej
Mon Jan  5 01:12:31 PST 1998
Update of /cvsroot/src/sys/netinet
In directory netbsd1:/var/slash-tmp/cvs-serv9491/netinet

Modified Files:
	tcp_usrreq.c 
Log Message:
>From 4.4BSD-Lite2 (noted by Frank van der Linden):
so_linger is used as an argument to tsleep(), so was stuffed with
clockticks for the TCP linger time.  However, so_linger is set directly from
l_linger if the linger time is specified, and l_linger is seconds (although
this is not currently documented anywhere).  Fix this to set the TCP
linger time in seconds, and multiply so_linger by hz when tsleep() is
called to actually perform the linger.


lukem
Mon Jan  5 01:16:09 PST 1998
Update of /cvsroot/doc
In directory netbsd1:/var/slash-tmp/cvs-serv10297

Modified Files:
	MIRRORS 
Log Message:
regenerate

thorpej
Mon Jan  5 01:18:42 PST 1998
Update of /cvsroot/src/lib/libc/sys
In directory netbsd1:/var/slash-tmp/cvs-serv10566

Modified Files:
	getsockopt.2 
Log Message:
Actually document that SO_LINGER's linger time is measured in seconds.