static int pf_read(void);
static void submit_counter(const char *, const char *, counter_t);
-void
-submit_counter(const char *type, const char *inst, counter_t val)
-{
-#ifndef TEST
- value_t values[1];
- value_list_t vl = VALUE_LIST_INIT;
-
- values[0].counter = val;
-
- vl.values = values;
- vl.values_len = 1;
- sstrncpy (vl.host, hostname_g, sizeof (vl.host));
- sstrncpy (vl.plugin, "pf", sizeof (vl.plugin));
- sstrncpy (vl.type, type, sizeof(vl.type));
- sstrncpy (vl.type_instance, inst, sizeof(vl.type_instance));
- plugin_dispatch_values(&vl);
-#else
- printf("%s.%s: %lld\n", type, inst, val);
-#endif
-}
-
-
int
pf_init(void)
{
return (0);
}
+void
+submit_counter(const char *type, const char *inst, counter_t val)
+{
+#ifndef TEST
+ value_t values[1];
+ value_list_t vl = VALUE_LIST_INIT;
+
+ values[0].counter = val;
+
+ vl.values = values;
+ vl.values_len = 1;
+ sstrncpy (vl.host, hostname_g, sizeof (vl.host));
+ sstrncpy (vl.plugin, "pf", sizeof (vl.plugin));
+ sstrncpy (vl.type, type, sizeof(vl.type));
+ sstrncpy (vl.type_instance, inst, sizeof(vl.type_instance));
+ plugin_dispatch_values(&vl);
+#else
+ printf("%s.%s: %lld\n", type, inst, val);
+#endif
+}
+
#ifdef TEST
int
main(int argc, char *argv[])