From owner-cvs-src-old@FreeBSD.ORG Sun Jul 17 19:25:52 2011 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 549651065676 for ; Sun, 17 Jul 2011 19:25:52 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3946D8FC0A for ; Sun, 17 Jul 2011 19:25:52 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p6HJPqIV067144 for ; Sun, 17 Jul 2011 19:25:52 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p6HJPqTn067143 for cvs-src-old@freebsd.org; Sun, 17 Jul 2011 19:25:52 GMT (envelope-from hrs@repoman.freebsd.org) Message-Id: <201107171925.p6HJPqTn067143@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to hrs@repoman.freebsd.org using -f From: Hiroki Sato Date: Sun, 17 Jul 2011 19:24:54 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin Makefile src/usr.sbin/rtadvctl Makefile rtadvctl.8 rtadvctl.c src/usr.sbin/rtadvd Makefile config.c config.h control.c control.h control_client.c control_client.h control_server.c control_server.h dump.c dump.h if.c if.h ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Jul 2011 19:25:52 -0000 hrs 2011-07-17 19:24:54 UTC FreeBSD src repository Modified files: usr.sbin Makefile usr.sbin/rtadvd Makefile config.c config.h if.c if.h pathnames.h rrenum.c rtadvd.8 rtadvd.c rtadvd.h timer.c timer.h Added files: usr.sbin/rtadvctl Makefile rtadvctl.8 rtadvctl.c usr.sbin/rtadvd control.c control.h control_client.c control_client.h control_server.c control_server.h timer_subr.c timer_subr.h Removed files: usr.sbin/rtadvd dump.c dump.h Log: SVN rev 224144 on 2011-07-17 19:24:54Z by hrs - Improve interface list handling. The rtadvd(8) now supports dynamically- added/removed interfaces in a more consistent manner and reloading the configuration file. - Implement burst unsolicited RA sending into the internal RA timer framework when AdvSendAdvertisements and/or configuration entries are changed as described in RFC 4861 6.2.4. This fixes issues that make termination of the rtadvd(8) daemon take very long time. An interface now has three internal states, UNCONFIGURED, TRANSITIVE, or CONFIGURED, and the burst unsolicited sending happens in TRANSITIVE. See rtadvd.h for the details. - rtadvd(8) now accepts non-existent interfaces as well in the command line. - Add control socket support and rtadvctl(8) utility to show the RA information in rtadvd(8). Dumping by SIGUSR1 has been removed in favor of it. Revision Changes Path 1.441 +1 -0 src/usr.sbin/Makefile 1.1 +13 -0 src/usr.sbin/rtadvctl/Makefile (new) 1.1 +103 -0 src/usr.sbin/rtadvctl/rtadvctl.8 (new) 1.1 +926 -0 src/usr.sbin/rtadvctl/rtadvctl.c (new) 1.16 +3 -2 src/usr.sbin/rtadvd/Makefile 1.33 +361 -195 src/usr.sbin/rtadvd/config.c 1.10 +6 -4 src/usr.sbin/rtadvd/config.h 1.1 +456 -0 src/usr.sbin/rtadvd/control.c (new) 1.1 +74 -0 src/usr.sbin/rtadvd/control.h (new) 1.1 +131 -0 src/usr.sbin/rtadvd/control_client.c (new) 1.1 +30 -0 src/usr.sbin/rtadvd/control_client.h (new) 1.1 +742 -0 src/usr.sbin/rtadvd/control_server.c (new) 1.1 +42 -0 src/usr.sbin/rtadvd/control_server.h (new) 1.16 +0 -321 src/usr.sbin/rtadvd/dump.c (dead) 1.6 +0 -33 src/usr.sbin/rtadvd/dump.h (dead) 1.14 +418 -265 src/usr.sbin/rtadvd/if.c 1.8 +20 -17 src/usr.sbin/rtadvd/if.h 1.7 +1 -2 src/usr.sbin/rtadvd/pathnames.h 1.12 +15 -5 src/usr.sbin/rtadvd/rrenum.c 1.21 +1 -21 src/usr.sbin/rtadvd/rtadvd.8 1.34 +493 -469 src/usr.sbin/rtadvd/rtadvd.c 1.13 +103 -47 src/usr.sbin/rtadvd/rtadvd.h 1.12 +56 -64 src/usr.sbin/rtadvd/timer.c 1.9 +1 -21 src/usr.sbin/rtadvd/timer.h 1.1 +126 -0 src/usr.sbin/rtadvd/timer_subr.c (new) 1.1 +57 -0 src/usr.sbin/rtadvd/timer_subr.h (new)