diff options
author | headshog <craaaaaachind@gmail.com> | 2023-05-16 19:05:48 +0300 |
---|---|---|
committer | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-05-20 15:09:51 +0200 |
commit | dd7198fcafb419779ab8803a99528d7609bac53d (patch) | |
tree | d07fb46adfc0d5697474fae2c194b6ac4406c47d /example/reader_util.c | |
parent | 5ca6f0ac62d6b2c346bc99d2a1b1200fe9df7917 (diff) |
fixed numeric truncation error
Diffstat (limited to 'example/reader_util.c')
-rw-r--r-- | example/reader_util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/example/reader_util.c b/example/reader_util.c index 97b5cce7e..5d0f4f7f3 100644 --- a/example/reader_util.c +++ b/example/reader_util.c @@ -1505,7 +1505,7 @@ static struct ndpi_proto packet_processing(struct ndpi_workflow * workflow, if(flow->iat_flow && (tdiff.tv_sec >= 0) /* Discard backward time */ ) { - u_int32_t ms = ndpi_timeval_to_milliseconds(tdiff); + u_int64_t ms = ndpi_timeval_to_milliseconds(tdiff); if(ms > 0) ndpi_data_add_value(flow->iat_flow, ms); @@ -1521,7 +1521,7 @@ static struct ndpi_proto packet_processing(struct ndpi_workflow * workflow, if(flow->iat_c_to_s && (tdiff.tv_sec >= 0) /* Discard backward time */ ) { - u_int32_t ms = ndpi_timeval_to_milliseconds(tdiff); + u_int64_t ms = ndpi_timeval_to_milliseconds(tdiff); ndpi_data_add_value(flow->iat_c_to_s, ms); } @@ -1540,7 +1540,7 @@ static struct ndpi_proto packet_processing(struct ndpi_workflow * workflow, ndpi_timer_sub(&when, &flow->dst2src_last_pkt_time, &tdiff); if(flow->iat_s_to_c) { - u_int32_t ms = ndpi_timeval_to_milliseconds(tdiff); + u_int64_t ms = ndpi_timeval_to_milliseconds(tdiff); ndpi_data_add_value(flow->iat_s_to_c, ms); } |