summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/lib/verbose.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/ipfilter/lib/verbose.c')
-rw-r--r--contrib/ipfilter/lib/verbose.c55
1 files changed, 55 insertions, 0 deletions
diff --git a/contrib/ipfilter/lib/verbose.c b/contrib/ipfilter/lib/verbose.c
new file mode 100644
index 0000000..710daab
--- /dev/null
+++ b/contrib/ipfilter/lib/verbose.c
@@ -0,0 +1,55 @@
+/* $FreeBSD$ */
+
+/*
+ * Copyright (C) 2012 by Darren Reed.
+ *
+ * See the IPFILTER.LICENCE file for details on licencing.
+ *
+ * $Id$
+ */
+
+#if defined(__STDC__)
+# include <stdarg.h>
+#else
+# include <varargs.h>
+#endif
+#include <stdio.h>
+
+#include "ipf.h"
+#include "opts.h"
+
+
+#if defined(__STDC__)
+void verbose(int level, char *fmt, ...)
+#else
+void verbose(level, fmt, va_alist)
+ char *fmt;
+ va_dcl
+#endif
+{
+ va_list pvar;
+
+ va_start(pvar, fmt);
+
+ if (opts & OPT_VERBOSE)
+ vprintf(fmt, pvar);
+ va_end(pvar);
+}
+
+
+#if defined(__STDC__)
+void ipfkverbose(char *fmt, ...)
+#else
+void ipfkverbose(fmt, va_alist)
+ char *fmt;
+ va_dcl
+#endif
+{
+ va_list pvar;
+
+ va_start(pvar, fmt);
+
+ if (opts & OPT_VERBOSE)
+ verbose(0x1fffffff, fmt, pvar);
+ va_end(pvar);
+}
OpenPOWER on IntegriCloud