pf plugin: Define {F,S}CNT_NAMES.
authorFlorian Forster <octo@collectd.org>
Fri, 1 Feb 2013 10:48:31 +0000 (11:48 +0100)
committerFlorian Forster <octo@collectd.org>
Fri, 1 Feb 2013 10:48:31 +0000 (11:48 +0100)
Apparently they are only defined in the pfctl sources, not in the
system's header files for some reason.

src/pf.c

index 0fff672..0332c3c 100644 (file)
--- a/src/pf.c
+++ b/src/pf.c
 #include <err.h>
 #include <pwd.h>
 
+#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";