X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fpf.c;h=4e35cf661403bf4f84c72d462d820301a3cc1a22;hb=c0f5748983a962f7be82bf49ac6c28a59d4658ff;hp=da539a26ec4cd9f6b1026ed39f8903568f97e346;hpb=499cbd1605850e0feca405fb2579064d330eea8f;p=collectd.git diff --git a/src/pf.c b/src/pf.c index da539a26..4e35cf66 100644 --- a/src/pf.c +++ b/src/pf.c @@ -19,18 +19,39 @@ #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 +#if HAVE_NETINET_IN_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 +107,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);