mirror of
git://git.code.sf.net/p/dhcpd-pools/code
synced 2025-12-18 08:47:00 +00:00
output: add separate first_ip and last_ip to json and mustach outputs
This give greater liberty to people who are using these formats to do what ever they need to. Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
parent
7d9a5b5561
commit
74fdf90980
3 changed files with 11 additions and 1 deletions
|
|
@ -497,6 +497,8 @@ static int output_json(const int print_mac_addreses)
|
|||
|
||||
fprintf(outfile, "\"range\":\"%s", ntop_ipaddr(&range_p->first_ip));
|
||||
fprintf(outfile, " - %s\", ", ntop_ipaddr(&range_p->last_ip));
|
||||
fprintf(outfile, "\"first_ip\":\"%s\", ", ntop_ipaddr(&range_p->first_ip));
|
||||
fprintf(outfile, "\"last_ip\":\"%s\", ", ntop_ipaddr(&range_p->last_ip));
|
||||
fprintf(outfile, "\"defined\":%g, ", oh.range_size);
|
||||
fprintf(outfile, "\"used\":%g, ", range_p->count);
|
||||
fprintf(outfile, "\"touched\":%g, ", range_p->touched);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue