From 34f73dbae1af064c03692eeb76d5dce2212f9c13 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Tue, 15 Jan 2013 17:36:52 +0000 Subject: [PATCH] docs: thanks to Cheer Xiao this software has IPv6 support The prof. Xing Li in Tsinghua University, with LI Zimu, asked Cheer to make the dhcpd-pools more usable for them which I, as a project maintainer, could not be more pleased. Whils making the IPv6 analysis to work Cheer also fixed various other issues. Kudos to him, and big thanks to everyone. CC: Xing Li CC: LI Zimu CC: Cheer Xiao Signed-off-by: Sami Kerola --- TODO | 4 +--- man/dhcpd-pools.1.in | 6 ++++-- src/other.c | 5 +++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/TODO b/TODO index d45c3c6..fe04930 100644 --- a/TODO +++ b/TODO @@ -8,7 +8,6 @@ Reported-by: Huangyu: I found dhcpd-pools didn't consider if the ### Feature requests -o IPv6 support (Frank) o Assigned IPs count (Nelson) o Subnet counting class (Henryk) o When time stamps are part of lease situation evaluation (see @@ -33,8 +32,7 @@ o Add lease time histogram support. dhcpd-pool servers. 9 Nice http view interface on super server, much can be copied from http://piwik.org/ -10 IPv6 support. -11 And some other things perhaps... +10 And some other things perhaps... When items 1-7 are done v3 can be released. To support rewrite there should be a design document with nice blue print, which is diff --git a/man/dhcpd-pools.1.in b/man/dhcpd-pools.1.in index ce1e6ce..7c365c7 100644 --- a/man/dhcpd-pools.1.in +++ b/man/dhcpd-pools.1.in @@ -181,10 +181,12 @@ ISC dhcpd configuration file. .TP @DHCPDLEASE_FILE@ ISC dhcpd lease file. -.SH AUTHOR -Written by Sami Kerola. +.SH AUTHORS +Original design by Sami Kerola. .br XML support by Dominic Germain, Sogetel inc. +.br +IPv6 support by Cheer Xiao. .PP The software has FreeBSD License. .SH "REPORTING BUGS" diff --git a/src/other.c b/src/other.c index 7b8ec99..226fe30 100644 --- a/src/other.c +++ b/src/other.c @@ -251,8 +251,9 @@ void clean_up(void) void __attribute__ ((__noreturn__)) print_version(void) { fprintf(stdout, "%s\n" - "Written by Sami Kerola.\n" - "XML support by Dominic Germain, Sogetel inc.\n\n" + "Original design by Sami Kerola.\n" + "XML support by Dominic Germain, Sogetel inc.\n" + "IPv6 support by Cheer Xiao.\n\n" "The software has FreeBSD License.\n", PACKAGE_STRING); exit(EXIT_SUCCESS); }