From owner-cvs-usrsbin Mon Jan 6 22:07:27 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id WAA00879 for cvs-usrsbin-outgoing; Mon, 6 Jan 1997 22:07:27 -0800 (PST) Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id WAA00872; Mon, 6 Jan 1997 22:07:25 -0800 (PST) Date: Mon, 6 Jan 1997 22:07:25 -0800 (PST) From: Bill Paul Message-Id: <199701070607.WAA00872@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrsbin Subject: cvs commit: src/usr.sbin/ypserv yp_server.c yp_dnslookup.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 97/01/06 22:07:24 Modified: usr.sbin/ypserv yp_server.c yp_dnslookup.c Log: yp_server.c: - Fail YPPROC_ALL requests when we hit the child process limit. This is a little harsh, but it helps prevent the parent from blocking and causing other requests to time out. yp_dnslookup.c: - Check for duplicate RPC transaction IDs that indicate duplicate requests sent due to RPC retransmissions. We don't want to send a second DNS request for the same data while an existing request is in progress. - Fix small formatting bogon in snprintf() in yp_async_lookup_addr(). Revision Changes Path 1.17 +11 -1 src/usr.sbin/ypserv/yp_server.c 1.7 +45 -16 src/usr.sbin/ypserv/yp_dnslookup.c