opnsense-src/sbin/ipf/libipf/debug.c
Warner Losh 2a63c3be15 Remove $FreeBSD$: one-line .c comment pattern
Remove /^/[*/]\s*\$FreeBSD\$.*\n/
2023-08-16 11:54:29 -06:00

42 lines
540 B
C

/*
* Copyright (C) 2012 by Darren Reed.
*
* See the IPFILTER.LICENCE file for details on licencing.
*
* $Id$
*/
# include <stdarg.h>
#include <stdio.h>
#include "ipf.h"
#include "opts.h"
int debuglevel = 0;
void
debug(int level, char *fmt, ...)
{
va_list pvar;
va_start(pvar, fmt);
if ((debuglevel > 0) && (level <= debuglevel))
vfprintf(stderr, fmt, pvar);
va_end(pvar);
}
void
ipfkdebug(char *fmt, ...)
{
va_list pvar;
va_start(pvar, fmt);
if (opts & OPT_DEBUG)
debug(0x1fffffff, fmt, pvar);
va_end(pvar);
}