summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/lib/printportcmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ipfilter/lib/printportcmp.c')
-rw-r--r--contrib/ipfilter/lib/printportcmp.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/contrib/ipfilter/lib/printportcmp.c b/contrib/ipfilter/lib/printportcmp.c
new file mode 100644
index 0000000..2a5bd02
--- /dev/null
+++ b/contrib/ipfilter/lib/printportcmp.c
@@ -0,0 +1,30 @@
+/* $FreeBSD$ */
+
+/*
+ * Copyright (C) 2012 by Darren Reed.
+ *
+ * See the IPFILTER.LICENCE file for details on licencing.
+ *
+ * $Id$
+ */
+
+#include "ipf.h"
+
+
+void
+printportcmp(pr, frp)
+ int pr;
+ frpcmp_t *frp;
+{
+ static char *pcmp1[] = { "*", "=", "!=", "<", ">", "<=", ">=",
+ "<>", "><", ":" };
+
+ if (frp->frp_cmp == FR_INRANGE || frp->frp_cmp == FR_OUTRANGE)
+ PRINTF(" port %d %s %d", frp->frp_port,
+ pcmp1[frp->frp_cmp], frp->frp_top);
+ else if (frp->frp_cmp == FR_INCRANGE)
+ PRINTF(" port %d:%d", frp->frp_port, frp->frp_top);
+ else
+ PRINTF(" port %s %s", pcmp1[frp->frp_cmp],
+ portname(pr, frp->frp_port));
+}
OpenPOWER on IntegriCloud