From owner-cvs-sbin Thu Jan 18 17:28:33 1996 Return-Path: owner-cvs-sbin Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id RAA19834 for cvs-sbin-outgoing; Thu, 18 Jan 1996 17:28:33 -0800 (PST) Received: (from fenner@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id RAA19825 Thu, 18 Jan 1996 17:28:32 -0800 (PST) Date: Thu, 18 Jan 1996 17:28:32 -0800 (PST) From: Bill Fenner Message-Id: <199601190128.RAA19825@freefall.freebsd.org> To: CVS-committers, cvs-sbin Subject: cvs commit: src/sbin/rdisc Makefile rdisc.c rdisc.h Sender: owner-cvs-sbin@FreeBSD.ORG Precedence: bulk fenner 96/01/18 17:28:31 Modified: sbin/rdisc rdisc.c Added: sbin/rdisc Makefile Removed: sbin/rdisc rdisc.h Log: Made router discovery at least build and run. There are a few things left to do (e.g. it doesn't yet run on systems with aliased addresses) but this should work for simple configurations. I don't plan to enable the rdisc directory in the sbin/ makefile until I get feedback on this and add the missing features, so please, if you have routers that perform router discovery, or if your FreeBSD box is itself a router, give this a try. Revision Changes Path 1.3 +73 -37 src/sbin/rdisc/rdisc.c From owner-cvs-sbin Fri Jan 19 02:22:18 1996 Return-Path: owner-cvs-sbin Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA05649 for cvs-sbin-outgoing; Fri, 19 Jan 1996 02:22:18 -0800 (PST) Received: (from peter@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA05640 Fri, 19 Jan 1996 02:22:12 -0800 (PST) Date: Fri, 19 Jan 1996 02:22:12 -0800 (PST) From: Peter Wemm Message-Id: <199601191022.CAA05640@freefall.freebsd.org> To: CVS-committers, cvs-sbin Subject: cvs commit: src/sbin/rdisc rdisc.c Sender: owner-cvs-sbin@FreeBSD.ORG Precedence: bulk peter 96/01/19 02:22:08 Modified: sbin/rdisc rdisc.c Log: Source cleanup: prototypes, varargs, POSIXification, getopts, -Wall clean. Bugfixes: no longer stomps it's argv causing ps to change the string. Unfortunately, Bill Fenner and I have overlapping changes here... Revision Changes Path 1.4 +181 -182 src/sbin/rdisc/rdisc.c From owner-cvs-sbin Fri Jan 19 02:26:53 1996 Return-Path: owner-cvs-sbin Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id CAA05885 for cvs-sbin-outgoing; Fri, 19 Jan 1996 02:26:53 -0800 (PST) Received: from jhome.DIALix.COM (root@jhome.DIALix.COM [192.203.228.69]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id CAA05880 Fri, 19 Jan 1996 02:26:43 -0800 (PST) Received: (from peter@localhost) by jhome.DIALix.COM (8.7.3/8.7.3) id SAA02749; Fri, 19 Jan 1996 18:26:39 +0800 (WST) Date: Fri, 19 Jan 1996 18:26:38 +0800 (WST) From: Peter Wemm To: CVS-committers@freefall.freebsd.org, cvs-sbin@freefall.freebsd.org Subject: Re: cvs commit: src/sbin/rdisc rdisc.c In-Reply-To: <199601191022.CAA05640@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-sbin@FreeBSD.ORG Precedence: bulk On Fri, 19 Jan 1996, Peter Wemm wrote: > Modified: sbin/rdisc rdisc.c > Log: > Source cleanup: prototypes, varargs, POSIXification, getopts, -Wall clean. > Bugfixes: no longer stomps it's argv causing ps to change the string. > > Unfortunately, Bill Fenner and I have overlapping changes here... BTW: this code has successfully worked here and "done the right thing" under test conditions... This should be a good alternative to running routed/gated at boot... -Peter From owner-cvs-sbin Sat Jan 20 04:57:04 1996 Return-Path: owner-cvs-sbin Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id EAA23481 for cvs-sbin-outgoing; Sat, 20 Jan 1996 04:57:04 -0800 (PST) Received: (from mpp@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id EAA23473 Sat, 20 Jan 1996 04:57:01 -0800 (PST) Date: Sat, 20 Jan 1996 04:57:01 -0800 (PST) From: Mike Pritchard Message-Id: <199601201257.EAA23473@freefall.freebsd.org> To: CVS-committers, cvs-sbin Subject: cvs commit: src/sbin/route route.c Sender: owner-cvs-sbin@FreeBSD.ORG Precedence: bulk mpp 96/01/20 04:57:00 Modified: sbin/route route.c Log: Route calls the errx routine with the wrong number of arguments when printing "route: bad address: ...". Revision Changes Path 1.4 +2 -2 src/sbin/route/route.c