mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-12 16:46:33 -04:00
63 lines
1.1 KiB
C
63 lines
1.1 KiB
C
/* $NetBSD: printdstlist.c,v 1.1.1.2 2012/07/22 13:44:40 darrenr Exp $ */
|
|
|
|
/*
|
|
* Copyright (C) 2012 by Darren Reed.
|
|
*
|
|
* See the IPFILTER.LICENCE file for details on licencing.
|
|
*/
|
|
|
|
#include "ipf.h"
|
|
|
|
|
|
ippool_dst_t *
|
|
printdstlist(pp, copyfunc, name, opts, nodes, fields)
|
|
ippool_dst_t *pp;
|
|
copyfunc_t copyfunc;
|
|
char *name;
|
|
int opts;
|
|
ipf_dstnode_t *nodes;
|
|
wordtab_t *fields;
|
|
{
|
|
ipf_dstnode_t *node;
|
|
ippool_dst_t dst;
|
|
|
|
if ((*copyfunc)(pp, &dst, sizeof(dst)))
|
|
return NULL;
|
|
|
|
if ((name != NULL) && strncmp(name, dst.ipld_name, FR_GROUPLEN))
|
|
return dst.ipld_next;
|
|
|
|
if (fields == NULL)
|
|
printdstlistdata(&dst, opts);
|
|
|
|
if ((dst.ipld_flags & IPDST_DELETE) != 0)
|
|
PRINTF("# ");
|
|
if ((opts & OPT_DEBUG) == 0)
|
|
PRINTF("\t{");
|
|
|
|
if (nodes == NULL) {
|
|
putchar(';');
|
|
} else {
|
|
for (node = nodes; node != NULL; ) {
|
|
ipf_dstnode_t *n;
|
|
|
|
n = calloc(1, node->ipfd_size);
|
|
if (n == NULL)
|
|
break;
|
|
if ((*copyfunc)(node, n, node->ipfd_size)) {
|
|
free(n);
|
|
return NULL;
|
|
}
|
|
|
|
node = printdstlistnode(n, bcopywrap, opts, fields);
|
|
|
|
free(n);
|
|
}
|
|
}
|
|
|
|
if ((opts & OPT_DEBUG) == 0)
|
|
PRINTF(" };\n");
|
|
|
|
return dst.ipld_next;
|
|
}
|