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 <xing@cernet.edu.cn>
CC: LI Zimu <lzm@cernet.edu.cn>
CC: Cheer Xiao <xiaqqaix@gmail.com>
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2013-01-15 17:36:52 +00:00
parent 632e97834b
commit 34f73dbae1
3 changed files with 8 additions and 7 deletions

4
TODO
View file

@ -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

View file

@ -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"

View file

@ -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);
}