From owner-cvs-all Tue Jul 28 14:56:32 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA25881 for cvs-all-outgoing; Tue, 28 Jul 1998 14:56:32 -0700 (PDT) (envelope-from owner-cvs-all) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA25814; Tue, 28 Jul 1998 14:56:19 -0700 (PDT) (envelope-from brian@FreeBSD.org) From: Brian Somers Received: (from brian@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA15898; Tue, 28 Jul 1998 14:54:58 -0700 (PDT) Date: Tue, 28 Jul 1998 14:54:58 -0700 (PDT) Message-Id: <199807282154.OAA15898@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/usr.sbin/ppp bundle.c bundle.h command.c route.c Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk brian 1998/07/28 14:54:58 PDT Modified files: usr.sbin/ppp bundle.c bundle.h command.c route.c Log: Silence ``Network unreachable'' warnings when using ``add .... HISADDR''. The network will never be reachable at this point unless we're in -auto or reading the command from ppp.linkup. We can now run the following lines and get the expected results: set ifaddr 1.2.3.4/0 5.6.7.8/0 add default HISADDR where a route is added immediately in auto mode and the whole thing is delayed 'till the IP numbers have been agreed in other modes. Essentially, ppp.linkup is no longer required. Revision Changes Path 1.28 +8 -7 src/usr.sbin/ppp/bundle.c 1.10 +2 -2 src/usr.sbin/ppp/bundle.h 1.156 +4 -4 src/usr.sbin/ppp/command.c 1.52 +6 -6 src/usr.sbin/ppp/route.c