X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fcommon.h;h=229f7098d6c8948ed69656f5dc30d3e69f47d705;hb=e7a75874a24c1bf19931d5b4b423a0daa7f9be6b;hp=7b9fa0ac658b3cbb33c9498316f6152c3c2b8268;hpb=d48a9456e42af4ab5881ab055c95ceab71819bc1;p=collectd.git diff --git a/src/common.h b/src/common.h index 7b9fa0ac..229f7098 100644 --- a/src/common.h +++ b/src/common.h @@ -282,7 +282,7 @@ int notification_init (notification_t *n, int severity, const char *message, typedef int (*dirwalk_callback_f)(const char *dirname, const char *filename, void *user_data); int walk_directory (const char *dir, dirwalk_callback_f callback, - void *user_data); + void *user_data, int hidden); int read_file_contents (const char *filename, char *buf, int bufsize); counter_t counter_diff (counter_t old_value, counter_t new_value); @@ -291,4 +291,8 @@ counter_t counter_diff (counter_t old_value, counter_t new_value); * (in the range [1-65535]). Returns less than zero on error. */ int service_name_to_port_number (const char *service_name); +/** Parse a string to a derive_t value. Returns zero on success or non-zero on + * failure. If failure is returned, ret_value is not touched. */ +int strtoderive (const char *string, derive_t *ret_value); + #endif /* COMMON_H */