From 9f3e3e8456f204edfc2d626b6473bb2278a1b9cb Mon Sep 17 00:00:00 2001 From: Luca Deri Date: Wed, 15 Jul 2020 10:30:45 +0200 Subject: Add ndpi_hll_reset() API call Fixes bug in ndpi_data_window_average() with zero points --- src/include/ndpi_api.h.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/include/ndpi_api.h.in') diff --git a/src/include/ndpi_api.h.in b/src/include/ndpi_api.h.in index 4b36fd3b2..c272d66c8 100644 --- a/src/include/ndpi_api.h.in +++ b/src/include/ndpi_api.h.in @@ -1059,7 +1059,8 @@ extern "C" { /* Memory lifecycle */ int ndpi_hll_init(struct ndpi_hll *hll, u_int8_t bits); void ndpi_hll_destroy(struct ndpi_hll *hll); - + void ndpi_hll_reset(struct ndpi_hll *hll); + /* Add values */ void ndpi_hll_add(struct ndpi_hll *hll, const char *data, size_t data_len); void ndpi_hll_add_number(struct ndpi_hll *hll, u_int32_t value) ; -- cgit v1.2.3