X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fpf.c;h=44f0c7bcdec158b3244ec6f7b0d9212b9cd652d5;hb=b6fbfb1b864be53e71d755fba59d633f5c30da7e;hp=da539a26ec4cd9f6b1026ed39f8903568f97e346;hpb=05fb05dcf56a4676956c38d7a33ae5e6967ac331;p=collectd.git diff --git a/src/pf.c b/src/pf.c index da539a26..44f0c7bc 100644 --- a/src/pf.c +++ b/src/pf.c @@ -19,18 +19,36 @@ #include "plugin.h" #include "common.h" -#include -#include -#include +#if HAVE_SYS_IOCTL_H +# include +#endif +#if HAVE_SYS_SOCKET_H +# include +#endif +#if HAVE_NET_IF_H +# include +#endif + #include -#include -#include -#include + +#ifndef FCNT_NAMES +# if FCNT_MAX != 3 +# error "Unexpected value for FCNT_MAX" +# endif +# define FCNT_NAMES {"search", "insert", "removals", NULL}; +#endif + +#ifndef SCNT_NAMES +# if SCNT_MAX != 3 +# error "Unexpected value for SCNT_MAX" +# endif +# define SCNT_NAMES {"search", "insert", "removals", NULL}; +#endif static char const *pf_reasons[PFRES_MAX+1] = PFRES_NAMES; static char const *pf_lcounters[LCNT_MAX+1] = LCNT_NAMES; static char const *pf_fcounters[FCNT_MAX+1] = FCNT_NAMES; -static char const *pf_scounters[FCNT_MAX+1] = FCNT_NAMES; +static char const *pf_scounters[SCNT_MAX+1] = SCNT_NAMES; static char const *pf_device = "/dev/pf"; @@ -86,7 +104,7 @@ static int pf_read (void) close (fd); fd = -1; - if (!status.running) + if (!state.running) { WARNING ("pf plugin: PF is not running."); return (-1);