From owner-cvs-src@FreeBSD.ORG Fri Aug 22 11:54:23 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82FFE16A4BF; Fri, 22 Aug 2003 11:54:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0240C43F93; Fri, 22 Aug 2003 11:54:23 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h7MIsM0U031810; Fri, 22 Aug 2003 11:54:22 -0700 (PDT) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h7MIsMbC031809; Fri, 22 Aug 2003 11:54:22 -0700 (PDT) Message-Id: <200308221854.h7MIsMbC031809@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 22 Aug 2003 11:54:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin/rtadvd Makefile config.c config.h dump.c rtadvd.8 rtadvd.c rtadvd.conf rtadvd.conf.5 rtadvd.h src/usr.sbin/rtsold Makefile X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Aug 2003 18:54:24 -0000 ume 2003/08/22 11:54:22 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/rtadvd Makefile config.c config.h dump.c rtadvd.8 rtadvd.c rtadvd.conf rtadvd.conf.5 rtadvd.h usr.sbin/rtsold Makefile Log: MFC: - logged the fact to dump the status. - dump the content of route information options - set LOG_PERROR for openlog() when running foreground. - variable shared with signal handler needs to be "volatile sig_atomic_t". - use arc4random. - supported a string notation for xxflags. - deprecate routes#N, as it is hard to keep consistency with rtprefixN. accept any number of "rtprefix", "rtrefix0", ..., "rtprefix99". - deprecate "addrs#N", as it is difficult for users to keep consistency with "addrN". accept 100 prefix info in maximum - like "addr", "addr0" ... "addr99". WARNS=2 clean on netbsd. old configuration file should work just fine. behavior change: previously, we rejected "addrN" if there's "addr", and we rejected "addr" if there is "addrN". now we accept both without problem. - when an advertised prefix configured from the kernel has been added or invalidated, notice the change in a short delay. - when invalidating a prefix, do not bark even if there is inconsistency about prefix lifetimes. - wrap more specific route info code into ROUTEINFO. usr.sbin/rtadvd/Makefile: 1.7, 1.8 usr.sbin/rtadvd/config.c: 1.23 usr.sbin/rtadvd/config.h: 1.6 usr.sbin/rtadvd/dump.c: 1.10 - 1.12 usr.sbin/rtadvd/rtadvd.8: 1.14 usr.sbin/rtadvd/rtadvd.c: 1.20 - 1.23 usr.sbin/rtadvd/rtadvd.conf.5: 1.12 usr.sbin/rtadvd/rtadvd.conf: 1.4 usr.sbin/rtadvd/rtadvd.h: 1.9 Revision Changes Path 1.1.2.4 +1 -1 src/usr.sbin/rtadvd/Makefile 1.3.2.9 +278 -223 src/usr.sbin/rtadvd/config.c 1.1.2.4 +10 -1 src/usr.sbin/rtadvd/config.h 1.1.2.6 +27 -2 src/usr.sbin/rtadvd/dump.c 1.3.2.9 +13 -20 src/usr.sbin/rtadvd/rtadvd.8 1.3.2.7 +116 -81 src/usr.sbin/rtadvd/rtadvd.c 1.1.2.3 +3 -3 src/usr.sbin/rtadvd/rtadvd.conf 1.1.2.11 +114 -80 src/usr.sbin/rtadvd/rtadvd.conf.5 1.1.2.5 +6 -3 src/usr.sbin/rtadvd/rtadvd.h 1.1.2.6 +1 -1 src/usr.sbin/rtsold/Makefile