X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Futils_cmd_listval.c;h=bca83a9996a220870fd9651555e1d56bad090397;hb=b8f83ce0a28e0d8033c0f3bdc95aeb44a2d17381;hp=6f03e757ac57b5c5d397c12821d7e6d2f45ee8c8;hpb=66e0fe82631c8a8e44ffcad8ffd378fab83bc83f;p=collectd.git diff --git a/src/utils_cmd_listval.c b/src/utils_cmd_listval.c index 6f03e757..bca83a99 100644 --- a/src/utils_cmd_listval.c +++ b/src/utils_cmd_listval.c @@ -25,6 +25,7 @@ #include "utils_cmd_listval.h" #include "utils_cache.h" +#include "utils_parse_option.h" #define print_to_socket(fh, ...) \ if (fprintf (fh, __VA_ARGS__) < 0) { \ @@ -34,20 +35,36 @@ return -1; \ } -int handle_listval (FILE *fh, char **fields, int fields_num) +int handle_listval (FILE *fh, char *buffer) { + char *command; char **names = NULL; time_t *times = NULL; size_t number = 0; size_t i; int status; - if (fields_num != 1) + DEBUG ("utils_cmd_listval: handle_listval (fh = %p, buffer = %s);", + (void *) fh, buffer); + + command = NULL; + status = parse_string (&buffer, &command); + if (status != 0) + { + print_to_socket (fh, "-1 Cannot parse command.\n"); + return (-1); + } + assert (command != NULL); + + if (strcasecmp ("LISTVAL", command) != 0) + { + print_to_socket (fh, "-1 Unexpected command: `%s'.\n", command); + return (-1); + } + + if (*buffer != 0) { - DEBUG ("command listval: us_handle_listval: Wrong number of fields: %i", - fields_num); - print_to_socket (fh, "-1 Wrong number of fields: Got %i, expected 1.\n", - fields_num); + print_to_socket (fh, "-1 Garbage after end of command: %s\n", buffer); return (-1); }