From owner-cvs-usrsbin Mon Dec 2 18:37:56 1996 Return-Path: owner-cvs-usrsbin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA01127 for cvs-usrsbin-outgoing; Mon, 2 Dec 1996 18:37:56 -0800 (PST) Received: (from wpaul@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id SAA01109; Mon, 2 Dec 1996 18:37:43 -0800 (PST) Date: Mon, 2 Dec 1996 18:37:43 -0800 (PST) From: Bill Paul Message-Id: <199612030237.SAA01109@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrsbin Subject: cvs commit: src/usr.sbin/ypserv Makefile yp_extern.h yp_main.c yp_server.c yp_async.c Sender: owner-cvs-usrsbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 96/12/02 18:37:42 Modified: usr.sbin/ypserv Makefile yp_extern.h yp_main.c yp_server.c Removed: usr.sbin/ypserv yp_async.c Log: Back out the non-forking YPPROC_ALL stuff. Whatever drugs I was doing when I came up with this idea weren't strong enough to help me see it through. If this was a self-contained application and I had complete control over what data got sent through what socket and when, I might be able to get everything to work right without blocking, but instead I have RPC/XDR in between me and the socket layer, and they have their own ideas about what to do. Maybe one day I'll go totally mad and figure out the right way to do this; in the meantime this mess goes on the back burner. Revision Changes Path 1.8 +1 -1 src/usr.sbin/ypserv/Makefile 1.7 +0 -4 src/usr.sbin/ypserv/yp_extern.h 1.8 +40 -1 src/usr.sbin/ypserv/yp_main.c 1.14 +51 -17 src/usr.sbin/ypserv/yp_server.c