diff options
author | Luca Deri <deri@ntop.org> | 2020-07-09 17:24:50 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2020-07-09 17:28:02 +0200 |
commit | 014fdd9a024cae8c8b46334b6557b82b974acacb (patch) | |
tree | 366a71d4680c0e3b6e1a29598ae4468cf8de2a15 /src/include/ndpi_typedefs.h | |
parent | 9d8967236e4e221aa01f7c97eb19303ac8a98474 (diff) |
Various fixes in bins implementation
Added -b flag in ndpiReader to test bins
Diffstat (limited to 'src/include/ndpi_typedefs.h')
-rw-r--r-- | src/include/ndpi_typedefs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index e8f7f6468..e0b338345 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -1510,9 +1510,8 @@ enum ndpi_bin_family { }; struct ndpi_bin { - u_int8_t num_bins; + u_int8_t num_bins, is_empty; enum ndpi_bin_family family; - u_int32_t num_incs; union { u_int8_t *bins8; /* num_bins bins */ |