Date: Sun, 17 Jul 2011 19:24:54 +0000 (UTC) From: Hiroki Sato <hrs@FreeBSD.org> To: cvs-src-old@freebsd.org 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 ... Message-ID: <201107171925.p6HJPqTn067143@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201107171925.p6HJPqTn067143>
