diff options
author | headshog <124502670+headshog@users.noreply.github.com> | 2023-05-29 20:34:26 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-29 19:34:26 +0200 |
commit | 552c9b3cc6fbffc5767086c1594b2b8f6598365c (patch) | |
tree | 6ebe617601b72a6153d8b1539449ae8e5b770d82 /src/include | |
parent | efb261a95c5a81ddb148f205d74eab3714155f0d (diff) |
fixed numeric truncation error in ndpi_main.c:6837 (#1998)
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/ndpi_typedefs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h index 491de0d79..d857899da 100644 --- a/src/include/ndpi_typedefs.h +++ b/src/include/ndpi_typedefs.h @@ -1152,7 +1152,7 @@ typedef struct { struct ndpi_detection_module_struct { NDPI_PROTOCOL_BITMASK detection_bitmask; - u_int32_t current_ts; + u_int64_t current_ts; u_int16_t max_packets_to_process; u_int16_t num_tls_blocks_to_follow; u_int8_t skip_tls_blocks_until_change_cipher:1, enable_ja3_plus:1, _notused:6; |