From f7548d6d28c313cf80e6f3ef89aed16a19815df1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:51:24 +0200 Subject: Adding upstream version 1:2.3.19.1+dfsg1. Signed-off-by: Daniel Baumann --- src/lib-old-stats/stats-parser.h | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/lib-old-stats/stats-parser.h (limited to 'src/lib-old-stats/stats-parser.h') diff --git a/src/lib-old-stats/stats-parser.h b/src/lib-old-stats/stats-parser.h new file mode 100644 index 0000000..ad701bf --- /dev/null +++ b/src/lib-old-stats/stats-parser.h @@ -0,0 +1,29 @@ +#ifndef STATS_PARSER_H +#define STATS_PARSER_H + +struct stats; + +enum stats_parser_type { + STATS_PARSER_TYPE_UINT, + STATS_PARSER_TYPE_TIMEVAL +}; + +struct stats_parser_field { + const char *name; + unsigned int offset; + unsigned int size; + enum stats_parser_type type; +}; + +bool stats_parser_diff(const struct stats_parser_field *fields, + unsigned int fields_count, + const struct stats *stats1, const struct stats *stats2, + struct stats *diff_stats_r, const char **error_r); +void stats_parser_add(const struct stats_parser_field *fields, + unsigned int fields_count, + struct stats *dest, const struct stats *src); +void stats_parser_value(string_t *str, + const struct stats_parser_field *field, + const void *data); + +#endif -- cgit v1.2.3