* The same PCI device configuration should be passed to the primary process as
the secondary process uses the same port indexes as the primary.
- * A blacklist / whitelist of NICs isn't supported yet.
+ * A deny-list / allow-list of NICs isn't supported yet.
* Plugin initialization time depends on read interval. It requires 5 read
cycles to set up internal buffers and states. During that time no statistics
are submitted.
=item B<InvertMatch> I<true|false(default)>
The invertmatch value should be use in combination of the Ignore option.
-It changes the behaviour of the Ignore option, from a blacklist behaviour
-when InvertMatch is set to false, to a whitelist when specified to true.
+It changes the behaviour of the Ignore option, from a deny-list behaviour
+when InvertMatch is set to false, to a allow-list when specified to true.
=item B<FilterOID> I<OID>
ssnprintf(buffer, buffer_size, GCM_PREFIX "%s/%s", vl->plugin, vl->type);
}
- char const *whitelist = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ char const *allowlist = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789_/";
char *ptr = buffer + strlen(GCM_PREFIX);
size_t ok_len;
- while ((ok_len = strspn(ptr, whitelist)) != strlen(ptr)) {
+ while ((ok_len = strspn(ptr, allowlist)) != strlen(ptr)) {
ptr[ok_len] = '_';
ptr += ok_len;
}