summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/lib/remove_pool.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ipfilter/lib/remove_pool.c')
-rw-r--r--contrib/ipfilter/lib/remove_pool.c25
1 files changed, 11 insertions, 14 deletions
diff --git a/contrib/ipfilter/lib/remove_pool.c b/contrib/ipfilter/lib/remove_pool.c
index 1e7fe5f..8e75549 100644
--- a/contrib/ipfilter/lib/remove_pool.c
+++ b/contrib/ipfilter/lib/remove_pool.c
@@ -1,11 +1,11 @@
/* $FreeBSD$ */
/*
- * Copyright (C) 2003 by Darren Reed.
+ * Copyright (C) 2012 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
- * $Id: remove_pool.c,v 1.1.4.1 2006/06/16 17:21:16 darrenr Exp $
+ * $Id$
*/
#include <fcntl.h>
@@ -14,19 +14,16 @@
#include "netinet/ip_lookup.h"
#include "netinet/ip_htable.h"
-static int poolfd = -1;
-
-int remove_pool(poolp, iocfunc)
-ip_pool_t *poolp;
-ioctlfunc_t iocfunc;
+int
+remove_pool(poolp, iocfunc)
+ ip_pool_t *poolp;
+ ioctlfunc_t iocfunc;
{
iplookupop_t op;
ip_pool_t pool;
- if ((poolfd == -1) && ((opts & OPT_DONOTHING) == 0))
- poolfd = open(IPLOOKUP_NAME, O_RDWR);
- if ((poolfd == -1) && ((opts & OPT_DONOTHING) == 0))
+ if (pool_open() == -1)
return -1;
op.iplo_type = IPLT_POOL;
@@ -40,11 +37,11 @@ ioctlfunc_t iocfunc;
strncpy(pool.ipo_name, poolp->ipo_name, sizeof(pool.ipo_name));
pool.ipo_flags = poolp->ipo_flags;
- if ((*iocfunc)(poolfd, SIOCLOOKUPDELTABLE, &op))
+ if (pool_ioctl(iocfunc, SIOCLOOKUPDELTABLE, &op)) {
if ((opts & OPT_DONOTHING) == 0) {
- perror("remove_pool:SIOCLOOKUPDELTABLE");
- return -1;
+ return ipf_perror_fd(pool_fd(), iocfunc,
+ "delete lookup pool");
}
-
+ }
return 0;
}
OpenPOWER on IntegriCloud