X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Futils_cmd_flush.h;h=129aa85e51823918859951b08764a5370969126c;hp=031fcac9c5827375504322e7782b9bddcd014e53;hb=da11ce02eb202b3e01d3e2d1b40f248a84430973;hpb=79963d13c1884d1d92667cc502ad20758b084a12 diff --git a/src/utils_cmd_flush.h b/src/utils_cmd_flush.h index 031fcac9..129aa85e 100644 --- a/src/utils_cmd_flush.h +++ b/src/utils_cmd_flush.h @@ -1,6 +1,6 @@ /** * collectd - src/utils_cmd_flush.h - * Copyright (C) 2008 Sebastian Harl + * Copyright (C) 2008, 2016 Sebastian Harl * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -27,10 +27,16 @@ #ifndef UTILS_CMD_FLUSH_H #define UTILS_CMD_FLUSH_H 1 +#include "utils_cmds.h" + #include -int handle_flush(FILE *fh, char *buffer); +cmd_status_t cmd_parse_flush(size_t argc, char **argv, cmd_flush_t *ret_flush, + const cmd_options_t *opts, + cmd_error_handler_t *err); -#endif /* UTILS_CMD_FLUSH_H */ +cmd_status_t cmd_handle_flush(FILE *fh, char *buffer); -/* vim: set sw=4 ts=4 tw=78 noexpandtab : */ +void cmd_destroy_flush(cmd_flush_t *flush); + +#endif /* UTILS_CMD_FLUSH_H */