aboutsummaryrefslogtreecommitdiff
path: root/src/lib/protocols/thunder.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/protocols/thunder.c')
-rw-r--r--src/lib/protocols/thunder.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/protocols/thunder.c b/src/lib/protocols/thunder.c
index ea044909e..30194d153 100644
--- a/src/lib/protocols/thunder.c
+++ b/src/lib/protocols/thunder.c
@@ -39,10 +39,10 @@ static void ndpi_int_thunder_add_connection(struct ndpi_detection_module_struct
ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_THUNDER, NDPI_PROTOCOL_UNKNOWN);
if (src != NULL) {
- src->thunder_ts = packet->tick_timestamp;
+ src->thunder_ts = packet->current_time_ms;
}
if (dst != NULL) {
- dst->thunder_ts = packet->tick_timestamp;
+ dst->thunder_ts = packet->current_time_ms;
}
}
@@ -151,15 +151,15 @@ void ndpi_int_search_thunder_http(struct ndpi_detection_module_struct
if (packet->detected_protocol_stack[0] == NDPI_PROTOCOL_THUNDER) {
if (src != NULL && ((u_int32_t)
- (packet->tick_timestamp - src->thunder_ts) < ndpi_struct->thunder_timeout)) {
+ (packet->current_time_ms - src->thunder_ts) < ndpi_struct->thunder_timeout)) {
NDPI_LOG_DBG2(ndpi_struct,
"thunder : save src connection packet detected\n");
- src->thunder_ts = packet->tick_timestamp;
+ src->thunder_ts = packet->current_time_ms;
} else if (dst != NULL && ((u_int32_t)
- (packet->tick_timestamp - dst->thunder_ts) < ndpi_struct->thunder_timeout)) {
+ (packet->current_time_ms - dst->thunder_ts) < ndpi_struct->thunder_timeout)) {
NDPI_LOG_DBG2(ndpi_struct,
"thunder : save dst connection packet detected\n");
- dst->thunder_ts = packet->tick_timestamp;
+ dst->thunder_ts = packet->current_time_ms;
}
return;
}