diff options
author | Luca Deri <deri@ntop.org> | 2020-06-26 17:49:45 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2020-06-26 17:49:45 +0200 |
commit | 8de62c6d34cbcd9419f82143aab39aeda0400dde (patch) | |
tree | d00cd38366b490f83092ac677a35cb76630b1881 /src/lib | |
parent | ebfb5e7f01e4c0ab6bd8eb411165cb002443b891 (diff) |
Values stored in patricia tree are now 32 bit (they used to be 16 bit) long
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/third_party/include/ndpi_patricia.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/third_party/include/ndpi_patricia.h b/src/lib/third_party/include/ndpi_patricia.h index 6823c3112..b53253d95 100644 --- a/src/lib/third_party/include/ndpi_patricia.h +++ b/src/lib/third_party/include/ndpi_patricia.h @@ -107,7 +107,7 @@ union patricia_node_value_t { /* User-defined values */ struct { - u_int16_t user_value, additional_user_value; + u_int32_t user_value, additional_user_value; } uv; }; |