diff options
author | lns <matzeton@googlemail.com> | 2022-04-24 23:49:57 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2022-04-24 23:49:57 +0200 |
commit | a46fc4153d0dd6b400c49a8f6d1e794f0d940ab7 (patch) | |
tree | cf67ab3e1cd672941f8d12ec19de11c2300d7254 | |
parent | 22a8d04c748ff3e04ca11c5c29b4433c7136f5f5 (diff) |
nDPId: Merged nDPId_flow_(info|finished) into nDPId_flow
* nDPIsrvd: Fixed buffer allocation error due to missing memset() on disconnect
* nDPIsrvd: Removed unused struct members
Signed-off-by: lns <matzeton@googlemail.com>
310 files changed, 747 insertions, 756 deletions
diff --git a/dependencies/nDPIsrvd.h b/dependencies/nDPIsrvd.h index 390dd1416..b8076d919 100644 --- a/dependencies/nDPIsrvd.h +++ b/dependencies/nDPIsrvd.h @@ -394,6 +394,8 @@ static inline void nDPIsrvd_buffer_free(struct nDPIsrvd_buffer * const buffer) { nDPIsrvd_free(buffer->ptr.raw); buffer->ptr.raw = NULL; + buffer->used = 0; + buffer->max = 0; } static inline int nDPIsrvd_json_buffer_init(struct nDPIsrvd_json_buffer * const json_buffer, size_t json_buffer_size) @@ -412,6 +414,9 @@ static inline int nDPIsrvd_json_buffer_init(struct nDPIsrvd_json_buffer * const static inline void nDPIsrvd_json_buffer_free(struct nDPIsrvd_json_buffer * const json_buffer) { nDPIsrvd_buffer_free(&json_buffer->buf); + json_buffer->json_string_start = 0ul; + json_buffer->json_string_length = 0ull; + json_buffer->json_string = NULL; } static inline struct nDPIsrvd_socket * nDPIsrvd_socket_init(size_t global_user_data_size, @@ -154,38 +154,30 @@ struct nDPId_detection_data struct ndpi_flow_struct flow; }; -struct nDPId_flow_info +struct nDPId_flow { struct nDPId_flow_extended flow_extended; - uint8_t detection_completed : 1; - uint8_t reserved_00 : 7; - uint8_t reserved_01[1]; + union + { + struct + { + uint8_t detection_completed : 1; + uint8_t reserved_00 : 7; + uint8_t reserved_01[1]; #ifdef ENABLE_ZLIB - uint16_t detection_data_compressed_size; -#else - uint16_t reserved_02; + uint16_t detection_data_compressed_size; #endif - struct nDPId_detection_data * detection_data; - uint32_t reserved_03; // required to re-use that memory for `struct nDPId_flow_finished' -}; - -struct nDPId_flow_finished -{ - struct nDPId_flow_extended flow_extended; - - ndpi_risk risk; - ndpi_confidence_t confidence; + struct nDPId_detection_data * detection_data; + } info; + struct + { + ndpi_risk risk; + ndpi_confidence_t confidence; + } finished; + }; }; -/* TODO: Merge `struct nDPId_flow_info' with `struct nDPId_flow_finished' and use a union instead? */ -_Static_assert(sizeof(struct nDPId_flow_finished) <= sizeof(struct nDPId_flow_info), - "The size of struct nDPId_flow_finished needs be smaller or equal " - "than the size of struct nDPId_flow_info." - "Otherwise some code parts need to be changed." - "This is required to make the transition from `struct nDPId_flow_info' " - "to `struct nDPId_flow_finished' work."); - struct nDPId_workflow { pcap_t * pcap_handle; @@ -499,7 +491,7 @@ static void jsonize_flow_event(struct nDPId_reader_thread * const reader_thread, struct nDPId_flow_extended * const flow_ext, enum flow_event event); static void jsonize_flow_detection_event(struct nDPId_reader_thread * const reader_thread, - struct nDPId_flow_info * const flow_info, + struct nDPId_flow * const flow, enum flow_event event); #ifdef ENABLE_ZLIB @@ -590,17 +582,17 @@ static int zlib_inflate(const void * src, int srcLen, void * dst, int dstLen) return ret; } -static int detection_data_deflate(struct nDPId_flow_info * const flow_info) +static int detection_data_deflate(struct nDPId_flow * const flow) { - uint8_t tmpOut[sizeof(*flow_info->detection_data)]; + uint8_t tmpOut[sizeof(*flow->info.detection_data)]; int ret; - if (flow_info->detection_data_compressed_size > 0) + if (flow->info.detection_data_compressed_size > 0) { return -7; } - ret = zlib_deflate(flow_info->detection_data, sizeof(*flow_info->detection_data), tmpOut, sizeof(tmpOut)); + ret = zlib_deflate(flow->info.detection_data, sizeof(*flow->info.detection_data), tmpOut, sizeof(tmpOut)); if (ret <= 0) { return ret; @@ -611,26 +603,26 @@ static int detection_data_deflate(struct nDPId_flow_info * const flow_info) { return -8; } - ndpi_free(flow_info->detection_data); - flow_info->detection_data = new_det_data; + ndpi_free(flow->info.detection_data); + flow->info.detection_data = new_det_data; - memcpy(flow_info->detection_data, tmpOut, ret); - flow_info->detection_data_compressed_size = ret; + memcpy(flow->info.detection_data, tmpOut, ret); + flow->info.detection_data_compressed_size = ret; return ret; } -static int detection_data_inflate(struct nDPId_flow_info * const flow_info) +static int detection_data_inflate(struct nDPId_flow * const flow) { - uint8_t tmpOut[sizeof(*flow_info->detection_data)]; + uint8_t tmpOut[sizeof(*flow->info.detection_data)]; int ret; - if (flow_info->detection_data_compressed_size == 0) + if (flow->info.detection_data_compressed_size == 0) { return -7; } - ret = zlib_inflate(flow_info->detection_data, flow_info->detection_data_compressed_size, tmpOut, sizeof(tmpOut)); + ret = zlib_inflate(flow->info.detection_data, flow->info.detection_data_compressed_size, tmpOut, sizeof(tmpOut)); if (ret <= 0) { return ret; @@ -641,11 +633,11 @@ static int detection_data_inflate(struct nDPId_flow_info * const flow_info) { return -8; } - ndpi_free(flow_info->detection_data); - flow_info->detection_data = new_det_data; + ndpi_free(flow->info.detection_data); + flow->info.detection_data = new_det_data; - memcpy(flow_info->detection_data, tmpOut, ret); - flow_info->detection_data_compressed_size = 0; + memcpy(flow->info.detection_data, tmpOut, ret); + flow->info.detection_data_compressed_size = 0; return ret; } @@ -677,20 +669,20 @@ static void ndpi_comp_scan_walker(void const * const A, ndpi_VISIT which, int de { if (flow_basic->last_seen + nDPId_options.compression_flow_inactivity < workflow->last_thread_time) { - struct nDPId_flow_info * const flow_info = (struct nDPId_flow_info *)flow_basic; + struct nDPId_flow * const flow = (struct nDPId_flow *)flow_basic; - if (flow_info->detection_data_compressed_size > 0) + if (flow->info.detection_data_compressed_size > 0) { break; } - int ret = detection_data_deflate(flow_info); + int ret = detection_data_deflate(flow); if (ret <= 0) { logger(1, "zLib compression failed for flow %llu with error code: %d", - flow_info->flow_extended.flow_id, + flow->flow_extended.flow_id, ret); } else @@ -1189,27 +1181,27 @@ static struct nDPId_workflow * init_workflow(char const * const file_or_device) return workflow; } -static void free_detection_data(struct nDPId_flow_info * const flow_info) +static void free_detection_data(struct nDPId_flow * const flow) { - ndpi_free_flow_data(&flow_info->detection_data->flow); - ndpi_free(flow_info->detection_data); - flow_info->detection_data = NULL; + ndpi_free_flow_data(&flow->info.detection_data->flow); + ndpi_free(flow->info.detection_data); + flow->info.detection_data = NULL; } -static int alloc_detection_data(struct nDPId_flow_info * const flow_info) +static int alloc_detection_data(struct nDPId_flow * const flow) { - flow_info->detection_data = (struct nDPId_detection_data *)ndpi_flow_malloc(sizeof(*flow_info->detection_data)); + flow->info.detection_data = (struct nDPId_detection_data *)ndpi_flow_malloc(sizeof(*flow->info.detection_data)); - if (flow_info->detection_data == NULL) + if (flow->info.detection_data == NULL) { goto error; } - memset(flow_info->detection_data, 0, sizeof(*flow_info->detection_data)); + memset(flow->info.detection_data, 0, sizeof(*flow->info.detection_data)); return 0; error: - free_detection_data(flow_info); + free_detection_data(flow); return 1; } @@ -1228,8 +1220,8 @@ static void ndpi_flow_info_freer(void * const node) case FS_INFO: { - struct nDPId_flow_info * const flow_info = (struct nDPId_flow_info *)flow_basic; - free_detection_data(flow_info); + struct nDPId_flow * const flow = (struct nDPId_flow *)flow_basic; + free_detection_data(flow); break; } } @@ -1555,46 +1547,46 @@ static void process_idle_flow(struct nDPId_reader_thread * const reader_thread, case FS_FINISHED: { - struct nDPId_flow_finished * const flow_finished = (struct nDPId_flow_finished *)flow_basic; + struct nDPId_flow * const flow = (struct nDPId_flow *)flow_basic; - if (flow_basic->tcp_fin_rst_seen != 0) + if (flow->flow_extended.flow_basic.tcp_fin_rst_seen != 0) { - jsonize_flow_event(reader_thread, &flow_finished->flow_extended, FLOW_EVENT_END); + jsonize_flow_event(reader_thread, &flow->flow_extended, FLOW_EVENT_END); } else { - jsonize_flow_event(reader_thread, &flow_finished->flow_extended, FLOW_EVENT_IDLE); + jsonize_flow_event(reader_thread, &flow->flow_extended, FLOW_EVENT_IDLE); } break; } case FS_INFO: { - struct nDPId_flow_info * const flow_info = (struct nDPId_flow_info *)flow_basic; + struct nDPId_flow * const flow = (struct nDPId_flow *)flow_basic; #ifdef ENABLE_ZLIB - if (nDPId_options.enable_zlib_compression != 0 && flow_info->detection_data_compressed_size > 0) + if (nDPId_options.enable_zlib_compression != 0 && flow->info.detection_data_compressed_size > 0) { - workflow->current_compression_diff -= flow_info->detection_data_compressed_size; - int ret = detection_data_inflate(flow_info); + workflow->current_compression_diff -= flow->info.detection_data_compressed_size; + int ret = detection_data_inflate(flow); if (ret <= 0) { - workflow->current_compression_diff += flow_info->detection_data_compressed_size; + workflow->current_compression_diff += flow->info.detection_data_compressed_size; logger(1, "zLib decompression failed with error code: %d", ret); return; } } #endif - if (flow_info->detection_completed == 0) + if (flow->info.detection_completed == 0) { uint8_t protocol_was_guessed = 0; if (ndpi_is_protocol_detected(workflow->ndpi_struct, - flow_info->detection_data->guessed_l7_protocol) == 0) + flow->info.detection_data->guessed_l7_protocol) == 0) { - flow_info->detection_data->guessed_l7_protocol = ndpi_detection_giveup( - workflow->ndpi_struct, &flow_info->detection_data->flow, 1, &protocol_was_guessed); + flow->info.detection_data->guessed_l7_protocol = ndpi_detection_giveup( + workflow->ndpi_struct, &flow->info.detection_data->flow, 1, &protocol_was_guessed); } else { @@ -1604,21 +1596,21 @@ static void process_idle_flow(struct nDPId_reader_thread * const reader_thread, if (protocol_was_guessed != 0) { workflow->total_guessed_flows++; - jsonize_flow_detection_event(reader_thread, flow_info, FLOW_EVENT_GUESSED); + jsonize_flow_detection_event(reader_thread, flow, FLOW_EVENT_GUESSED); } else { workflow->total_not_detected_flows++; - jsonize_flow_detection_event(reader_thread, flow_info, FLOW_EVENT_NOT_DETECTED); + jsonize_flow_detection_event(reader_thread, flow, FLOW_EVENT_NOT_DETECTED); } } - if (flow_basic->tcp_fin_rst_seen != 0) + if (flow->flow_extended.flow_basic.tcp_fin_rst_seen != 0) { - jsonize_flow_event(reader_thread, &flow_info->flow_extended, FLOW_EVENT_END); + jsonize_flow_event(reader_thread, &flow->flow_extended, FLOW_EVENT_END); } else { - jsonize_flow_event(reader_thread, &flow_info->flow_extended, FLOW_EVENT_IDLE); + jsonize_flow_event(reader_thread, &flow->flow_extended, FLOW_EVENT_IDLE); } break; } @@ -2306,13 +2298,13 @@ static void jsonize_flow_event(struct nDPId_reader_thread * const reader_thread, if (flow_ext->flow_basic.state == FS_FINISHED) { - struct nDPId_flow_finished * const flow_finished = (struct nDPId_flow_finished *)flow_ext; + struct nDPId_flow * const flow = (struct nDPId_flow *)flow_ext; ndpi_serialize_proto(workflow->ndpi_struct, &workflow->ndpi_serializer, - flow_finished->risk, - flow_finished->confidence, - flow_finished->flow_extended.detected_l7_protocol); + flow->finished.risk, + flow->finished.confidence, + flow->flow_extended.detected_l7_protocol); } break; @@ -2331,7 +2323,7 @@ static void jsonize_flow_event(struct nDPId_reader_thread * const reader_thread, } static void jsonize_flow_detection_event(struct nDPId_reader_thread * const reader_thread, - struct nDPId_flow_info * const flow_info, + struct nDPId_flow * const flow, enum flow_event event) { struct nDPId_workflow * const workflow = reader_thread->workflow; @@ -2347,8 +2339,8 @@ static void jsonize_flow_detection_event(struct nDPId_reader_thread * const read ndpi_serialize_string_string(&workflow->ndpi_serializer, ev, flow_event_name_table[FLOW_EVENT_INVALID]); } jsonize_basic(reader_thread, 1); - jsonize_flow(workflow, &flow_info->flow_extended); - jsonize_l3_l4(workflow, &flow_info->flow_extended.flow_basic); + jsonize_flow(workflow, &flow->flow_extended); + jsonize_l3_l4(workflow, &flow->flow_extended.flow_basic); switch (event) { @@ -2363,34 +2355,34 @@ static void jsonize_flow_detection_event(struct nDPId_reader_thread * const read logger(1, "[%8llu, %4llu] internal error / invalid function call", workflow->packets_captured, - flow_info->flow_extended.flow_id); + flow->flow_extended.flow_id); break; case FLOW_EVENT_NOT_DETECTED: case FLOW_EVENT_GUESSED: if (ndpi_dpi2json(workflow->ndpi_struct, - &flow_info->detection_data->flow, - flow_info->detection_data->guessed_l7_protocol, + &flow->info.detection_data->flow, + flow->info.detection_data->guessed_l7_protocol, &workflow->ndpi_serializer) != 0) { logger(1, "[%8llu, %4llu] ndpi_dpi2json failed for not-detected/guessed flow", workflow->packets_captured, - flow_info->flow_extended.flow_id); + flow->flow_extended.flow_id); } break; case FLOW_EVENT_DETECTED: case FLOW_EVENT_DETECTION_UPDATE: if (ndpi_dpi2json(workflow->ndpi_struct, - &flow_info->detection_data->flow, - flow_info->flow_extended.detected_l7_protocol, + &flow->info.detection_data->flow, + flow->flow_extended.detected_l7_protocol, &workflow->ndpi_serializer) != 0) { logger(1, "[%8llu, %4llu] ndpi_dpi2json failed for detected/detection-update flow", workflow->packets_captured, - flow_info->flow_extended.flow_id); + flow->flow_extended.flow_id); } break; } @@ -3014,7 +3006,7 @@ static struct nDPId_flow_basic * add_new_flow(struct nDPId_workflow * const work break; case FS_INFO: - s = sizeof(struct nDPId_flow_info); + s = sizeof(struct nDPId_flow); break; } @@ -3079,7 +3071,7 @@ static void ndpi_process_packet(uint8_t * const args, size_t hashed_index; void * tree_result; - struct nDPId_flow_info * flow_to_process; + struct nDPId_flow * flow_to_process; uint8_t is_new_flow = 0; @@ -3505,7 +3497,7 @@ static void ndpi_process_packet(uint8_t * const args, } workflow->max_flow_to_track_reached = 0; - flow_to_process = (struct nDPId_flow_info *)add_new_flow(workflow, &flow_basic, FS_INFO, hashed_index); + flow_to_process = (struct nDPId_flow *)add_new_flow(workflow, &flow_basic, FS_INFO, hashed_index); if (flow_to_process == NULL) { if (workflow->flow_allocation_already_failed == 0) @@ -3567,18 +3559,18 @@ static void ndpi_process_packet(uint8_t * const args, case FS_INFO: break; } - flow_to_process = (struct nDPId_flow_info *)flow_basic_to_process; + flow_to_process = (struct nDPId_flow *)flow_basic_to_process; if (flow_to_process->flow_extended.flow_basic.state == FS_INFO) { #ifdef ENABLE_ZLIB - if (nDPId_options.enable_zlib_compression != 0 && flow_to_process->detection_data_compressed_size > 0) + if (nDPId_options.enable_zlib_compression != 0 && flow_to_process->info.detection_data_compressed_size > 0) { - workflow->current_compression_diff -= flow_to_process->detection_data_compressed_size; + workflow->current_compression_diff -= flow_to_process->info.detection_data_compressed_size; int ret = detection_data_inflate(flow_to_process); if (ret <= 0) { - workflow->current_compression_diff += flow_to_process->detection_data_compressed_size; + workflow->current_compression_diff += flow_to_process->info.detection_data_compressed_size; logger(1, "zLib decompression failed for existing flow %llu with error code: %d", flow_to_process->flow_extended.flow_id, @@ -3632,9 +3624,10 @@ static void ndpi_process_packet(uint8_t * const args, return; } - if (flow_to_process->detection_data->flow.num_processed_pkts == nDPId_options.max_packets_per_flow_to_process - 1) + if (flow_to_process->info.detection_data->flow.num_processed_pkts == + nDPId_options.max_packets_per_flow_to_process - 1) { - if (flow_to_process->detection_completed != 0) + if (flow_to_process->info.detection_completed != 0) { reader_thread->workflow->total_flow_detection_updates++; jsonize_flow_detection_event(reader_thread, flow_to_process, FLOW_EVENT_DETECTION_UPDATE); @@ -3643,8 +3636,8 @@ static void ndpi_process_packet(uint8_t * const args, { /* last chance to guess something, better then nothing */ uint8_t protocol_was_guessed = 0; - flow_to_process->detection_data->guessed_l7_protocol = ndpi_detection_giveup( - workflow->ndpi_struct, &flow_to_process->detection_data->flow, 1, &protocol_was_guessed); + flow_to_process->info.detection_data->guessed_l7_protocol = ndpi_detection_giveup( + workflow->ndpi_struct, &flow_to_process->info.detection_data->flow, 1, &protocol_was_guessed); if (protocol_was_guessed != 0) { workflow->total_guessed_flows++; @@ -3660,51 +3653,52 @@ static void ndpi_process_packet(uint8_t * const args, flow_to_process->flow_extended.detected_l7_protocol = ndpi_detection_process_packet(workflow->ndpi_struct, - &flow_to_process->detection_data->flow, + &flow_to_process->info.detection_data->flow, ip != NULL ? (uint8_t *)ip : (uint8_t *)ip6, ip_size, workflow->last_thread_time); if (ndpi_is_protocol_detected(workflow->ndpi_struct, flow_to_process->flow_extended.detected_l7_protocol) != 0 && - flow_to_process->detection_completed == 0) + flow_to_process->info.detection_completed == 0) { - flow_to_process->detection_completed = 1; + flow_to_process->info.detection_completed = 1; workflow->total_detected_flows++; jsonize_flow_detection_event(reader_thread, flow_to_process, FLOW_EVENT_DETECTED); - flow_to_process->detection_data->last_ndpi_flow_struct_hash = - calculate_ndpi_flow_struct_hash(&flow_to_process->detection_data->flow); + flow_to_process->info.detection_data->last_ndpi_flow_struct_hash = + calculate_ndpi_flow_struct_hash(&flow_to_process->info.detection_data->flow); } - else if (flow_to_process->detection_completed == 1) + else if (flow_to_process->info.detection_completed == 1) { - uint32_t hash = calculate_ndpi_flow_struct_hash(&flow_to_process->detection_data->flow); - if (hash != flow_to_process->detection_data->last_ndpi_flow_struct_hash) + uint32_t hash = calculate_ndpi_flow_struct_hash(&flow_to_process->info.detection_data->flow); + if (hash != flow_to_process->info.detection_data->last_ndpi_flow_struct_hash) { workflow->total_flow_detection_updates++; jsonize_flow_detection_event(reader_thread, flow_to_process, FLOW_EVENT_DETECTION_UPDATE); - flow_to_process->detection_data->last_ndpi_flow_struct_hash = hash; + flow_to_process->info.detection_data->last_ndpi_flow_struct_hash = hash; } } - if (flow_to_process->detection_data->flow.num_processed_pkts == nDPId_options.max_packets_per_flow_to_process || - (flow_to_process->detection_completed == 1 && - ndpi_extra_dissection_possible(workflow->ndpi_struct, &flow_to_process->detection_data->flow) == 0)) + if (flow_to_process->info.detection_data->flow.num_processed_pkts == + nDPId_options.max_packets_per_flow_to_process || + (flow_to_process->info.detection_completed == 1 && + ndpi_extra_dissection_possible(workflow->ndpi_struct, &flow_to_process->info.detection_data->flow) == 0)) { struct ndpi_proto detected_l7_protocol = flow_to_process->flow_extended.detected_l7_protocol; if (ndpi_is_protocol_detected(workflow->ndpi_struct, detected_l7_protocol) == 0) { - detected_l7_protocol = flow_to_process->detection_data->guessed_l7_protocol; + detected_l7_protocol = flow_to_process->info.detection_data->guessed_l7_protocol; } - ndpi_risk risk = flow_to_process->detection_data->flow.risk; - ndpi_confidence_t confidence = flow_to_process->detection_data->flow.confidence; + ndpi_risk risk = flow_to_process->info.detection_data->flow.risk; + ndpi_confidence_t confidence = flow_to_process->info.detection_data->flow.confidence; free_detection_data(flow_to_process); flow_to_process->flow_extended.flow_basic.state = FS_FINISHED; - struct nDPId_flow_finished * const flow_finished = (struct nDPId_flow_finished *)flow_to_process; - flow_finished->flow_extended.detected_l7_protocol = detected_l7_protocol; - flow_finished->risk = risk; - flow_finished->confidence = confidence; + struct nDPId_flow * const flow = (struct nDPId_flow *)flow_to_process; + flow->flow_extended.detected_l7_protocol = detected_l7_protocol; + flow->finished.risk = risk; + flow->finished.confidence = confidence; } #ifdef ENABLE_ZLIB @@ -3748,17 +3742,17 @@ static void ndpi_log_flow_walker(void const * const A, ndpi_VISIT which, int dep case FS_FINISHED: { - struct nDPId_flow_finished const * const flow_fin = (struct nDPId_flow_finished *)flow_basic; + struct nDPId_flow const * const flow = (struct nDPId_flow *)flow_basic; - uint64_t last_seen = flow_fin->flow_extended.flow_basic.last_seen; - uint64_t idle_time = get_l4_protocol_idle_time_external(flow_fin->flow_extended.flow_basic.l4_protocol); + uint64_t last_seen = flow->flow_extended.flow_basic.last_seen; + uint64_t idle_time = get_l4_protocol_idle_time_external(flow->flow_extended.flow_basic.l4_protocol); logger(0, "[%2zu][%4llu][last-seen: %13llu][last-update: %13llu][idle-time: %7llu][time-until-timeout: " "%7llu]", reader_thread->array_index, - flow_fin->flow_extended.flow_id, + flow->flow_extended.flow_id, (unsigned long long int)last_seen, - (unsigned long long int)flow_fin->flow_extended.last_flow_update, + (unsigned long long int)flow->flow_extended.last_flow_update, (unsigned long long int)idle_time, (unsigned long long int)(last_seen + idle_time >= reader_thread->workflow->last_thread_time ? last_seen + idle_time - reader_thread->workflow->last_thread_time @@ -3768,18 +3762,17 @@ static void ndpi_log_flow_walker(void const * const A, ndpi_VISIT which, int dep case FS_INFO: { - struct nDPId_flow_info const * const flow_info = (struct nDPId_flow_info *)flow_basic; + struct nDPId_flow const * const flow = (struct nDPId_flow *)flow_basic; - uint64_t last_seen = flow_info->flow_extended.flow_basic.last_seen; - uint64_t idle_time = - get_l4_protocol_idle_time_external(flow_info->flow_extended.flow_basic.l4_protocol); + uint64_t last_seen = flow->flow_extended.flow_basic.last_seen; + uint64_t idle_time = get_l4_protocol_idle_time_external(flow->flow_extended.flow_basic.l4_protocol); logger(0, "[%2zu][%4llu][last-seen: %13llu][last-update: %13llu][idle-time: %7llu][time-until-timeout: " "%7llu]", reader_thread->array_index, - flow_info->flow_extended.flow_id, + flow->flow_extended.flow_id, (unsigned long long int)last_seen, - (unsigned long long int)flow_info->flow_extended.last_flow_update, + (unsigned long long int)flow->flow_extended.last_flow_update, (unsigned long long int)idle_time, (unsigned long long int)(last_seen + idle_time >= reader_thread->workflow->last_thread_time ? last_seen + idle_time - reader_thread->workflow->last_thread_time @@ -4764,9 +4757,7 @@ int main(int argc, char ** argv) #ifdef ENABLE_MEMORY_PROFILING logger_early(0, "size/workflow...: %zu bytes", sizeof(struct nDPId_workflow)); - logger_early(0, - "size/flow.......: %zu bytes", - sizeof(struct nDPId_flow_info) + sizeof(struct nDPId_detection_data)); + logger_early(0, "size/flow.......: %zu bytes", sizeof(struct nDPId_flow) + sizeof(struct nDPId_detection_data)); #endif if (setup_reader_threads() != 0) diff --git a/nDPIsrvd.c b/nDPIsrvd.c index 424419c9e..37894be88 100644 --- a/nDPIsrvd.c +++ b/nDPIsrvd.c @@ -41,7 +41,6 @@ struct remote_desc { struct { - int collector_sockfd; struct sockaddr_un peer; unsigned long long int json_bytes; pid_t pid; @@ -50,7 +49,6 @@ struct remote_desc } event_collector_un; struct { - int distributor_sockfd; struct sockaddr_un peer; pid_t pid; char * user_name; @@ -60,7 +58,6 @@ struct remote_desc } event_distributor_un; /* UNIX socket */ struct { - int distributor_sockfd; struct sockaddr_in peer; char peer_addr[INET_ADDRSTRLEN]; @@ -135,6 +132,7 @@ static void nDPIsrvd_buffer_array_dtor(void * elt) struct nDPIsrvd_write_buffer * const buf_dst = (struct nDPIsrvd_write_buffer *)elt; nDPIsrvd_buffer_free(&buf_dst->buf); + buf_dst->written = 0; } static const UT_icd nDPIsrvd_buffer_array_icd = {sizeof(struct nDPIsrvd_write_buffer), @@ -679,13 +677,10 @@ static void free_remote(int epollfd, struct remote_desc * remote) } if (remote->event_distributor_un.additional_write_buffers != NULL) { - utarray_clear(remote->event_distributor_un.additional_write_buffers); + utarray_free(remote->event_distributor_un.additional_write_buffers); } nDPIsrvd_buffer_free(&remote->event_distributor_un.main_write_buffer.buf); - remote->event_distributor_un.main_write_buffer.written = 0; - free(remote->event_distributor_un.user_name); - remote->event_distributor_un.user_name = NULL; break; case DISTRIBUTOR_IN: if (errno != 0) @@ -694,13 +689,13 @@ static void free_remote(int epollfd, struct remote_desc * remote) } if (remote->event_distributor_in.additional_write_buffers != NULL) { - utarray_clear(remote->event_distributor_in.additional_write_buffers); + utarray_free(remote->event_distributor_in.additional_write_buffers); } nDPIsrvd_buffer_free(&remote->event_distributor_in.main_write_buffer.buf); - remote->event_distributor_in.main_write_buffer.written = 0; break; } + memset(remote, 0, sizeof(*remote)); remote->fd = -1; remotes.desc_used--; } diff --git a/test/results/1kxun.pcap.out b/test/results/1kxun.pcap.out index 777fcb4c5..21a8f7bcb 100644 --- a/test/results/1kxun.pcap.out +++ b/test/results/1kxun.pcap.out @@ -701,8 +701,8 @@ ~~ total active/idle flows...: 129/129 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5325981 bytes -~~ total memory freed........: 5325981 bytes +~~ total memory allocated....: 5324949 bytes +~~ total memory freed........: 5324949 bytes ~~ total allocations/frees...: 115212/115212 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 458 chars diff --git a/test/results/443-chrome.pcap.out b/test/results/443-chrome.pcap.out index 0707d9454..31e383385 100644 --- a/test/results/443-chrome.pcap.out +++ b/test/results/443-chrome.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102886 bytes -~~ total memory freed........: 5102886 bytes +~~ total memory allocated....: 5102878 bytes +~~ total memory freed........: 5102878 bytes ~~ total allocations/frees...: 113315/113315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/443-curl.pcap.out b/test/results/443-curl.pcap.out index 0b97c350b..26f1cbe9d 100644 --- a/test/results/443-curl.pcap.out +++ b/test/results/443-curl.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5108886 bytes -~~ total memory freed........: 5108886 bytes +~~ total memory allocated....: 5108878 bytes +~~ total memory freed........: 5108878 bytes ~~ total allocations/frees...: 113428/113428 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/443-firefox.pcap.out b/test/results/443-firefox.pcap.out index 8ab707821..589f26645 100644 --- a/test/results/443-firefox.pcap.out +++ b/test/results/443-firefox.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5125122 bytes -~~ total memory freed........: 5125122 bytes +~~ total memory allocated....: 5125114 bytes +~~ total memory freed........: 5125114 bytes ~~ total allocations/frees...: 113987/113987 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 467 chars diff --git a/test/results/443-git.pcap.out b/test/results/443-git.pcap.out index 01cba0337..5ccccb4a8 100644 --- a/test/results/443-git.pcap.out +++ b/test/results/443-git.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111265 bytes -~~ total memory freed........: 5111265 bytes +~~ total memory allocated....: 5111257 bytes +~~ total memory freed........: 5111257 bytes ~~ total allocations/frees...: 113391/113391 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/443-opvn.pcap.out b/test/results/443-opvn.pcap.out index 6412c77af..c5e4e63d9 100644 --- a/test/results/443-opvn.pcap.out +++ b/test/results/443-opvn.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5104191 bytes -~~ total memory freed........: 5104191 bytes +~~ total memory allocated....: 5104183 bytes +~~ total memory freed........: 5104183 bytes ~~ total allocations/frees...: 113360/113360 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/443-safari.pcap.out b/test/results/443-safari.pcap.out index 0a2f9055c..23bcd5d5a 100644 --- a/test/results/443-safari.pcap.out +++ b/test/results/443-safari.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5106944 bytes -~~ total memory freed........: 5106944 bytes +~~ total memory allocated....: 5106936 bytes +~~ total memory freed........: 5106936 bytes ~~ total allocations/frees...: 113360/113360 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/4in6tunnel.pcap.out b/test/results/4in6tunnel.pcap.out index 6865e0833..91e329a6d 100644 --- a/test/results/4in6tunnel.pcap.out +++ b/test/results/4in6tunnel.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100925 bytes -~~ total memory freed........: 5100925 bytes +~~ total memory allocated....: 5100917 bytes +~~ total memory freed........: 5100917 bytes ~~ total allocations/frees...: 113317/113317 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/6in4tunnel.pcap.out b/test/results/6in4tunnel.pcap.out index c353bb6ad..590631418 100644 --- a/test/results/6in4tunnel.pcap.out +++ b/test/results/6in4tunnel.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5104492 bytes -~~ total memory freed........: 5104492 bytes +~~ total memory allocated....: 5104484 bytes +~~ total memory freed........: 5104484 bytes ~~ total allocations/frees...: 113440/113440 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/6in6tunnel.pcap.out b/test/results/6in6tunnel.pcap.out index 333feed8c..17333bc27 100644 --- a/test/results/6in6tunnel.pcap.out +++ b/test/results/6in6tunnel.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101739 bytes -~~ total memory freed........: 5101739 bytes +~~ total memory allocated....: 5101723 bytes +~~ total memory freed........: 5101723 bytes ~~ total allocations/frees...: 113318/113318 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/BGP_Cisco_hdlc_slarp.pcap.out b/test/results/BGP_Cisco_hdlc_slarp.pcap.out index d82f132e1..e37757432 100644 --- a/test/results/BGP_Cisco_hdlc_slarp.pcap.out +++ b/test/results/BGP_Cisco_hdlc_slarp.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101215 bytes -~~ total memory freed........: 5101215 bytes +~~ total memory allocated....: 5101207 bytes +~~ total memory freed........: 5101207 bytes ~~ total allocations/frees...: 113327/113327 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 453 chars diff --git a/test/results/BGP_redist.pcap.out b/test/results/BGP_redist.pcap.out index 686966d2b..529c64952 100644 --- a/test/results/BGP_redist.pcap.out +++ b/test/results/BGP_redist.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 192 chars diff --git a/test/results/EAQ.pcap.out b/test/results/EAQ.pcap.out index 107de09ca..a58bd880b 100644 --- a/test/results/EAQ.pcap.out +++ b/test/results/EAQ.pcap.out @@ -195,8 +195,8 @@ ~~ total active/idle flows...: 31/31 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5132783 bytes -~~ total memory freed........: 5132783 bytes +~~ total memory allocated....: 5132535 bytes +~~ total memory freed........: 5132535 bytes ~~ total allocations/frees...: 113606/113606 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 449 chars diff --git a/test/results/FAX-Call-t38-CA-TDM-SIP-FB-1.pcap.out b/test/results/FAX-Call-t38-CA-TDM-SIP-FB-1.pcap.out index 188121c37..7c726ef52 100644 --- a/test/results/FAX-Call-t38-CA-TDM-SIP-FB-1.pcap.out +++ b/test/results/FAX-Call-t38-CA-TDM-SIP-FB-1.pcap.out @@ -39,8 +39,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5313590 bytes -~~ total memory freed........: 5313590 bytes +~~ total memory allocated....: 5313550 bytes +~~ total memory freed........: 5313550 bytes ~~ total allocations/frees...: 120542/120542 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 484 chars diff --git a/test/results/IEC104.pcap.out b/test/results/IEC104.pcap.out index eac1274c4..ee5c30cc8 100644 --- a/test/results/IEC104.pcap.out +++ b/test/results/IEC104.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102116 bytes -~~ total memory freed........: 5102116 bytes +~~ total memory allocated....: 5102100 bytes +~~ total memory freed........: 5102100 bytes ~~ total allocations/frees...: 113331/113331 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 453 chars diff --git a/test/results/KakaoTalk_chat.pcap.out b/test/results/KakaoTalk_chat.pcap.out index c41b547d5..1e273b030 100644 --- a/test/results/KakaoTalk_chat.pcap.out +++ b/test/results/KakaoTalk_chat.pcap.out @@ -242,8 +242,8 @@ ~~ total active/idle flows...: 38/38 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5256959 bytes -~~ total memory freed........: 5256959 bytes +~~ total memory allocated....: 5256655 bytes +~~ total memory freed........: 5256655 bytes ~~ total allocations/frees...: 113981/113981 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/KakaoTalk_talk.pcap.out b/test/results/KakaoTalk_talk.pcap.out index 55c83f7d0..d0e1db390 100644 --- a/test/results/KakaoTalk_talk.pcap.out +++ b/test/results/KakaoTalk_talk.pcap.out @@ -122,8 +122,8 @@ ~~ total active/idle flows...: 20/20 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5237216 bytes -~~ total memory freed........: 5237216 bytes +~~ total memory allocated....: 5237056 bytes +~~ total memory freed........: 5237056 bytes ~~ total allocations/frees...: 116592/116592 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/NTPv2.pcap.out b/test/results/NTPv2.pcap.out index b5521b221..4dd156187 100644 --- a/test/results/NTPv2.pcap.out +++ b/test/results/NTPv2.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/NTPv3.pcap.out b/test/results/NTPv3.pcap.out index 663401f88..16d8c5c67 100644 --- a/test/results/NTPv3.pcap.out +++ b/test/results/NTPv3.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/NTPv4.pcap.out b/test/results/NTPv4.pcap.out index eadf7a6bf..aeac34bd1 100644 --- a/test/results/NTPv4.pcap.out +++ b/test/results/NTPv4.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/Oscar.pcap.out b/test/results/Oscar.pcap.out index a21049864..fcc940db2 100644 --- a/test/results/Oscar.pcap.out +++ b/test/results/Oscar.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5135750 bytes -~~ total memory freed........: 5135750 bytes +~~ total memory allocated....: 5135742 bytes +~~ total memory freed........: 5135742 bytes ~~ total allocations/frees...: 113395/113395 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 456 chars diff --git a/test/results/WebattackRCE.pcap.out b/test/results/WebattackRCE.pcap.out index 93aaec7e6..86b3a232f 100644 --- a/test/results/WebattackRCE.pcap.out +++ b/test/results/WebattackRCE.pcap.out @@ -3197,8 +3197,8 @@ ~~ total active/idle flows...: 797/797 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5907886 bytes -~~ total memory freed........: 5907886 bytes +~~ total memory allocated....: 5901510 bytes +~~ total memory freed........: 5901510 bytes ~~ total allocations/frees...: 118798/118798 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 468 chars diff --git a/test/results/WebattackSQLinj.pcap.out b/test/results/WebattackSQLinj.pcap.out index 3fc3b32a0..9a515d3ba 100644 --- a/test/results/WebattackSQLinj.pcap.out +++ b/test/results/WebattackSQLinj.pcap.out @@ -63,8 +63,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5112239 bytes -~~ total memory freed........: 5112239 bytes +~~ total memory allocated....: 5112167 bytes +~~ total memory freed........: 5112167 bytes ~~ total allocations/frees...: 113467/113467 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 471 chars diff --git a/test/results/WebattackXSS.pcap.out b/test/results/WebattackXSS.pcap.out index c7188f901..25f516370 100644 --- a/test/results/WebattackXSS.pcap.out +++ b/test/results/WebattackXSS.pcap.out @@ -3976,8 +3976,8 @@ ~~ total active/idle flows...: 661/661 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5952411 bytes -~~ total memory freed........: 5952411 bytes +~~ total memory allocated....: 5947123 bytes +~~ total memory freed........: 5947123 bytes ~~ total allocations/frees...: 124755/124755 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 468 chars diff --git a/test/results/afp.pcap.out b/test/results/afp.pcap.out index 51c1ca3a7..5882cc0c2 100644 --- a/test/results/afp.pcap.out +++ b/test/results/afp.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101273 bytes -~~ total memory freed........: 5101273 bytes +~~ total memory allocated....: 5101265 bytes +~~ total memory freed........: 5101265 bytes ~~ total allocations/frees...: 113329/113329 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/ah.pcapng.out b/test/results/ah.pcapng.out index 62009cb07..66946b829 100644 --- a/test/results/ah.pcapng.out +++ b/test/results/ah.pcapng.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101855 bytes -~~ total memory freed........: 5101855 bytes +~~ total memory allocated....: 5101839 bytes +~~ total memory freed........: 5101839 bytes ~~ total allocations/frees...: 113322/113322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/aimini-http.pcap.out b/test/results/aimini-http.pcap.out index 2ba169648..c84064276 100644 --- a/test/results/aimini-http.pcap.out +++ b/test/results/aimini-http.pcap.out @@ -33,8 +33,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5108006 bytes -~~ total memory freed........: 5108006 bytes +~~ total memory allocated....: 5107974 bytes +~~ total memory freed........: 5107974 bytes ~~ total allocations/frees...: 113467/113467 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 467 chars diff --git a/test/results/ajp.pcap.out b/test/results/ajp.pcap.out index 157f9eb8b..649fea250 100644 --- a/test/results/ajp.pcap.out +++ b/test/results/ajp.pcap.out @@ -45,8 +45,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102435 bytes -~~ total memory freed........: 5102435 bytes +~~ total memory allocated....: 5102419 bytes +~~ total memory freed........: 5102419 bytes ~~ total allocations/frees...: 113342/113342 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 202 chars diff --git a/test/results/alexa-app.pcapng.out b/test/results/alexa-app.pcapng.out index e45caae99..d92de5000 100644 --- a/test/results/alexa-app.pcapng.out +++ b/test/results/alexa-app.pcapng.out @@ -1079,8 +1079,8 @@ ~~ total active/idle flows...: 160/160 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5789187 bytes -~~ total memory freed........: 5789187 bytes +~~ total memory allocated....: 5787907 bytes +~~ total memory freed........: 5787907 bytes ~~ total allocations/frees...: 117861/117861 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 189 chars diff --git a/test/results/among_us.pcap.out b/test/results/among_us.pcap.out index 1ba704cd5..3ad221d11 100644 --- a/test/results/among_us.pcap.out +++ b/test/results/among_us.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 455 chars diff --git a/test/results/amqp.pcap.out b/test/results/amqp.pcap.out index 58077cd3b..c91f15b58 100644 --- a/test/results/amqp.pcap.out +++ b/test/results/amqp.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5113337 bytes -~~ total memory freed........: 5113337 bytes +~~ total memory allocated....: 5113313 bytes +~~ total memory freed........: 5113313 bytes ~~ total allocations/frees...: 113482/113482 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/android.pcap.out b/test/results/android.pcap.out index 0f342fa06..56b40fc0a 100644 --- a/test/results/android.pcap.out +++ b/test/results/android.pcap.out @@ -387,8 +387,8 @@ ~~ total active/idle flows...: 63/63 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5328982 bytes -~~ total memory freed........: 5328982 bytes +~~ total memory allocated....: 5328478 bytes +~~ total memory freed........: 5328478 bytes ~~ total allocations/frees...: 114223/114223 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/anyconnect-vpn.pcap.out b/test/results/anyconnect-vpn.pcap.out index f9160e1d0..991f37b97 100644 --- a/test/results/anyconnect-vpn.pcap.out +++ b/test/results/anyconnect-vpn.pcap.out @@ -404,8 +404,8 @@ ~~ total active/idle flows...: 69/69 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5311650 bytes -~~ total memory freed........: 5311650 bytes +~~ total memory allocated....: 5311098 bytes +~~ total memory freed........: 5311098 bytes ~~ total allocations/frees...: 116567/116567 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 451 chars diff --git a/test/results/anydesk-2.pcap.out b/test/results/anydesk-2.pcap.out index 8633e1efb..134f08ff2 100644 --- a/test/results/anydesk-2.pcap.out +++ b/test/results/anydesk-2.pcap.out @@ -911,8 +911,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5176210 bytes -~~ total memory freed........: 5176210 bytes +~~ total memory allocated....: 5176178 bytes +~~ total memory freed........: 5176178 bytes ~~ total allocations/frees...: 115411/115411 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 211 chars diff --git a/test/results/anydesk.pcap.out b/test/results/anydesk.pcap.out index d2b63fab1..0ed65be92 100644 --- a/test/results/anydesk.pcap.out +++ b/test/results/anydesk.pcap.out @@ -23,8 +23,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5310313 bytes -~~ total memory freed........: 5310313 bytes +~~ total memory allocated....: 5310297 bytes +~~ total memory freed........: 5310297 bytes ~~ total allocations/frees...: 120284/120284 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 454 chars diff --git a/test/results/avast_securedns.pcapng.out b/test/results/avast_securedns.pcapng.out index a1ac50bed..0e74d04b5 100644 --- a/test/results/avast_securedns.pcapng.out +++ b/test/results/avast_securedns.pcapng.out @@ -215,8 +215,8 @@ ~~ total active/idle flows...: 39/39 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5136178 bytes -~~ total memory freed........: 5136178 bytes +~~ total memory allocated....: 5135866 bytes +~~ total memory freed........: 5135866 bytes ~~ total allocations/frees...: 113504/113504 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 473 chars diff --git a/test/results/bad-dns-traffic.pcap.out b/test/results/bad-dns-traffic.pcap.out index 3207af0f5..d88f49f83 100644 --- a/test/results/bad-dns-traffic.pcap.out +++ b/test/results/bad-dns-traffic.pcap.out @@ -35,8 +35,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5113631 bytes -~~ total memory freed........: 5113631 bytes +~~ total memory allocated....: 5113607 bytes +~~ total memory freed........: 5113607 bytes ~~ total allocations/frees...: 113701/113701 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 471 chars diff --git a/test/results/bitcoin.pcap.out b/test/results/bitcoin.pcap.out index b03afa08d..6bbc682cd 100644 --- a/test/results/bitcoin.pcap.out +++ b/test/results/bitcoin.pcap.out @@ -48,8 +48,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5131850 bytes -~~ total memory freed........: 5131850 bytes +~~ total memory allocated....: 5131802 bytes +~~ total memory freed........: 5131802 bytes ~~ total allocations/frees...: 113967/113967 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/bittorrent.pcap.out b/test/results/bittorrent.pcap.out index 532e98b75..4a63634a7 100644 --- a/test/results/bittorrent.pcap.out +++ b/test/results/bittorrent.pcap.out @@ -140,8 +140,8 @@ ~~ total active/idle flows...: 24/24 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5436752 bytes -~~ total memory freed........: 5436752 bytes +~~ total memory allocated....: 5436560 bytes +~~ total memory freed........: 5436560 bytes ~~ total allocations/frees...: 113705/113705 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/bittorrent_utp.pcap.out b/test/results/bittorrent_utp.pcap.out index 437407f2c..f7ca672bc 100644 --- a/test/results/bittorrent_utp.pcap.out +++ b/test/results/bittorrent_utp.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5365463 bytes -~~ total memory freed........: 5365463 bytes +~~ total memory allocated....: 5365455 bytes +~~ total memory freed........: 5365455 bytes ~~ total allocations/frees...: 113401/113401 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 470 chars diff --git a/test/results/bjnp.pcap.out b/test/results/bjnp.pcap.out index c99d800ea..7b0afc826 100644 --- a/test/results/bjnp.pcap.out +++ b/test/results/bjnp.pcap.out @@ -49,8 +49,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5108947 bytes -~~ total memory freed........: 5108947 bytes +~~ total memory allocated....: 5108867 bytes +~~ total memory freed........: 5108867 bytes ~~ total allocations/frees...: 113350/113350 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 440 chars diff --git a/test/results/bot.pcap.out b/test/results/bot.pcap.out index 27b0d5e06..6b9889b19 100644 --- a/test/results/bot.pcap.out +++ b/test/results/bot.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5112625 bytes -~~ total memory freed........: 5112625 bytes +~~ total memory allocated....: 5112617 bytes +~~ total memory freed........: 5112617 bytes ~~ total allocations/frees...: 113719/113719 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/bt_search.pcap.out b/test/results/bt_search.pcap.out index 32b59cf06..7cd9f6aa2 100644 --- a/test/results/bt_search.pcap.out +++ b/test/results/bt_search.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5363027 bytes -~~ total memory freed........: 5363027 bytes +~~ total memory allocated....: 5363019 bytes +~~ total memory freed........: 5363019 bytes ~~ total allocations/frees...: 113317/113317 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/capwap.pcap.out b/test/results/capwap.pcap.out index cb60fbe93..b5cc0a23f 100644 --- a/test/results/capwap.pcap.out +++ b/test/results/capwap.pcap.out @@ -54,8 +54,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5115810 bytes -~~ total memory freed........: 5115810 bytes +~~ total memory allocated....: 5115770 bytes +~~ total memory freed........: 5115770 bytes ~~ total allocations/frees...: 113722/113722 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 186 chars diff --git a/test/results/cassandra.pcap.out b/test/results/cassandra.pcap.out index c5fe1531d..68a86afbc 100644 --- a/test/results/cassandra.pcap.out +++ b/test/results/cassandra.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5109975 bytes -~~ total memory freed........: 5109975 bytes +~~ total memory allocated....: 5109959 bytes +~~ total memory freed........: 5109959 bytes ~~ total allocations/frees...: 113602/113602 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/check_mk_new.pcap.out b/test/results/check_mk_new.pcap.out index 96ec80a61..7945250c7 100644 --- a/test/results/check_mk_new.pcap.out +++ b/test/results/check_mk_new.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103651 bytes -~~ total memory freed........: 5103651 bytes +~~ total memory allocated....: 5103643 bytes +~~ total memory freed........: 5103643 bytes ~~ total allocations/frees...: 113411/113411 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 468 chars diff --git a/test/results/chrome.pcap.out b/test/results/chrome.pcap.out index c9c0a2466..975273d8d 100644 --- a/test/results/chrome.pcap.out +++ b/test/results/chrome.pcap.out @@ -51,8 +51,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5281108 bytes -~~ total memory freed........: 5281108 bytes +~~ total memory allocated....: 5281060 bytes +~~ total memory freed........: 5281060 bytes ~~ total allocations/frees...: 118979/118979 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/citrix.pcap.out b/test/results/citrix.pcap.out index b1d24ffac..cb93bf985 100644 --- a/test/results/citrix.pcap.out +++ b/test/results/citrix.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103709 bytes -~~ total memory freed........: 5103709 bytes +~~ total memory allocated....: 5103701 bytes +~~ total memory freed........: 5103701 bytes ~~ total allocations/frees...: 113413/113413 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 444 chars diff --git a/test/results/coap_mqtt.pcap.out b/test/results/coap_mqtt.pcap.out index 5ce90f3de..2e35d23a0 100644 --- a/test/results/coap_mqtt.pcap.out +++ b/test/results/coap_mqtt.pcap.out @@ -97,8 +97,8 @@ ~~ total active/idle flows...: 16/16 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5368987 bytes -~~ total memory freed........: 5368987 bytes +~~ total memory allocated....: 5368859 bytes +~~ total memory freed........: 5368859 bytes ~~ total allocations/frees...: 121876/121876 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 458 chars diff --git a/test/results/corba.pcap.out b/test/results/corba.pcap.out index bec1da37b..9b5a973ec 100644 --- a/test/results/corba.pcap.out +++ b/test/results/corba.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5109335 bytes -~~ total memory freed........: 5109335 bytes +~~ total memory allocated....: 5109311 bytes +~~ total memory freed........: 5109311 bytes ~~ total allocations/frees...: 113344/113344 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/cpha.pcap.out b/test/results/cpha.pcap.out index b58c6d182..34811b81d 100644 --- a/test/results/cpha.pcap.out +++ b/test/results/cpha.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/dcerpc.pcap.out b/test/results/dcerpc.pcap.out index b7fd1fbcb..ce06ef67f 100644 --- a/test/results/dcerpc.pcap.out +++ b/test/results/dcerpc.pcap.out @@ -31,8 +31,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103889 bytes -~~ total memory freed........: 5103889 bytes +~~ total memory allocated....: 5103857 bytes +~~ total memory freed........: 5103857 bytes ~~ total allocations/frees...: 113338/113338 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/dhcp-fuzz.pcapng.out b/test/results/dhcp-fuzz.pcapng.out index eb6556be6..7a0ff1ffe 100644 --- a/test/results/dhcp-fuzz.pcapng.out +++ b/test/results/dhcp-fuzz.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 467 chars diff --git a/test/results/diameter.pcap.out b/test/results/diameter.pcap.out index acf7b7fec..75e8bb8c1 100644 --- a/test/results/diameter.pcap.out +++ b/test/results/diameter.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100983 bytes -~~ total memory freed........: 5100983 bytes +~~ total memory allocated....: 5100975 bytes +~~ total memory freed........: 5100975 bytes ~~ total allocations/frees...: 113319/113319 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/discord.pcap.out b/test/results/discord.pcap.out index 44b894cff..08089c0c8 100644 --- a/test/results/discord.pcap.out +++ b/test/results/discord.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5105920 bytes -~~ total memory freed........: 5105920 bytes +~~ total memory allocated....: 5105912 bytes +~~ total memory freed........: 5105912 bytes ~~ total allocations/frees...: 113328/113328 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 448 chars diff --git a/test/results/dnp3.pcap.out b/test/results/dnp3.pcap.out index 33a43687a..8b9b59923 100644 --- a/test/results/dnp3.pcap.out +++ b/test/results/dnp3.pcap.out @@ -64,8 +64,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5124708 bytes -~~ total memory freed........: 5124708 bytes +~~ total memory allocated....: 5124644 bytes +~~ total memory freed........: 5124644 bytes ~~ total allocations/frees...: 113878/113878 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/dns-invalid-chars.pcap.out b/test/results/dns-invalid-chars.pcap.out index 19bf244e0..25f9531e3 100644 --- a/test/results/dns-invalid-chars.pcap.out +++ b/test/results/dns-invalid-chars.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100867 bytes -~~ total memory freed........: 5100867 bytes +~~ total memory allocated....: 5100859 bytes +~~ total memory freed........: 5100859 bytes ~~ total allocations/frees...: 113315/113315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 473 chars diff --git a/test/results/dns-tunnel-iodine.pcap.out b/test/results/dns-tunnel-iodine.pcap.out index 8b1c4b7c6..9629c2603 100644 --- a/test/results/dns-tunnel-iodine.pcap.out +++ b/test/results/dns-tunnel-iodine.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5113395 bytes -~~ total memory freed........: 5113395 bytes +~~ total memory allocated....: 5113387 bytes +~~ total memory freed........: 5113387 bytes ~~ total allocations/frees...: 113747/113747 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 473 chars diff --git a/test/results/dns_ambiguous_names.pcap.out b/test/results/dns_ambiguous_names.pcap.out index 73b469411..e2e941896 100644 --- a/test/results/dns_ambiguous_names.pcap.out +++ b/test/results/dns_ambiguous_names.pcap.out @@ -69,8 +69,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5109237 bytes -~~ total memory freed........: 5109237 bytes +~~ total memory allocated....: 5109157 bytes +~~ total memory freed........: 5109157 bytes ~~ total allocations/frees...: 113360/113360 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 475 chars diff --git a/test/results/dns_doh.pcap.out b/test/results/dns_doh.pcap.out index 34100eb85..716f14ec2 100644 --- a/test/results/dns_doh.pcap.out +++ b/test/results/dns_doh.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5107017 bytes -~~ total memory freed........: 5107017 bytes +~~ total memory allocated....: 5107009 bytes +~~ total memory freed........: 5107009 bytes ~~ total allocations/frees...: 113458/113458 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 453 chars diff --git a/test/results/dns_dot.pcap.out b/test/results/dns_dot.pcap.out index c158f294b..a6bcd06a4 100644 --- a/test/results/dns_dot.pcap.out +++ b/test/results/dns_dot.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5107762 bytes -~~ total memory freed........: 5107762 bytes +~~ total memory allocated....: 5107754 bytes +~~ total memory freed........: 5107754 bytes ~~ total allocations/frees...: 113352/113352 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/dns_exfiltration.pcap.out b/test/results/dns_exfiltration.pcap.out index 76e1b1194..fd625d8ff 100644 --- a/test/results/dns_exfiltration.pcap.out +++ b/test/results/dns_exfiltration.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5109509 bytes -~~ total memory freed........: 5109509 bytes +~~ total memory allocated....: 5109501 bytes +~~ total memory freed........: 5109501 bytes ~~ total allocations/frees...: 113613/113613 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 472 chars diff --git a/test/results/dns_fragmented.pcap.out b/test/results/dns_fragmented.pcap.out index 27ce94ee2..e6da81164 100644 --- a/test/results/dns_fragmented.pcap.out +++ b/test/results/dns_fragmented.pcap.out @@ -154,8 +154,8 @@ ~~ total active/idle flows...: 21/21 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5119960 bytes -~~ total memory freed........: 5119960 bytes +~~ total memory allocated....: 5119792 bytes +~~ total memory freed........: 5119792 bytes ~~ total allocations/frees...: 113432/113432 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 214 chars diff --git a/test/results/dns_invert_query.pcapng.out b/test/results/dns_invert_query.pcapng.out index 1c6659c84..b301f88b7 100644 --- a/test/results/dns_invert_query.pcapng.out +++ b/test/results/dns_invert_query.pcapng.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100867 bytes -~~ total memory freed........: 5100867 bytes +~~ total memory allocated....: 5100859 bytes +~~ total memory freed........: 5100859 bytes ~~ total allocations/frees...: 113315/113315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/dns_long_domainname.pcap.out b/test/results/dns_long_domainname.pcap.out index b9f33b2c6..b4ba85159 100644 --- a/test/results/dns_long_domainname.pcap.out +++ b/test/results/dns_long_domainname.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100867 bytes -~~ total memory freed........: 5100867 bytes +~~ total memory allocated....: 5100859 bytes +~~ total memory freed........: 5100859 bytes ~~ total allocations/frees...: 113315/113315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 475 chars diff --git a/test/results/dnscrypt-v1-and-resolver-pings.pcap.out b/test/results/dnscrypt-v1-and-resolver-pings.pcap.out index 89b541f3a..f77b5e461 100644 --- a/test/results/dnscrypt-v1-and-resolver-pings.pcap.out +++ b/test/results/dnscrypt-v1-and-resolver-pings.pcap.out @@ -1473,8 +1473,8 @@ ~~ total active/idle flows...: 245/245 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5327729 bytes -~~ total memory freed........: 5327729 bytes +~~ total memory allocated....: 5325769 bytes +~~ total memory freed........: 5325769 bytes ~~ total allocations/frees...: 114533/114533 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 228 chars diff --git a/test/results/dnscrypt-v2-doh.pcap.out b/test/results/dnscrypt-v2-doh.pcap.out index 8a7b80c9a..10c89d9d1 100644 --- a/test/results/dnscrypt-v2-doh.pcap.out +++ b/test/results/dnscrypt-v2-doh.pcap.out @@ -249,8 +249,8 @@ ~~ total active/idle flows...: 34/34 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5292726 bytes -~~ total memory freed........: 5292726 bytes +~~ total memory allocated....: 5292454 bytes +~~ total memory freed........: 5292454 bytes ~~ total allocations/frees...: 114125/114125 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 470 chars diff --git a/test/results/dnscrypt-v2.pcap.out b/test/results/dnscrypt-v2.pcap.out index 82b0169dc..73e096816 100644 --- a/test/results/dnscrypt-v2.pcap.out +++ b/test/results/dnscrypt-v2.pcap.out @@ -24,8 +24,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102727 bytes -~~ total memory freed........: 5102727 bytes +~~ total memory allocated....: 5102703 bytes +~~ total memory freed........: 5102703 bytes ~~ total allocations/frees...: 113325/113325 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 467 chars diff --git a/test/results/dnscrypt_skype_false_positive.pcapng.out b/test/results/dnscrypt_skype_false_positive.pcapng.out index 3016ee11f..a359c0c94 100644 --- a/test/results/dnscrypt_skype_false_positive.pcapng.out +++ b/test/results/dnscrypt_skype_false_positive.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100983 bytes -~~ total memory freed........: 5100983 bytes +~~ total memory allocated....: 5100975 bytes +~~ total memory freed........: 5100975 bytes ~~ total allocations/frees...: 113319/113319 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 487 chars diff --git a/test/results/doq.pcapng.out b/test/results/doq.pcapng.out index ea852204d..a64b966fd 100644 --- a/test/results/doq.pcapng.out +++ b/test/results/doq.pcapng.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5112395 bytes -~~ total memory freed........: 5112395 bytes +~~ total memory allocated....: 5112379 bytes +~~ total memory freed........: 5112379 bytes ~~ total allocations/frees...: 113357/113357 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/doq_adguard.pcapng.out b/test/results/doq_adguard.pcapng.out index db0772207..03edef9fd 100644 --- a/test/results/doq_adguard.pcapng.out +++ b/test/results/doq_adguard.pcapng.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5119463 bytes -~~ total memory freed........: 5119463 bytes +~~ total memory allocated....: 5119455 bytes +~~ total memory freed........: 5119455 bytes ~~ total allocations/frees...: 113630/113630 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/dos_win98_smb_netbeui.pcap.out b/test/results/dos_win98_smb_netbeui.pcap.out index 17f482391..a86bf2598 100644 --- a/test/results/dos_win98_smb_netbeui.pcap.out +++ b/test/results/dos_win98_smb_netbeui.pcap.out @@ -347,8 +347,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5105223 bytes -~~ total memory freed........: 5105223 bytes +~~ total memory allocated....: 5105191 bytes +~~ total memory freed........: 5105191 bytes ~~ total allocations/frees...: 113384/113384 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 200 chars diff --git a/test/results/drda_db2.pcap.out b/test/results/drda_db2.pcap.out index 80e2c19d1..c57ce5eae 100644 --- a/test/results/drda_db2.pcap.out +++ b/test/results/drda_db2.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103959 bytes -~~ total memory freed........: 5103959 bytes +~~ total memory allocated....: 5103951 bytes +~~ total memory freed........: 5103951 bytes ~~ total allocations/frees...: 113352/113352 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 457 chars diff --git a/test/results/dropbox.pcap.out b/test/results/dropbox.pcap.out index 797dbe0a7..138afbf61 100644 --- a/test/results/dropbox.pcap.out +++ b/test/results/dropbox.pcap.out @@ -109,8 +109,8 @@ ~~ total active/idle flows...: 15/15 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5137609 bytes -~~ total memory freed........: 5137609 bytes +~~ total memory allocated....: 5137489 bytes +~~ total memory freed........: 5137489 bytes ~~ total allocations/frees...: 114203/114203 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/dtls.pcap.out b/test/results/dtls.pcap.out index ed7ec1aef..c9c1bbd86 100644 --- a/test/results/dtls.pcap.out +++ b/test/results/dtls.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100867 bytes -~~ total memory freed........: 5100867 bytes +~~ total memory allocated....: 5100859 bytes +~~ total memory freed........: 5100859 bytes ~~ total allocations/frees...: 113315/113315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/dtls2.pcap.out b/test/results/dtls2.pcap.out index d68cc3f25..b4e9d8309 100644 --- a/test/results/dtls2.pcap.out +++ b/test/results/dtls2.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101723 bytes -~~ total memory freed........: 5101723 bytes +~~ total memory allocated....: 5101715 bytes +~~ total memory freed........: 5101715 bytes ~~ total allocations/frees...: 113345/113345 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/dtls_certificate.pcapng.out b/test/results/dtls_certificate.pcapng.out index b6edf1f99..cf42c3afd 100644 --- a/test/results/dtls_certificate.pcapng.out +++ b/test/results/dtls_certificate.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5109223 bytes -~~ total memory freed........: 5109223 bytes +~~ total memory allocated....: 5109215 bytes +~~ total memory freed........: 5109215 bytes ~~ total allocations/frees...: 113318/113318 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 474 chars diff --git a/test/results/dtls_certificate_fragments.pcap.out b/test/results/dtls_certificate_fragments.pcap.out index 0b8ea586f..d979148b8 100644 --- a/test/results/dtls_certificate_fragments.pcap.out +++ b/test/results/dtls_certificate_fragments.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101389 bytes -~~ total memory freed........: 5101389 bytes +~~ total memory allocated....: 5101381 bytes +~~ total memory freed........: 5101381 bytes ~~ total allocations/frees...: 113333/113333 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 482 chars diff --git a/test/results/dtls_session_id_and_coockie_both.pcap.out b/test/results/dtls_session_id_and_coockie_both.pcap.out index 4a6d7b51d..d8f144b78 100644 --- a/test/results/dtls_session_id_and_coockie_both.pcap.out +++ b/test/results/dtls_session_id_and_coockie_both.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100925 bytes -~~ total memory freed........: 5100925 bytes +~~ total memory allocated....: 5100917 bytes +~~ total memory freed........: 5100917 bytes ~~ total allocations/frees...: 113317/113317 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 488 chars diff --git a/test/results/encrypted_sni.pcap.out b/test/results/encrypted_sni.pcap.out index 8e870eec6..c3461035f 100644 --- a/test/results/encrypted_sni.pcap.out +++ b/test/results/encrypted_sni.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5110665 bytes -~~ total memory freed........: 5110665 bytes +~~ total memory allocated....: 5110641 bytes +~~ total memory freed........: 5110641 bytes ~~ total allocations/frees...: 113334/113334 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/esp.pcapng.out b/test/results/esp.pcapng.out index 975e78994..f04745216 100644 --- a/test/results/esp.pcapng.out +++ b/test/results/esp.pcapng.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101855 bytes -~~ total memory freed........: 5101855 bytes +~~ total memory allocated....: 5101839 bytes +~~ total memory freed........: 5101839 bytes ~~ total allocations/frees...: 113322/113322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/ethereum.pcap.out b/test/results/ethereum.pcap.out index 1d40f026e..0e2d5fb68 100644 --- a/test/results/ethereum.pcap.out +++ b/test/results/ethereum.pcap.out @@ -438,8 +438,8 @@ ~~ total active/idle flows...: 74/74 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5230673 bytes -~~ total memory freed........: 5230673 bytes +~~ total memory allocated....: 5230081 bytes +~~ total memory freed........: 5230081 bytes ~~ total allocations/frees...: 115534/115534 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/ethernetIP.pcap.out b/test/results/ethernetIP.pcap.out index 0ce13ac1d..ae7d16bf8 100644 --- a/test/results/ethernetIP.pcap.out +++ b/test/results/ethernetIP.pcap.out @@ -33,8 +33,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5106325 bytes -~~ total memory freed........: 5106325 bytes +~~ total memory allocated....: 5106293 bytes +~~ total memory freed........: 5106293 bytes ~~ total allocations/frees...: 113422/113422 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 458 chars diff --git a/test/results/exe_download.pcap.out b/test/results/exe_download.pcap.out index 09929249a..59e88d51b 100644 --- a/test/results/exe_download.pcap.out +++ b/test/results/exe_download.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5121276 bytes -~~ total memory freed........: 5121276 bytes +~~ total memory allocated....: 5121268 bytes +~~ total memory freed........: 5121268 bytes ~~ total allocations/frees...: 114019/114019 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/exe_download_as_png.pcap.out b/test/results/exe_download_as_png.pcap.out index 33913a43f..51ef8c780 100644 --- a/test/results/exe_download_as_png.pcap.out +++ b/test/results/exe_download_as_png.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5116350 bytes -~~ total memory freed........: 5116350 bytes +~~ total memory allocated....: 5116342 bytes +~~ total memory freed........: 5116342 bytes ~~ total allocations/frees...: 113850/113850 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/facebook.pcap.out b/test/results/facebook.pcap.out index c081953ff..c76b662b8 100644 --- a/test/results/facebook.pcap.out +++ b/test/results/facebook.pcap.out @@ -24,8 +24,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5114742 bytes -~~ total memory freed........: 5114742 bytes +~~ total memory allocated....: 5114726 bytes +~~ total memory freed........: 5114726 bytes ~~ total allocations/frees...: 113397/113397 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/firefox.pcap.out b/test/results/firefox.pcap.out index 999ccef90..93d30e144 100644 --- a/test/results/firefox.pcap.out +++ b/test/results/firefox.pcap.out @@ -51,8 +51,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5275414 bytes -~~ total memory freed........: 5275414 bytes +~~ total memory allocated....: 5275366 bytes +~~ total memory freed........: 5275366 bytes ~~ total allocations/frees...: 118787/118787 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/fix.pcap.out b/test/results/fix.pcap.out index 2c9efd784..c8af04aee 100644 --- a/test/results/fix.pcap.out +++ b/test/results/fix.pcap.out @@ -81,8 +81,8 @@ ~~ total active/idle flows...: 12/12 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5171546 bytes -~~ total memory freed........: 5171546 bytes +~~ total memory allocated....: 5171450 bytes +~~ total memory freed........: 5171450 bytes ~~ total allocations/frees...: 114619/114619 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 453 chars diff --git a/test/results/fix2.pcap.out b/test/results/fix2.pcap.out index 82733606c..ca88bff47 100644 --- a/test/results/fix2.pcap.out +++ b/test/results/fix2.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5194111 bytes -~~ total memory freed........: 5194111 bytes +~~ total memory allocated....: 5194095 bytes +~~ total memory freed........: 5194095 bytes ~~ total allocations/frees...: 116364/116364 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/forticlient.pcap.out b/test/results/forticlient.pcap.out index ca5d8bdbb..d668b3868 100644 --- a/test/results/forticlient.pcap.out +++ b/test/results/forticlient.pcap.out @@ -49,8 +49,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5193370 bytes -~~ total memory freed........: 5193370 bytes +~~ total memory allocated....: 5193330 bytes +~~ total memory freed........: 5193330 bytes ~~ total allocations/frees...: 115348/115348 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 467 chars diff --git a/test/results/ftp-start-tls.pcap.out b/test/results/ftp-start-tls.pcap.out index d31c3014b..4e1d7fc3f 100644 --- a/test/results/ftp-start-tls.pcap.out +++ b/test/results/ftp-start-tls.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5104336 bytes -~~ total memory freed........: 5104336 bytes +~~ total memory allocated....: 5104328 bytes +~~ total memory freed........: 5104328 bytes ~~ total allocations/frees...: 113365/113365 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 467 chars diff --git a/test/results/ftp.pcap.out b/test/results/ftp.pcap.out index 1a0a7c92d..d6e0c9cf9 100644 --- a/test/results/ftp.pcap.out +++ b/test/results/ftp.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5143265 bytes -~~ total memory freed........: 5143265 bytes +~~ total memory allocated....: 5143241 bytes +~~ total memory freed........: 5143241 bytes ~~ total allocations/frees...: 114514/114514 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/ftp_failed.pcap.out b/test/results/ftp_failed.pcap.out index 02ed9c6b1..fc2daa53c 100644 --- a/test/results/ftp_failed.pcap.out +++ b/test/results/ftp_failed.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103379 bytes -~~ total memory freed........: 5103379 bytes +~~ total memory allocated....: 5103371 bytes +~~ total memory freed........: 5103371 bytes ~~ total allocations/frees...: 113332/113332 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/fuzz-2006-06-26-2594.pcap.out b/test/results/fuzz-2006-06-26-2594.pcap.out index 570b152b0..a82d64ff3 100644 --- a/test/results/fuzz-2006-06-26-2594.pcap.out +++ b/test/results/fuzz-2006-06-26-2594.pcap.out @@ -1441,8 +1441,8 @@ ~~ total active/idle flows...: 249/249 ~~ total timeout flows.......: 28 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5359755 bytes -~~ total memory freed........: 5359755 bytes +~~ total memory allocated....: 5357763 bytes +~~ total memory freed........: 5357763 bytes ~~ total allocations/frees...: 114624/114624 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 200 chars diff --git a/test/results/fuzz-2006-09-29-28586.pcap.out b/test/results/fuzz-2006-09-29-28586.pcap.out index ff91c0aa0..75d18e7e5 100644 --- a/test/results/fuzz-2006-09-29-28586.pcap.out +++ b/test/results/fuzz-2006-09-29-28586.pcap.out @@ -212,8 +212,8 @@ ~~ total active/idle flows...: 38/38 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5157325 bytes -~~ total memory freed........: 5157325 bytes +~~ total memory allocated....: 5157021 bytes +~~ total memory freed........: 5157021 bytes ~~ total allocations/frees...: 113564/113564 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 201 chars diff --git a/test/results/fuzz-2020-02-16-11740.pcap.out b/test/results/fuzz-2020-02-16-11740.pcap.out index 08839928f..5058d8442 100644 --- a/test/results/fuzz-2020-02-16-11740.pcap.out +++ b/test/results/fuzz-2020-02-16-11740.pcap.out @@ -490,8 +490,8 @@ ~~ total active/idle flows...: 79/79 ~~ total timeout flows.......: 16 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5177496 bytes -~~ total memory freed........: 5177496 bytes +~~ total memory allocated....: 5176864 bytes +~~ total memory freed........: 5176864 bytes ~~ total allocations/frees...: 113846/113846 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 201 chars diff --git a/test/results/genshin-impact.pcap.out b/test/results/genshin-impact.pcap.out index 36dcfbf24..3920f44ac 100644 --- a/test/results/genshin-impact.pcap.out +++ b/test/results/genshin-impact.pcap.out @@ -29,8 +29,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103858 bytes -~~ total memory freed........: 5103858 bytes +~~ total memory allocated....: 5103834 bytes +~~ total memory freed........: 5103834 bytes ~~ total allocations/frees...: 113364/113364 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 470 chars diff --git a/test/results/git.pcap.out b/test/results/git.pcap.out index b3a825917..1ff6574c2 100644 --- a/test/results/git.pcap.out +++ b/test/results/git.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103419 bytes -~~ total memory freed........: 5103419 bytes +~~ total memory allocated....: 5103411 bytes +~~ total memory freed........: 5103411 bytes ~~ total allocations/frees...: 113403/113403 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/gnutella.pcap.out b/test/results/gnutella.pcap.out index 34889ed1f..b76f83b53 100644 --- a/test/results/gnutella.pcap.out +++ b/test/results/gnutella.pcap.out @@ -4257,8 +4257,8 @@ ~~ total active/idle flows...: 801/801 ~~ total timeout flows.......: 151 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6126844 bytes -~~ total memory freed........: 6126844 bytes +~~ total memory allocated....: 6120436 bytes +~~ total memory freed........: 6120436 bytes ~~ total allocations/frees...: 123300/123300 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 179 chars diff --git a/test/results/google_ssl.pcap.out b/test/results/google_ssl.pcap.out index 72f990c51..89d8458fa 100644 --- a/test/results/google_ssl.pcap.out +++ b/test/results/google_ssl.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103669 bytes -~~ total memory freed........: 5103669 bytes +~~ total memory allocated....: 5103661 bytes +~~ total memory freed........: 5103661 bytes ~~ total allocations/frees...: 113342/113342 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 456 chars diff --git a/test/results/googledns_android10.pcap.out b/test/results/googledns_android10.pcap.out index d1fef874f..4f3720ce1 100644 --- a/test/results/googledns_android10.pcap.out +++ b/test/results/googledns_android10.pcap.out @@ -65,8 +65,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5148213 bytes -~~ total memory freed........: 5148213 bytes +~~ total memory allocated....: 5148149 bytes +~~ total memory freed........: 5148149 bytes ~~ total allocations/frees...: 113927/113927 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/gquic.pcap.out b/test/results/gquic.pcap.out index 24afa1400..eafc8e780 100644 --- a/test/results/gquic.pcap.out +++ b/test/results/gquic.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111209 bytes -~~ total memory freed........: 5111209 bytes +~~ total memory allocated....: 5111201 bytes +~~ total memory freed........: 5111201 bytes ~~ total allocations/frees...: 113334/113334 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/gre_no_options.pcapng.out b/test/results/gre_no_options.pcapng.out index 2b0f3b8aa..a7a614fa7 100644 --- a/test/results/gre_no_options.pcapng.out +++ b/test/results/gre_no_options.pcapng.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100867 bytes -~~ total memory freed........: 5100867 bytes +~~ total memory allocated....: 5100859 bytes +~~ total memory freed........: 5100859 bytes ~~ total allocations/frees...: 113315/113315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 472 chars diff --git a/test/results/gtp_c.pcap.out b/test/results/gtp_c.pcap.out index 829fadc38..f41060e05 100644 --- a/test/results/gtp_c.pcap.out +++ b/test/results/gtp_c.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100925 bytes -~~ total memory freed........: 5100925 bytes +~~ total memory allocated....: 5100917 bytes +~~ total memory freed........: 5100917 bytes ~~ total allocations/frees...: 113317/113317 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/gtp_false_positive.pcapng.out b/test/results/gtp_false_positive.pcapng.out index 7c984e440..3e856eaa8 100644 --- a/test/results/gtp_false_positive.pcapng.out +++ b/test/results/gtp_false_positive.pcapng.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102756 bytes -~~ total memory freed........: 5102756 bytes +~~ total memory allocated....: 5102732 bytes +~~ total memory freed........: 5102732 bytes ~~ total allocations/frees...: 113326/113326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/h323-overflow.pcap.out b/test/results/h323-overflow.pcap.out index ec3db199f..6f4b93d82 100644 --- a/test/results/h323-overflow.pcap.out +++ b/test/results/h323-overflow.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102886 bytes -~~ total memory freed........: 5102886 bytes +~~ total memory allocated....: 5102878 bytes +~~ total memory freed........: 5102878 bytes ~~ total allocations/frees...: 113315/113315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/h323.pcap.out b/test/results/h323.pcap.out index 384d73352..7c5afb06a 100644 --- a/test/results/h323.pcap.out +++ b/test/results/h323.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5104077 bytes -~~ total memory freed........: 5104077 bytes +~~ total memory allocated....: 5104061 bytes +~~ total memory freed........: 5104061 bytes ~~ total allocations/frees...: 113329/113329 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/hangout.pcap.out b/test/results/hangout.pcap.out index b18d20855..a135cf044 100644 --- a/test/results/hangout.pcap.out +++ b/test/results/hangout.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5109568 bytes -~~ total memory freed........: 5109568 bytes +~~ total memory allocated....: 5109560 bytes +~~ total memory freed........: 5109560 bytes ~~ total allocations/frees...: 113334/113334 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/hpvirtgrp.pcap.out b/test/results/hpvirtgrp.pcap.out index 56b25d2a0..6b0f8ad13 100644 --- a/test/results/hpvirtgrp.pcap.out +++ b/test/results/hpvirtgrp.pcap.out @@ -70,8 +70,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5130132 bytes -~~ total memory freed........: 5130132 bytes +~~ total memory allocated....: 5130060 bytes +~~ total memory freed........: 5130060 bytes ~~ total allocations/frees...: 113481/113481 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 457 chars diff --git a/test/results/hsrp0.pcap.out b/test/results/hsrp0.pcap.out index 4c485821d..2efce9913 100644 --- a/test/results/hsrp0.pcap.out +++ b/test/results/hsrp0.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103541 bytes -~~ total memory freed........: 5103541 bytes +~~ total memory allocated....: 5103509 bytes +~~ total memory freed........: 5103509 bytes ~~ total allocations/frees...: 113326/113326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/hsrp2.pcap.out b/test/results/hsrp2.pcap.out index 4c984eb28..ea112ec29 100644 --- a/test/results/hsrp2.pcap.out +++ b/test/results/hsrp2.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101739 bytes -~~ total memory freed........: 5101739 bytes +~~ total memory allocated....: 5101723 bytes +~~ total memory freed........: 5101723 bytes ~~ total allocations/frees...: 113318/113318 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/hsrp2_ipv6.pcapng.out b/test/results/hsrp2_ipv6.pcapng.out index dbf511782..59847417b 100644 --- a/test/results/hsrp2_ipv6.pcapng.out +++ b/test/results/hsrp2_ipv6.pcapng.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102725 bytes -~~ total memory freed........: 5102725 bytes +~~ total memory allocated....: 5102709 bytes +~~ total memory freed........: 5102709 bytes ~~ total allocations/frees...: 113352/113352 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 468 chars diff --git a/test/results/http-crash-content-disposition.pcap.out b/test/results/http-crash-content-disposition.pcap.out index ea7dd0e7c..8b6e911d0 100644 --- a/test/results/http-crash-content-disposition.pcap.out +++ b/test/results/http-crash-content-disposition.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101178 bytes -~~ total memory freed........: 5101178 bytes +~~ total memory allocated....: 5101170 bytes +~~ total memory freed........: 5101170 bytes ~~ total allocations/frees...: 113326/113326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 475 chars diff --git a/test/results/http-lines-split.pcap.out b/test/results/http-lines-split.pcap.out index 331063bf9..324a8bc10 100644 --- a/test/results/http-lines-split.pcap.out +++ b/test/results/http-lines-split.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101245 bytes -~~ total memory freed........: 5101245 bytes +~~ total memory allocated....: 5101237 bytes +~~ total memory freed........: 5101237 bytes ~~ total allocations/frees...: 113329/113329 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 471 chars diff --git a/test/results/http-manipulated.pcap.out b/test/results/http-manipulated.pcap.out index d5fe222c6..31298f855 100644 --- a/test/results/http-manipulated.pcap.out +++ b/test/results/http-manipulated.pcap.out @@ -22,8 +22,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111374 bytes -~~ total memory freed........: 5111374 bytes +~~ total memory allocated....: 5111358 bytes +~~ total memory freed........: 5111358 bytes ~~ total allocations/frees...: 113651/113651 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/http_auth.pcap.out b/test/results/http_auth.pcap.out index c4889538f..a1416b993 100644 --- a/test/results/http_auth.pcap.out +++ b/test/results/http_auth.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101948 bytes -~~ total memory freed........: 5101948 bytes +~~ total memory allocated....: 5101940 bytes +~~ total memory freed........: 5101940 bytes ~~ total allocations/frees...: 113350/113350 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/http_connect.pcap.out b/test/results/http_connect.pcap.out index c18b1d5b8..1c69c78c5 100644 --- a/test/results/http_connect.pcap.out +++ b/test/results/http_connect.pcap.out @@ -28,8 +28,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5107648 bytes -~~ total memory freed........: 5107648 bytes +~~ total memory allocated....: 5107624 bytes +~~ total memory freed........: 5107624 bytes ~~ total allocations/frees...: 113425/113425 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/http_ipv6.pcap.out b/test/results/http_ipv6.pcap.out index 9fdc02f43..3391ec974 100644 --- a/test/results/http_ipv6.pcap.out +++ b/test/results/http_ipv6.pcap.out @@ -104,8 +104,8 @@ ~~ total active/idle flows...: 15/15 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5188843 bytes -~~ total memory freed........: 5188843 bytes +~~ total memory allocated....: 5188723 bytes +~~ total memory freed........: 5188723 bytes ~~ total allocations/frees...: 113614/113614 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/iax.pcap.out b/test/results/iax.pcap.out index f06d11141..24313577b 100644 --- a/test/results/iax.pcap.out +++ b/test/results/iax.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102259 bytes -~~ total memory freed........: 5102259 bytes +~~ total memory allocated....: 5102251 bytes +~~ total memory freed........: 5102251 bytes ~~ total allocations/frees...: 113363/113363 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 448 chars diff --git a/test/results/icmp-tunnel.pcap.out b/test/results/icmp-tunnel.pcap.out index 7c779b878..34d44fbc9 100644 --- a/test/results/icmp-tunnel.pcap.out +++ b/test/results/icmp-tunnel.pcap.out @@ -24,8 +24,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5125836 bytes -~~ total memory freed........: 5125836 bytes +~~ total memory allocated....: 5125828 bytes +~~ total memory freed........: 5125828 bytes ~~ total allocations/frees...: 114176/114176 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 467 chars diff --git a/test/results/iec60780-5-104.pcap.out b/test/results/iec60780-5-104.pcap.out index f7133639f..da61f8088 100644 --- a/test/results/iec60780-5-104.pcap.out +++ b/test/results/iec60780-5-104.pcap.out @@ -46,8 +46,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5109432 bytes -~~ total memory freed........: 5109432 bytes +~~ total memory allocated....: 5109384 bytes +~~ total memory freed........: 5109384 bytes ~~ total allocations/frees...: 113475/113475 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 470 chars diff --git a/test/results/imap-starttls.pcap.out b/test/results/imap-starttls.pcap.out index af6bf749c..6a0df453e 100644 --- a/test/results/imap-starttls.pcap.out +++ b/test/results/imap-starttls.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103785 bytes -~~ total memory freed........: 5103785 bytes +~~ total memory allocated....: 5103777 bytes +~~ total memory freed........: 5103777 bytes ~~ total allocations/frees...: 113346/113346 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/imap.pcap.out b/test/results/imap.pcap.out index 86b8dbb9b..2f242780a 100644 --- a/test/results/imap.pcap.out +++ b/test/results/imap.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103814 bytes -~~ total memory freed........: 5103814 bytes +~~ total memory allocated....: 5103806 bytes +~~ total memory freed........: 5103806 bytes ~~ total allocations/frees...: 113347/113347 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/imaps.pcap.out b/test/results/imaps.pcap.out index f46019265..65e894d60 100644 --- a/test/results/imaps.pcap.out +++ b/test/results/imaps.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5106300 bytes -~~ total memory freed........: 5106300 bytes +~~ total memory allocated....: 5106292 bytes +~~ total memory freed........: 5106292 bytes ~~ total allocations/frees...: 113338/113338 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/imo.pcap.out b/test/results/imo.pcap.out index af61f4e9e..adb8367ac 100644 --- a/test/results/imo.pcap.out +++ b/test/results/imo.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5104581 bytes -~~ total memory freed........: 5104581 bytes +~~ total memory allocated....: 5104565 bytes +~~ total memory freed........: 5104565 bytes ~~ total allocations/frees...: 113416/113416 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 436 chars diff --git a/test/results/instagram.pcap.out b/test/results/instagram.pcap.out index 75486aa4d..f4c197540 100644 --- a/test/results/instagram.pcap.out +++ b/test/results/instagram.pcap.out @@ -248,8 +248,8 @@ ~~ total active/idle flows...: 38/38 ~~ total timeout flows.......: 9 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5795143 bytes -~~ total memory freed........: 5795143 bytes +~~ total memory allocated....: 5794839 bytes +~~ total memory freed........: 5794839 bytes ~~ total allocations/frees...: 117001/117001 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/ip_fragmented_garbage.pcap.out b/test/results/ip_fragmented_garbage.pcap.out index bee01a656..8de77b6f4 100644 --- a/test/results/ip_fragmented_garbage.pcap.out +++ b/test/results/ip_fragmented_garbage.pcap.out @@ -18221,8 +18221,8 @@ ~~ total active/idle flows...: 29/29 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5126066 bytes -~~ total memory freed........: 5126066 bytes +~~ total memory allocated....: 5125834 bytes +~~ total memory freed........: 5125834 bytes ~~ total allocations/frees...: 113426/113426 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 220 chars diff --git a/test/results/iphone.pcap.out b/test/results/iphone.pcap.out index 2aeb1eed3..16f982fdd 100644 --- a/test/results/iphone.pcap.out +++ b/test/results/iphone.pcap.out @@ -321,8 +321,8 @@ ~~ total active/idle flows...: 51/51 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5416797 bytes -~~ total memory freed........: 5416797 bytes +~~ total memory allocated....: 5416389 bytes +~~ total memory freed........: 5416389 bytes ~~ total allocations/frees...: 114196/114196 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 452 chars diff --git a/test/results/ipp.pcap.out b/test/results/ipp.pcap.out index 478ef3e6b..3fc32914f 100644 --- a/test/results/ipp.pcap.out +++ b/test/results/ipp.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5110721 bytes -~~ total memory freed........: 5110721 bytes +~~ total memory allocated....: 5110697 bytes +~~ total memory freed........: 5110697 bytes ~~ total allocations/frees...: 113605/113605 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/irc.pcap.out b/test/results/irc.pcap.out index 9e3fdf279..122c60bef 100644 --- a/test/results/irc.pcap.out +++ b/test/results/irc.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103698 bytes -~~ total memory freed........: 5103698 bytes +~~ total memory allocated....: 5103690 bytes +~~ total memory freed........: 5103690 bytes ~~ total allocations/frees...: 113343/113343 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/ja3_lots_of_cipher_suites_2_anon.pcap.out b/test/results/ja3_lots_of_cipher_suites_2_anon.pcap.out index de1eccb20..cf495c236 100644 --- a/test/results/ja3_lots_of_cipher_suites_2_anon.pcap.out +++ b/test/results/ja3_lots_of_cipher_suites_2_anon.pcap.out @@ -41,8 +41,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101592 bytes -~~ total memory freed........: 5101592 bytes +~~ total memory allocated....: 5101584 bytes +~~ total memory freed........: 5101584 bytes ~~ total allocations/frees...: 113340/113340 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 260 chars diff --git a/test/results/jabber.pcap.out b/test/results/jabber.pcap.out index 48082957c..c76e92812 100644 --- a/test/results/jabber.pcap.out +++ b/test/results/jabber.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103234 bytes -~~ total memory freed........: 5103234 bytes +~~ total memory allocated....: 5103226 bytes +~~ total memory freed........: 5103226 bytes ~~ total allocations/frees...: 113327/113327 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/kerberos-login.pcap.out b/test/results/kerberos-login.pcap.out index b576bcc59..278897188 100644 --- a/test/results/kerberos-login.pcap.out +++ b/test/results/kerberos-login.pcap.out @@ -77,8 +77,8 @@ ~~ total active/idle flows...: 13/13 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5112404 bytes -~~ total memory freed........: 5112404 bytes +~~ total memory allocated....: 5112300 bytes +~~ total memory freed........: 5112300 bytes ~~ total allocations/frees...: 113388/113388 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 470 chars diff --git a/test/results/kerberos.pcap.out b/test/results/kerberos.pcap.out index 3d7a9f500..f556e507d 100644 --- a/test/results/kerberos.pcap.out +++ b/test/results/kerberos.pcap.out @@ -198,8 +198,8 @@ ~~ total active/idle flows...: 36/36 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5184762 bytes -~~ total memory freed........: 5184762 bytes +~~ total memory allocated....: 5184474 bytes +~~ total memory freed........: 5184474 bytes ~~ total allocations/frees...: 113520/113520 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/kerberos_fuzz.pcapng.out b/test/results/kerberos_fuzz.pcapng.out index 313d898a7..41756f8b2 100644 --- a/test/results/kerberos_fuzz.pcapng.out +++ b/test/results/kerberos_fuzz.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 471 chars diff --git a/test/results/kontiki.pcap.out b/test/results/kontiki.pcap.out index f6be43110..4631f4057 100644 --- a/test/results/kontiki.pcap.out +++ b/test/results/kontiki.pcap.out @@ -49,8 +49,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5202294 bytes -~~ total memory freed........: 5202294 bytes +~~ total memory allocated....: 5202230 bytes +~~ total memory freed........: 5202230 bytes ~~ total allocations/frees...: 116623/116623 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 444 chars diff --git a/test/results/lisp_registration.pcap.out b/test/results/lisp_registration.pcap.out index 0d4d5c7d0..589030ac7 100644 --- a/test/results/lisp_registration.pcap.out +++ b/test/results/lisp_registration.pcap.out @@ -33,8 +33,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5108391 bytes -~~ total memory freed........: 5108391 bytes +~~ total memory allocated....: 5108359 bytes +~~ total memory freed........: 5108359 bytes ~~ total allocations/frees...: 113354/113354 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 472 chars diff --git a/test/results/log4j-webapp-exploit.pcap.out b/test/results/log4j-webapp-exploit.pcap.out index 385ec1153..a50630ba1 100644 --- a/test/results/log4j-webapp-exploit.pcap.out +++ b/test/results/log4j-webapp-exploit.pcap.out @@ -60,8 +60,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5124659 bytes -~~ total memory freed........: 5124659 bytes +~~ total memory allocated....: 5124603 bytes +~~ total memory freed........: 5124603 bytes ~~ total allocations/frees...: 113766/113766 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 201 chars diff --git a/test/results/long_tls_certificate.pcap.out b/test/results/long_tls_certificate.pcap.out index ba9c3bfaa..724790a1b 100644 --- a/test/results/long_tls_certificate.pcap.out +++ b/test/results/long_tls_certificate.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5499440 bytes -~~ total memory freed........: 5499440 bytes +~~ total memory allocated....: 5499432 bytes +~~ total memory freed........: 5499432 bytes ~~ total allocations/frees...: 113553/113553 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 468 chars diff --git a/test/results/malformed_dns.pcap.out b/test/results/malformed_dns.pcap.out index 6982fe805..938d58cde 100644 --- a/test/results/malformed_dns.pcap.out +++ b/test/results/malformed_dns.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100983 bytes -~~ total memory freed........: 5100983 bytes +~~ total memory allocated....: 5100975 bytes +~~ total memory freed........: 5100975 bytes ~~ total allocations/frees...: 113319/113319 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/malformed_icmp.pcap.out b/test/results/malformed_icmp.pcap.out index 5b06b4cb7..bfb2bd95e 100644 --- a/test/results/malformed_icmp.pcap.out +++ b/test/results/malformed_icmp.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 443 chars diff --git a/test/results/malware.pcap.out b/test/results/malware.pcap.out index bd1a167e0..bb91fc421 100644 --- a/test/results/malware.pcap.out +++ b/test/results/malware.pcap.out @@ -37,8 +37,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5144267 bytes -~~ total memory freed........: 5144267 bytes +~~ total memory allocated....: 5144227 bytes +~~ total memory freed........: 5144227 bytes ~~ total allocations/frees...: 113413/113413 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 453 chars diff --git a/test/results/memcached.cap.out b/test/results/memcached.cap.out index 05cc9bfdf..586f15735 100644 --- a/test/results/memcached.cap.out +++ b/test/results/memcached.cap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103147 bytes -~~ total memory freed........: 5103147 bytes +~~ total memory allocated....: 5103139 bytes +~~ total memory freed........: 5103139 bytes ~~ total allocations/frees...: 113324/113324 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/modbus.pcap.out b/test/results/modbus.pcap.out index 4c01fa645..ac9f866ca 100644 --- a/test/results/modbus.pcap.out +++ b/test/results/modbus.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103767 bytes -~~ total memory freed........: 5103767 bytes +~~ total memory allocated....: 5103759 bytes +~~ total memory freed........: 5103759 bytes ~~ total allocations/frees...: 113415/113415 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/monero.pcap.out b/test/results/monero.pcap.out index 68e7445fb..a7501def5 100644 --- a/test/results/monero.pcap.out +++ b/test/results/monero.pcap.out @@ -22,8 +22,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5123236 bytes -~~ total memory freed........: 5123236 bytes +~~ total memory allocated....: 5123220 bytes +~~ total memory freed........: 5123220 bytes ~~ total allocations/frees...: 113639/113639 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 454 chars diff --git a/test/results/mongodb.pcap.out b/test/results/mongodb.pcap.out index a1a449ec9..a45cc395c 100644 --- a/test/results/mongodb.pcap.out +++ b/test/results/mongodb.pcap.out @@ -43,8 +43,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5107128 bytes -~~ total memory freed........: 5107128 bytes +~~ total memory allocated....: 5107088 bytes +~~ total memory freed........: 5107088 bytes ~~ total allocations/frees...: 113353/113353 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/mpeg.pcap.out b/test/results/mpeg.pcap.out index e988c5725..d1abe9e39 100644 --- a/test/results/mpeg.pcap.out +++ b/test/results/mpeg.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101418 bytes -~~ total memory freed........: 5101418 bytes +~~ total memory allocated....: 5101410 bytes +~~ total memory freed........: 5101410 bytes ~~ total allocations/frees...: 113335/113335 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/mpegts.pcap.out b/test/results/mpegts.pcap.out index dda12a7b5..ddc770947 100644 --- a/test/results/mpegts.pcap.out +++ b/test/results/mpegts.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/mqtt.pcap.out b/test/results/mqtt.pcap.out index 7e707a17d..7ad875f35 100644 --- a/test/results/mqtt.pcap.out +++ b/test/results/mqtt.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101942 bytes -~~ total memory freed........: 5101942 bytes +~~ total memory allocated....: 5101926 bytes +~~ total memory freed........: 5101926 bytes ~~ total allocations/frees...: 113325/113325 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/mssql_tds.pcap.out b/test/results/mssql_tds.pcap.out index 8bc119e24..a2ad03c56 100644 --- a/test/results/mssql_tds.pcap.out +++ b/test/results/mssql_tds.pcap.out @@ -66,8 +66,8 @@ ~~ total active/idle flows...: 12/12 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5150336 bytes -~~ total memory freed........: 5150336 bytes +~~ total memory allocated....: 5150240 bytes +~~ total memory freed........: 5150240 bytes ~~ total allocations/frees...: 113391/113391 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/mysql-8.pcap.out b/test/results/mysql-8.pcap.out index cb3dfe61f..a2a7cd592 100644 --- a/test/results/mysql-8.pcap.out +++ b/test/results/mysql-8.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100925 bytes -~~ total memory freed........: 5100925 bytes +~~ total memory allocated....: 5100917 bytes +~~ total memory freed........: 5100917 bytes ~~ total allocations/frees...: 113317/113317 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/nats.pcap.out b/test/results/nats.pcap.out index 934da384e..8e32a1d7d 100644 --- a/test/results/nats.pcap.out +++ b/test/results/nats.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5106560 bytes -~~ total memory freed........: 5106560 bytes +~~ total memory allocated....: 5106544 bytes +~~ total memory freed........: 5106544 bytes ~~ total allocations/frees...: 113345/113345 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 455 chars diff --git a/test/results/ndpi_match_string_subprotocol__error.pcapng.out b/test/results/ndpi_match_string_subprotocol__error.pcapng.out index 211d4f1d3..17f1cd784 100644 --- a/test/results/ndpi_match_string_subprotocol__error.pcapng.out +++ b/test/results/ndpi_match_string_subprotocol__error.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101277 bytes -~~ total memory freed........: 5101277 bytes +~~ total memory allocated....: 5101269 bytes +~~ total memory freed........: 5101269 bytes ~~ total allocations/frees...: 113329/113329 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 239 chars diff --git a/test/results/nest_log_sink.pcap.out b/test/results/nest_log_sink.pcap.out index d9e38250f..55ade021e 100644 --- a/test/results/nest_log_sink.pcap.out +++ b/test/results/nest_log_sink.pcap.out @@ -126,8 +126,8 @@ ~~ total active/idle flows...: 17/17 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5161783 bytes -~~ total memory freed........: 5161783 bytes +~~ total memory allocated....: 5161647 bytes +~~ total memory freed........: 5161647 bytes ~~ total allocations/frees...: 114147/114147 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/netbios.pcap.out b/test/results/netbios.pcap.out index f4a349feb..0f72b683e 100644 --- a/test/results/netbios.pcap.out +++ b/test/results/netbios.pcap.out @@ -79,8 +79,8 @@ ~~ total active/idle flows...: 15/15 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5122605 bytes -~~ total memory freed........: 5122605 bytes +~~ total memory allocated....: 5122485 bytes +~~ total memory freed........: 5122485 bytes ~~ total allocations/frees...: 113616/113616 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/netbios_wildcard_dns_query.pcap.out b/test/results/netbios_wildcard_dns_query.pcap.out index 100c73194..924dfb1cf 100644 --- a/test/results/netbios_wildcard_dns_query.pcap.out +++ b/test/results/netbios_wildcard_dns_query.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 482 chars diff --git a/test/results/netflix.pcap.out b/test/results/netflix.pcap.out index 27cfa7bee..a22773a58 100644 --- a/test/results/netflix.pcap.out +++ b/test/results/netflix.pcap.out @@ -414,8 +414,8 @@ ~~ total active/idle flows...: 61/61 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5458009 bytes -~~ total memory freed........: 5458009 bytes +~~ total memory allocated....: 5457521 bytes +~~ total memory freed........: 5457521 bytes ~~ total allocations/frees...: 120702/120702 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/netflow-fritz.pcap.out b/test/results/netflow-fritz.pcap.out index 0829b3d83..585e0b8dc 100644 --- a/test/results/netflow-fritz.pcap.out +++ b/test/results/netflow-fritz.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/netflowv9.pcap.out b/test/results/netflowv9.pcap.out index 4ed106b63..815ab6553 100644 --- a/test/results/netflowv9.pcap.out +++ b/test/results/netflowv9.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101099 bytes -~~ total memory freed........: 5101099 bytes +~~ total memory allocated....: 5101091 bytes +~~ total memory freed........: 5101091 bytes ~~ total allocations/frees...: 113323/113323 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/nfsv2.pcap.out b/test/results/nfsv2.pcap.out index 145b238ce..8da37014f 100644 --- a/test/results/nfsv2.pcap.out +++ b/test/results/nfsv2.pcap.out @@ -45,8 +45,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5110565 bytes -~~ total memory freed........: 5110565 bytes +~~ total memory allocated....: 5110509 bytes +~~ total memory freed........: 5110509 bytes ~~ total allocations/frees...: 113487/113487 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/nfsv3.pcap.out b/test/results/nfsv3.pcap.out index 6a7a3cde6..d9f6e3a2a 100644 --- a/test/results/nfsv3.pcap.out +++ b/test/results/nfsv3.pcap.out @@ -50,8 +50,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5110625 bytes -~~ total memory freed........: 5110625 bytes +~~ total memory allocated....: 5110561 bytes +~~ total memory freed........: 5110561 bytes ~~ total allocations/frees...: 113462/113462 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/nintendo.pcap.out b/test/results/nintendo.pcap.out index 7d501ee87..68f77dd28 100644 --- a/test/results/nintendo.pcap.out +++ b/test/results/nintendo.pcap.out @@ -138,8 +138,8 @@ ~~ total active/idle flows...: 21/21 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5158973 bytes -~~ total memory freed........: 5158973 bytes +~~ total memory allocated....: 5158805 bytes +~~ total memory freed........: 5158805 bytes ~~ total allocations/frees...: 114382/114382 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 456 chars diff --git a/test/results/nntp.pcap.out b/test/results/nntp.pcap.out index 16fa8af72..f07521e0e 100644 --- a/test/results/nntp.pcap.out +++ b/test/results/nntp.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103785 bytes -~~ total memory freed........: 5103785 bytes +~~ total memory allocated....: 5103777 bytes +~~ total memory freed........: 5103777 bytes ~~ total allocations/frees...: 113346/113346 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/no_sni.pcap.out b/test/results/no_sni.pcap.out index 0b9a5994e..72c615b49 100644 --- a/test/results/no_sni.pcap.out +++ b/test/results/no_sni.pcap.out @@ -64,8 +64,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5160198 bytes -~~ total memory freed........: 5160198 bytes +~~ total memory allocated....: 5160134 bytes +~~ total memory freed........: 5160134 bytes ~~ total allocations/frees...: 114545/114545 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 453 chars diff --git a/test/results/ocs.pcap.out b/test/results/ocs.pcap.out index 8a6b2b90e..36f643c28 100644 --- a/test/results/ocs.pcap.out +++ b/test/results/ocs.pcap.out @@ -114,8 +114,8 @@ ~~ total active/idle flows...: 20/20 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5155535 bytes -~~ total memory freed........: 5155535 bytes +~~ total memory allocated....: 5155375 bytes +~~ total memory freed........: 5155375 bytes ~~ total allocations/frees...: 114329/114329 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 449 chars diff --git a/test/results/ocsp.pcapng.out b/test/results/ocsp.pcapng.out index e2d8ed631..da006becd 100644 --- a/test/results/ocsp.pcapng.out +++ b/test/results/ocsp.pcapng.out @@ -73,8 +73,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5120265 bytes -~~ total memory freed........: 5120265 bytes +~~ total memory allocated....: 5120185 bytes +~~ total memory freed........: 5120185 bytes ~~ total allocations/frees...: 113732/113732 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/ookla.pcap.out b/test/results/ookla.pcap.out index ad79ccfd1..237b7ff34 100644 --- a/test/results/ookla.pcap.out +++ b/test/results/ookla.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5259447 bytes -~~ total memory freed........: 5259447 bytes +~~ total memory allocated....: 5259431 bytes +~~ total memory freed........: 5259431 bytes ~~ total allocations/frees...: 118406/118406 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/openvpn.pcap.out b/test/results/openvpn.pcap.out index 66753085c..b8df5e05e 100644 --- a/test/results/openvpn.pcap.out +++ b/test/results/openvpn.pcap.out @@ -29,8 +29,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5113243 bytes -~~ total memory freed........: 5113243 bytes +~~ total memory allocated....: 5113219 bytes +~~ total memory freed........: 5113219 bytes ~~ total allocations/frees...: 113618/113618 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/oracle12.pcapng.out b/test/results/oracle12.pcapng.out index 32385cd18..9de25cf27 100644 --- a/test/results/oracle12.pcapng.out +++ b/test/results/oracle12.pcapng.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103437 bytes -~~ total memory freed........: 5103437 bytes +~~ total memory allocated....: 5103429 bytes +~~ total memory freed........: 5103429 bytes ~~ total allocations/frees...: 113334/113334 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 457 chars diff --git a/test/results/os_detected.pcapng.out b/test/results/os_detected.pcapng.out index fc56ecfa6..eeca9e0e4 100644 --- a/test/results/os_detected.pcapng.out +++ b/test/results/os_detected.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111092 bytes -~~ total memory freed........: 5111092 bytes +~~ total memory allocated....: 5111084 bytes +~~ total memory freed........: 5111084 bytes ~~ total allocations/frees...: 113337/113337 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/ospfv2_add_new_prefix.pcap.out b/test/results/ospfv2_add_new_prefix.pcap.out index fc12f867a..6f0495503 100644 --- a/test/results/ospfv2_add_new_prefix.pcap.out +++ b/test/results/ospfv2_add_new_prefix.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100867 bytes -~~ total memory freed........: 5100867 bytes +~~ total memory allocated....: 5100859 bytes +~~ total memory freed........: 5100859 bytes ~~ total allocations/frees...: 113315/113315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 477 chars diff --git a/test/results/pgsql.pcap.out b/test/results/pgsql.pcap.out index b8b81599a..f902222ce 100644 --- a/test/results/pgsql.pcap.out +++ b/test/results/pgsql.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5106908 bytes -~~ total memory freed........: 5106908 bytes +~~ total memory allocated....: 5106892 bytes +~~ total memory freed........: 5106892 bytes ~~ total allocations/frees...: 113357/113357 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/pinterest.pcap.out b/test/results/pinterest.pcap.out index 9a31307b2..d6e06a945 100644 --- a/test/results/pinterest.pcap.out +++ b/test/results/pinterest.pcap.out @@ -247,8 +247,8 @@ ~~ total active/idle flows...: 37/37 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6629442 bytes -~~ total memory freed........: 6629442 bytes +~~ total memory allocated....: 6629146 bytes +~~ total memory freed........: 6629146 bytes ~~ total allocations/frees...: 132273/132273 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/pluralsight.pcap.out b/test/results/pluralsight.pcap.out index 92ed5ff92..9be2e20eb 100644 --- a/test/results/pluralsight.pcap.out +++ b/test/results/pluralsight.pcap.out @@ -55,8 +55,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5152491 bytes -~~ total memory freed........: 5152491 bytes +~~ total memory allocated....: 5152443 bytes +~~ total memory freed........: 5152443 bytes ~~ total allocations/frees...: 113418/113418 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 467 chars diff --git a/test/results/pop3.pcap.out b/test/results/pop3.pcap.out index 5dfec9c8e..4528d6a0f 100644 --- a/test/results/pop3.pcap.out +++ b/test/results/pop3.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103756 bytes -~~ total memory freed........: 5103756 bytes +~~ total memory allocated....: 5103748 bytes +~~ total memory freed........: 5103748 bytes ~~ total allocations/frees...: 113345/113345 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/pops.pcapng.out b/test/results/pops.pcapng.out index fde9e9d28..8f37b364b 100644 --- a/test/results/pops.pcapng.out +++ b/test/results/pops.pcapng.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103002 bytes -~~ total memory freed........: 5103002 bytes +~~ total memory allocated....: 5102994 bytes +~~ total memory freed........: 5102994 bytes ~~ total allocations/frees...: 113319/113319 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/pps.pcap.out b/test/results/pps.pcap.out index 4cd647cb0..85dc12a4e 100644 --- a/test/results/pps.pcap.out +++ b/test/results/pps.pcap.out @@ -572,8 +572,8 @@ ~~ total active/idle flows...: 107/107 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5294776 bytes -~~ total memory freed........: 5294776 bytes +~~ total memory allocated....: 5293920 bytes +~~ total memory freed........: 5293920 bytes ~~ total allocations/frees...: 116326/116326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 451 chars diff --git a/test/results/pptp.pcap.out b/test/results/pptp.pcap.out index ebe581745..8e8087c12 100644 --- a/test/results/pptp.pcap.out +++ b/test/results/pptp.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103553 bytes -~~ total memory freed........: 5103553 bytes +~~ total memory allocated....: 5103545 bytes +~~ total memory freed........: 5103545 bytes ~~ total allocations/frees...: 113338/113338 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/punycode-idn.pcap.out b/test/results/punycode-idn.pcap.out index 678bd87c3..53680f7d7 100644 --- a/test/results/punycode-idn.pcap.out +++ b/test/results/punycode-idn.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103060 bytes -~~ total memory freed........: 5103060 bytes +~~ total memory allocated....: 5103036 bytes +~~ total memory freed........: 5103036 bytes ~~ total allocations/frees...: 113338/113338 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/quic-23.pcap.out b/test/results/quic-23.pcap.out index fafb16928..010784690 100644 --- a/test/results/quic-23.pcap.out +++ b/test/results/quic-23.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111571 bytes -~~ total memory freed........: 5111571 bytes +~~ total memory allocated....: 5111563 bytes +~~ total memory freed........: 5111563 bytes ~~ total allocations/frees...: 113354/113354 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/quic-24.pcap.out b/test/results/quic-24.pcap.out index 7cb10bff6..63069c9a4 100644 --- a/test/results/quic-24.pcap.out +++ b/test/results/quic-24.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111352 bytes -~~ total memory freed........: 5111352 bytes +~~ total memory allocated....: 5111344 bytes +~~ total memory freed........: 5111344 bytes ~~ total allocations/frees...: 113349/113349 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/quic-27.pcap.out b/test/results/quic-27.pcap.out index 35dfd184d..b717b3369 100644 --- a/test/results/quic-27.pcap.out +++ b/test/results/quic-27.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111733 bytes -~~ total memory freed........: 5111733 bytes +~~ total memory allocated....: 5111725 bytes +~~ total memory freed........: 5111725 bytes ~~ total allocations/frees...: 113355/113355 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/quic-28.pcap.out b/test/results/quic-28.pcap.out index 748785356..4df287e45 100644 --- a/test/results/quic-28.pcap.out +++ b/test/results/quic-28.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5118155 bytes -~~ total memory freed........: 5118155 bytes +~~ total memory allocated....: 5118147 bytes +~~ total memory freed........: 5118147 bytes ~~ total allocations/frees...: 113587/113587 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/quic-29.pcap.out b/test/results/quic-29.pcap.out index 4c5e1c74a..99291ba1e 100644 --- a/test/results/quic-29.pcap.out +++ b/test/results/quic-29.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111352 bytes -~~ total memory freed........: 5111352 bytes +~~ total memory allocated....: 5111344 bytes +~~ total memory freed........: 5111344 bytes ~~ total allocations/frees...: 113349/113349 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/quic-33.pcapng.out b/test/results/quic-33.pcapng.out index 208811386..d11a16b19 100644 --- a/test/results/quic-33.pcapng.out +++ b/test/results/quic-33.pcapng.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5139751 bytes -~~ total memory freed........: 5139751 bytes +~~ total memory allocated....: 5139743 bytes +~~ total memory freed........: 5139743 bytes ~~ total allocations/frees...: 114326/114326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/quic-34.pcap.out b/test/results/quic-34.pcap.out index 863bda71a..88ab27a66 100644 --- a/test/results/quic-34.pcap.out +++ b/test/results/quic-34.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111201 bytes -~~ total memory freed........: 5111201 bytes +~~ total memory allocated....: 5111193 bytes +~~ total memory freed........: 5111193 bytes ~~ total allocations/frees...: 113338/113338 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/quic-fuzz-overflow.pcapng.out b/test/results/quic-fuzz-overflow.pcapng.out index 486f8e4ed..7e52d74ef 100644 --- a/test/results/quic-fuzz-overflow.pcapng.out +++ b/test/results/quic-fuzz-overflow.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100838 bytes -~~ total memory freed........: 5100838 bytes +~~ total memory allocated....: 5100830 bytes +~~ total memory freed........: 5100830 bytes ~~ total allocations/frees...: 113314/113314 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 476 chars diff --git a/test/results/quic-mvfst-22.pcap.out b/test/results/quic-mvfst-22.pcap.out index fb121c9c7..467e427cb 100644 --- a/test/results/quic-mvfst-22.pcap.out +++ b/test/results/quic-mvfst-22.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5125140 bytes -~~ total memory freed........: 5125140 bytes +~~ total memory allocated....: 5125132 bytes +~~ total memory freed........: 5125132 bytes ~~ total allocations/frees...: 113824/113824 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/quic-mvfst-22_decryption_error.pcap.out b/test/results/quic-mvfst-22_decryption_error.pcap.out index 66337668f..3a3ab7db2 100644 --- a/test/results/quic-mvfst-22_decryption_error.pcap.out +++ b/test/results/quic-mvfst-22_decryption_error.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5121126 bytes -~~ total memory freed........: 5121126 bytes +~~ total memory allocated....: 5121118 bytes +~~ total memory freed........: 5121118 bytes ~~ total allocations/frees...: 113685/113685 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 486 chars diff --git a/test/results/quic-mvfst-27.pcapng.out b/test/results/quic-mvfst-27.pcapng.out index 334769c53..5ef991568 100644 --- a/test/results/quic-mvfst-27.pcapng.out +++ b/test/results/quic-mvfst-27.pcapng.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111500 bytes -~~ total memory freed........: 5111500 bytes +~~ total memory allocated....: 5111492 bytes +~~ total memory freed........: 5111492 bytes ~~ total allocations/frees...: 113354/113354 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 471 chars diff --git a/test/results/quic-mvfst-exp.pcap.out b/test/results/quic-mvfst-exp.pcap.out index 99077f9d7..0c0482925 100644 --- a/test/results/quic-mvfst-exp.pcap.out +++ b/test/results/quic-mvfst-exp.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111793 bytes -~~ total memory freed........: 5111793 bytes +~~ total memory allocated....: 5111785 bytes +~~ total memory freed........: 5111785 bytes ~~ total allocations/frees...: 113364/113364 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 470 chars diff --git a/test/results/quic-v2-01.pcapng.out b/test/results/quic-v2-01.pcapng.out index 8970df80c..eef97c68b 100644 --- a/test/results/quic-v2-01.pcapng.out +++ b/test/results/quic-v2-01.pcapng.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5137852 bytes -~~ total memory freed........: 5137852 bytes +~~ total memory allocated....: 5137844 bytes +~~ total memory freed........: 5137844 bytes ~~ total allocations/frees...: 114257/114257 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 468 chars diff --git a/test/results/quic.pcap.out b/test/results/quic.pcap.out index 835d80c7b..76e012d8e 100644 --- a/test/results/quic.pcap.out +++ b/test/results/quic.pcap.out @@ -71,8 +71,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5123936 bytes -~~ total memory freed........: 5123936 bytes +~~ total memory allocated....: 5123856 bytes +~~ total memory freed........: 5123856 bytes ~~ total allocations/frees...: 113866/113866 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/quic046.pcap.out b/test/results/quic046.pcap.out index ffc188c3d..a5915d5b5 100644 --- a/test/results/quic046.pcap.out +++ b/test/results/quic046.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103757 bytes -~~ total memory freed........: 5103757 bytes +~~ total memory allocated....: 5103749 bytes +~~ total memory freed........: 5103749 bytes ~~ total allocations/frees...: 113414/113414 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/quic_0RTT.pcap.out b/test/results/quic_0RTT.pcap.out index 8ab19ed38..d8f2cd0cc 100644 --- a/test/results/quic_0RTT.pcap.out +++ b/test/results/quic_0RTT.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5109541 bytes -~~ total memory freed........: 5109541 bytes +~~ total memory allocated....: 5109533 bytes +~~ total memory freed........: 5109533 bytes ~~ total allocations/frees...: 113336/113336 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/quic_crypto_aes_auth_size.pcap.out b/test/results/quic_crypto_aes_auth_size.pcap.out index 5d8fa448d..01526e0d6 100644 --- a/test/results/quic_crypto_aes_auth_size.pcap.out +++ b/test/results/quic_crypto_aes_auth_size.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5126679 bytes -~~ total memory freed........: 5126679 bytes +~~ total memory allocated....: 5126663 bytes +~~ total memory freed........: 5126663 bytes ~~ total allocations/frees...: 113362/113362 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 481 chars diff --git a/test/results/quic_frags_ch_in_multiple_packets.pcapng.out b/test/results/quic_frags_ch_in_multiple_packets.pcapng.out index ff423d459..53b02d443 100644 --- a/test/results/quic_frags_ch_in_multiple_packets.pcapng.out +++ b/test/results/quic_frags_ch_in_multiple_packets.pcapng.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5125839 bytes -~~ total memory freed........: 5125839 bytes +~~ total memory allocated....: 5125831 bytes +~~ total memory freed........: 5125831 bytes ~~ total allocations/frees...: 113359/113359 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 491 chars diff --git a/test/results/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out b/test/results/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out index 15be45393..c84450c19 100644 --- a/test/results/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out +++ b/test/results/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out @@ -532,8 +532,8 @@ ~~ total active/idle flows...: 113/113 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6895458 bytes -~~ total memory freed........: 6895458 bytes +~~ total memory allocated....: 6894554 bytes +~~ total memory freed........: 6894554 bytes ~~ total allocations/frees...: 116540/116540 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 506 chars diff --git a/test/results/quic_interop_V.pcapng.out b/test/results/quic_interop_V.pcapng.out index 1ed75895c..b12cd3801 100644 --- a/test/results/quic_interop_V.pcapng.out +++ b/test/results/quic_interop_V.pcapng.out @@ -406,8 +406,8 @@ ~~ total active/idle flows...: 77/77 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5813977 bytes -~~ total memory freed........: 5813977 bytes +~~ total memory allocated....: 5813361 bytes +~~ total memory freed........: 5813361 bytes ~~ total allocations/frees...: 115110/115110 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 472 chars diff --git a/test/results/quic_q39.pcap.out b/test/results/quic_q39.pcap.out index 2d42588a6..4a296abd6 100644 --- a/test/results/quic_q39.pcap.out +++ b/test/results/quic_q39.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102595 bytes -~~ total memory freed........: 5102595 bytes +~~ total memory allocated....: 5102587 bytes +~~ total memory freed........: 5102587 bytes ~~ total allocations/frees...: 113374/113374 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/quic_q43.pcap.out b/test/results/quic_q43.pcap.out index 1488d006a..dfbe4a9dd 100644 --- a/test/results/quic_q43.pcap.out +++ b/test/results/quic_q43.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100867 bytes -~~ total memory freed........: 5100867 bytes +~~ total memory allocated....: 5100859 bytes +~~ total memory freed........: 5100859 bytes ~~ total allocations/frees...: 113315/113315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/quic_q46.pcap.out b/test/results/quic_q46.pcap.out index 8ca83f410..d78dccb36 100644 --- a/test/results/quic_q46.pcap.out +++ b/test/results/quic_q46.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101433 bytes -~~ total memory freed........: 5101433 bytes +~~ total memory allocated....: 5101425 bytes +~~ total memory freed........: 5101425 bytes ~~ total allocations/frees...: 113334/113334 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/quic_q46_b.pcap.out b/test/results/quic_q46_b.pcap.out index a8fab4397..f47920d94 100644 --- a/test/results/quic_q46_b.pcap.out +++ b/test/results/quic_q46_b.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101435 bytes -~~ total memory freed........: 5101435 bytes +~~ total memory allocated....: 5101427 bytes +~~ total memory freed........: 5101427 bytes ~~ total allocations/frees...: 113334/113334 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/quic_q50.pcap.out b/test/results/quic_q50.pcap.out index 941c9a966..5720d4365 100644 --- a/test/results/quic_q50.pcap.out +++ b/test/results/quic_q50.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111750 bytes -~~ total memory freed........: 5111750 bytes +~~ total memory allocated....: 5111742 bytes +~~ total memory freed........: 5111742 bytes ~~ total allocations/frees...: 113353/113353 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/quic_t50.pcap.out b/test/results/quic_t50.pcap.out index d70be81a1..e0e7856f1 100644 --- a/test/results/quic_t50.pcap.out +++ b/test/results/quic_t50.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111537 bytes -~~ total memory freed........: 5111537 bytes +~~ total memory allocated....: 5111529 bytes +~~ total memory freed........: 5111529 bytes ~~ total allocations/frees...: 113347/113347 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/quic_t51.pcap.out b/test/results/quic_t51.pcap.out index c76337a35..14c6e208c 100644 --- a/test/results/quic_t51.pcap.out +++ b/test/results/quic_t51.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5129810 bytes -~~ total memory freed........: 5129810 bytes +~~ total memory allocated....: 5129802 bytes +~~ total memory freed........: 5129802 bytes ~~ total allocations/frees...: 113977/113977 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/quickplay.pcap.out b/test/results/quickplay.pcap.out index 9d8bbc2f0..ce2214521 100644 --- a/test/results/quickplay.pcap.out +++ b/test/results/quickplay.pcap.out @@ -127,8 +127,8 @@ ~~ total active/idle flows...: 21/21 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5128033 bytes -~~ total memory freed........: 5128033 bytes +~~ total memory allocated....: 5127865 bytes +~~ total memory freed........: 5127865 bytes ~~ total allocations/frees...: 113584/113584 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/radius_false_positive.pcapng.out b/test/results/radius_false_positive.pcapng.out index c64e3dceb..67b3ed465 100644 --- a/test/results/radius_false_positive.pcapng.out +++ b/test/results/radius_false_positive.pcapng.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101099 bytes -~~ total memory freed........: 5101099 bytes +~~ total memory allocated....: 5101091 bytes +~~ total memory freed........: 5101091 bytes ~~ total allocations/frees...: 113323/113323 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 479 chars diff --git a/test/results/rdp.pcap.out b/test/results/rdp.pcap.out index a2cfe1af9..67e053dd0 100644 --- a/test/results/rdp.pcap.out +++ b/test/results/rdp.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5159099 bytes -~~ total memory freed........: 5159099 bytes +~~ total memory allocated....: 5159091 bytes +~~ total memory freed........: 5159091 bytes ~~ total allocations/frees...: 115323/115323 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 436 chars diff --git a/test/results/reasm_crash_anon.pcapng.out b/test/results/reasm_crash_anon.pcapng.out index 88076737b..74043155f 100644 --- a/test/results/reasm_crash_anon.pcapng.out +++ b/test/results/reasm_crash_anon.pcapng.out @@ -35,8 +35,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5115668 bytes -~~ total memory freed........: 5115668 bytes +~~ total memory allocated....: 5115660 bytes +~~ total memory freed........: 5115660 bytes ~~ total allocations/frees...: 113517/113517 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 220 chars diff --git a/test/results/reasm_segv_anon.pcapng.out b/test/results/reasm_segv_anon.pcapng.out index 94c62db69..80ba31770 100644 --- a/test/results/reasm_segv_anon.pcapng.out +++ b/test/results/reasm_segv_anon.pcapng.out @@ -71,8 +71,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103187 bytes -~~ total memory freed........: 5103187 bytes +~~ total memory allocated....: 5103179 bytes +~~ total memory freed........: 5103179 bytes ~~ total allocations/frees...: 113395/113395 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 244 chars diff --git a/test/results/reddit.pcap.out b/test/results/reddit.pcap.out index e45fae61d..c4ac8f750 100644 --- a/test/results/reddit.pcap.out +++ b/test/results/reddit.pcap.out @@ -453,8 +453,8 @@ ~~ total active/idle flows...: 60/60 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5720595 bytes -~~ total memory freed........: 5720595 bytes +~~ total memory allocated....: 5720115 bytes +~~ total memory freed........: 5720115 bytes ~~ total allocations/frees...: 125486/125486 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/rsync.pcap.out b/test/results/rsync.pcap.out index c6c6bc183..7e29e7a4e 100644 --- a/test/results/rsync.pcap.out +++ b/test/results/rsync.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103727 bytes -~~ total memory freed........: 5103727 bytes +~~ total memory allocated....: 5103719 bytes +~~ total memory freed........: 5103719 bytes ~~ total allocations/frees...: 113344/113344 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/rtmp.pcap.out b/test/results/rtmp.pcap.out index 20966c547..1522cb661 100644 --- a/test/results/rtmp.pcap.out +++ b/test/results/rtmp.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103611 bytes -~~ total memory freed........: 5103611 bytes +~~ total memory allocated....: 5103603 bytes +~~ total memory freed........: 5103603 bytes ~~ total allocations/frees...: 113340/113340 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 452 chars diff --git a/test/results/rtsp.pcap.out b/test/results/rtsp.pcap.out index 412768948..260dbc877 100644 --- a/test/results/rtsp.pcap.out +++ b/test/results/rtsp.pcap.out @@ -51,8 +51,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5136901 bytes -~~ total memory freed........: 5136901 bytes +~~ total memory allocated....: 5136845 bytes +~~ total memory freed........: 5136845 bytes ~~ total allocations/frees...: 113907/113907 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/rtsp_setup_http.pcapng.out b/test/results/rtsp_setup_http.pcapng.out index 62fc82d6d..3513d7350 100644 --- a/test/results/rtsp_setup_http.pcapng.out +++ b/test/results/rtsp_setup_http.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102938 bytes -~~ total memory freed........: 5102938 bytes +~~ total memory allocated....: 5102930 bytes +~~ total memory freed........: 5102930 bytes ~~ total allocations/frees...: 113316/113316 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 473 chars diff --git a/test/results/rx.pcap.out b/test/results/rx.pcap.out index 26ee17731..54169a36f 100644 --- a/test/results/rx.pcap.out +++ b/test/results/rx.pcap.out @@ -39,8 +39,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5108125 bytes -~~ total memory freed........: 5108125 bytes +~~ total memory allocated....: 5108085 bytes +~~ total memory freed........: 5108085 bytes ~~ total allocations/frees...: 113457/113457 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 458 chars diff --git a/test/results/s7comm.pcap.out b/test/results/s7comm.pcap.out index e27e7d0ff..ba530b86c 100644 --- a/test/results/s7comm.pcap.out +++ b/test/results/s7comm.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102404 bytes -~~ total memory freed........: 5102404 bytes +~~ total memory allocated....: 5102396 bytes +~~ total memory freed........: 5102396 bytes ~~ total allocations/frees...: 113368/113368 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/safari.pcap.out b/test/results/safari.pcap.out index 8115dcf76..d60ffd9db 100644 --- a/test/results/safari.pcap.out +++ b/test/results/safari.pcap.out @@ -60,8 +60,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5307564 bytes -~~ total memory freed........: 5307564 bytes +~~ total memory allocated....: 5307508 bytes +~~ total memory freed........: 5307508 bytes ~~ total allocations/frees...: 119369/119369 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/salesforce.pcap.out b/test/results/salesforce.pcap.out index fb9b8ad25..ccd85573f 100644 --- a/test/results/salesforce.pcap.out +++ b/test/results/salesforce.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5109675 bytes -~~ total memory freed........: 5109675 bytes +~~ total memory allocated....: 5109667 bytes +~~ total memory freed........: 5109667 bytes ~~ total allocations/frees...: 113336/113336 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/sccp_hw_conf_register.pcapng.out b/test/results/sccp_hw_conf_register.pcapng.out index e9014a4e6..0f7101e98 100644 --- a/test/results/sccp_hw_conf_register.pcapng.out +++ b/test/results/sccp_hw_conf_register.pcapng.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103350 bytes -~~ total memory freed........: 5103350 bytes +~~ total memory allocated....: 5103342 bytes +~~ total memory freed........: 5103342 bytes ~~ total allocations/frees...: 113331/113331 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/sctp.cap.out b/test/results/sctp.cap.out index 6bb90951c..7d38ecab7 100644 --- a/test/results/sctp.cap.out +++ b/test/results/sctp.cap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101797 bytes -~~ total memory freed........: 5101797 bytes +~~ total memory allocated....: 5101781 bytes +~~ total memory freed........: 5101781 bytes ~~ total allocations/frees...: 113320/113320 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/selfsigned.pcap.out b/test/results/selfsigned.pcap.out index 667607715..55e305c55 100644 --- a/test/results/selfsigned.pcap.out +++ b/test/results/selfsigned.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111721 bytes -~~ total memory freed........: 5111721 bytes +~~ total memory allocated....: 5111713 bytes +~~ total memory freed........: 5111713 bytes ~~ total allocations/frees...: 113339/113339 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/sflow.pcap.out b/test/results/sflow.pcap.out index d70926220..62f650e02 100644 --- a/test/results/sflow.pcap.out +++ b/test/results/sflow.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101070 bytes -~~ total memory freed........: 5101070 bytes +~~ total memory allocated....: 5101062 bytes +~~ total memory freed........: 5101062 bytes ~~ total allocations/frees...: 113322/113322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/signal.pcap.out b/test/results/signal.pcap.out index 255336672..14d9007d6 100644 --- a/test/results/signal.pcap.out +++ b/test/results/signal.pcap.out @@ -143,8 +143,8 @@ ~~ total active/idle flows...: 19/19 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5192638 bytes -~~ total memory freed........: 5192638 bytes +~~ total memory allocated....: 5192486 bytes +~~ total memory freed........: 5192486 bytes ~~ total allocations/frees...: 114088/114088 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/simple-dnscrypt.pcap.out b/test/results/simple-dnscrypt.pcap.out index 747274cc8..daef5d58a 100644 --- a/test/results/simple-dnscrypt.pcap.out +++ b/test/results/simple-dnscrypt.pcap.out @@ -41,8 +41,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5196092 bytes -~~ total memory freed........: 5196092 bytes +~~ total memory allocated....: 5196060 bytes +~~ total memory freed........: 5196060 bytes ~~ total allocations/frees...: 113475/113475 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/sip.pcap.out b/test/results/sip.pcap.out index 64da4c7ee..56a7d0ba7 100644 --- a/test/results/sip.pcap.out +++ b/test/results/sip.pcap.out @@ -40,8 +40,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5106673 bytes -~~ total memory freed........: 5106673 bytes +~~ total memory allocated....: 5106641 bytes +~~ total memory freed........: 5106641 bytes ~~ total allocations/frees...: 113434/113434 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/sites.pcapng.out b/test/results/sites.pcapng.out index 42be06ba9..145e43eb4 100644 --- a/test/results/sites.pcapng.out +++ b/test/results/sites.pcapng.out @@ -344,8 +344,8 @@ ~~ total active/idle flows...: 47/47 ~~ total timeout flows.......: 4 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5470394 bytes -~~ total memory freed........: 5470394 bytes +~~ total memory allocated....: 5470018 bytes +~~ total memory freed........: 5470018 bytes ~~ total allocations/frees...: 114430/114430 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/skype-conference-call.pcap.out b/test/results/skype-conference-call.pcap.out index 57ade673c..b7d815a1a 100644 --- a/test/results/skype-conference-call.pcap.out +++ b/test/results/skype-conference-call.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5114817 bytes -~~ total memory freed........: 5114817 bytes +~~ total memory allocated....: 5114809 bytes +~~ total memory freed........: 5114809 bytes ~~ total allocations/frees...: 113515/113515 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 477 chars diff --git a/test/results/skype.pcap.out b/test/results/skype.pcap.out index 6662d8c1d..8ca68666f 100644 --- a/test/results/skype.pcap.out +++ b/test/results/skype.pcap.out @@ -1473,8 +1473,8 @@ ~~ total active/idle flows...: 293/293 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5780884 bytes -~~ total memory freed........: 5780884 bytes +~~ total memory allocated....: 5778540 bytes +~~ total memory freed........: 5778540 bytes ~~ total allocations/frees...: 117408/117408 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 444 chars diff --git a/test/results/skype_no_unknown.pcap.out b/test/results/skype_no_unknown.pcap.out index 8b65e4a38..4b6d7e612 100644 --- a/test/results/skype_no_unknown.pcap.out +++ b/test/results/skype_no_unknown.pcap.out @@ -1299,8 +1299,8 @@ ~~ total active/idle flows...: 267/267 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5622294 bytes -~~ total memory freed........: 5622294 bytes +~~ total memory allocated....: 5620158 bytes +~~ total memory freed........: 5620158 bytes ~~ total allocations/frees...: 116296/116296 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 197 chars diff --git a/test/results/skype_udp.pcap.out b/test/results/skype_udp.pcap.out index 47d8cacc9..c5f851942 100644 --- a/test/results/skype_udp.pcap.out +++ b/test/results/skype_udp.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100954 bytes -~~ total memory freed........: 5100954 bytes +~~ total memory allocated....: 5100946 bytes +~~ total memory freed........: 5100946 bytes ~~ total allocations/frees...: 113318/113318 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/smb_deletefile.pcap.out b/test/results/smb_deletefile.pcap.out index 0ab22d547..c4314036b 100644 --- a/test/results/smb_deletefile.pcap.out +++ b/test/results/smb_deletefile.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103738 bytes -~~ total memory freed........: 5103738 bytes +~~ total memory allocated....: 5103730 bytes +~~ total memory freed........: 5103730 bytes ~~ total allocations/frees...: 113414/113414 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/smbv1.pcap.out b/test/results/smbv1.pcap.out index 240b5736a..5a1984724 100644 --- a/test/results/smbv1.pcap.out +++ b/test/results/smbv1.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103060 bytes -~~ total memory freed........: 5103060 bytes +~~ total memory allocated....: 5103052 bytes +~~ total memory freed........: 5103052 bytes ~~ total allocations/frees...: 113321/113321 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/smpp_in_general.pcap.out b/test/results/smpp_in_general.pcap.out index 4886c3c83..d6c8e1ca9 100644 --- a/test/results/smpp_in_general.pcap.out +++ b/test/results/smpp_in_general.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103350 bytes -~~ total memory freed........: 5103350 bytes +~~ total memory allocated....: 5103342 bytes +~~ total memory freed........: 5103342 bytes ~~ total allocations/frees...: 113331/113331 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/smtp-starttls.pcap.out b/test/results/smtp-starttls.pcap.out index e47427cf7..42c165158 100644 --- a/test/results/smtp-starttls.pcap.out +++ b/test/results/smtp-starttls.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101853 bytes -~~ total memory freed........: 5101853 bytes +~~ total memory allocated....: 5101845 bytes +~~ total memory freed........: 5101845 bytes ~~ total allocations/frees...: 113349/113349 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/smtp.pcap.out b/test/results/smtp.pcap.out index c5a4af7d0..2868398ae 100644 --- a/test/results/smtp.pcap.out +++ b/test/results/smtp.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5105612 bytes -~~ total memory freed........: 5105612 bytes +~~ total memory allocated....: 5105604 bytes +~~ total memory freed........: 5105604 bytes ~~ total allocations/frees...: 113409/113409 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 456 chars diff --git a/test/results/smtps.pcapng.out b/test/results/smtps.pcapng.out index 5dd89248c..0bd00a563 100644 --- a/test/results/smtps.pcapng.out +++ b/test/results/smtps.pcapng.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102973 bytes -~~ total memory freed........: 5102973 bytes +~~ total memory allocated....: 5102965 bytes +~~ total memory freed........: 5102965 bytes ~~ total allocations/frees...: 113318/113318 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/snapchat.pcap.out b/test/results/snapchat.pcap.out index b1a69bf9d..006791095 100644 --- a/test/results/snapchat.pcap.out +++ b/test/results/snapchat.pcap.out @@ -30,8 +30,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5110339 bytes -~~ total memory freed........: 5110339 bytes +~~ total memory allocated....: 5110315 bytes +~~ total memory freed........: 5110315 bytes ~~ total allocations/frees...: 113380/113380 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 456 chars diff --git a/test/results/snapchat_call.pcapng.out b/test/results/snapchat_call.pcapng.out index c3f27a434..014a930f7 100644 --- a/test/results/snapchat_call.pcapng.out +++ b/test/results/snapchat_call.pcapng.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102259 bytes -~~ total memory freed........: 5102259 bytes +~~ total memory allocated....: 5102251 bytes +~~ total memory freed........: 5102251 bytes ~~ total allocations/frees...: 113363/113363 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 471 chars diff --git a/test/results/snmp.pcap.out b/test/results/snmp.pcap.out index c75e19b3d..69ce40507 100644 --- a/test/results/snmp.pcap.out +++ b/test/results/snmp.pcap.out @@ -109,8 +109,8 @@ ~~ total active/idle flows...: 17/17 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5116849 bytes -~~ total memory freed........: 5116849 bytes +~~ total memory allocated....: 5116713 bytes +~~ total memory freed........: 5116713 bytes ~~ total allocations/frees...: 113433/113433 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/socks-http-example.pcap.out b/test/results/socks-http-example.pcap.out index 152257516..a90ebb9a8 100644 --- a/test/results/socks-http-example.pcap.out +++ b/test/results/socks-http-example.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5110031 bytes -~~ total memory freed........: 5110031 bytes +~~ total memory allocated....: 5110007 bytes +~~ total memory freed........: 5110007 bytes ~~ total allocations/frees...: 113368/113368 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 474 chars diff --git a/test/results/someip-tp.pcap.out b/test/results/someip-tp.pcap.out index 4259070b2..e774ec31e 100644 --- a/test/results/someip-tp.pcap.out +++ b/test/results/someip-tp.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101070 bytes -~~ total memory freed........: 5101070 bytes +~~ total memory allocated....: 5101062 bytes +~~ total memory freed........: 5101062 bytes ~~ total allocations/frees...: 113322/113322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/someip-udp-method-call.pcapng.out b/test/results/someip-udp-method-call.pcapng.out index ed44801b4..8d7be26c9 100644 --- a/test/results/someip-udp-method-call.pcapng.out +++ b/test/results/someip-udp-method-call.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101768 bytes -~~ total memory freed........: 5101768 bytes +~~ total memory allocated....: 5101752 bytes +~~ total memory freed........: 5101752 bytes ~~ total allocations/frees...: 113319/113319 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 480 chars diff --git a/test/results/ssdp-m-search-ua.pcap.out b/test/results/ssdp-m-search-ua.pcap.out index d1da65907..6cfd87fce 100644 --- a/test/results/ssdp-m-search-ua.pcap.out +++ b/test/results/ssdp-m-search-ua.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100961 bytes -~~ total memory freed........: 5100961 bytes +~~ total memory allocated....: 5100953 bytes +~~ total memory freed........: 5100953 bytes ~~ total allocations/frees...: 113318/113318 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 472 chars diff --git a/test/results/ssdp-m-search.pcap.out b/test/results/ssdp-m-search.pcap.out index 48fa266e1..0a396702d 100644 --- a/test/results/ssdp-m-search.pcap.out +++ b/test/results/ssdp-m-search.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101360 bytes -~~ total memory freed........: 5101360 bytes +~~ total memory allocated....: 5101352 bytes +~~ total memory freed........: 5101352 bytes ~~ total allocations/frees...: 113332/113332 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/ssh.pcap.out b/test/results/ssh.pcap.out index 1fded3fa3..1999a6306 100644 --- a/test/results/ssh.pcap.out +++ b/test/results/ssh.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5110295 bytes -~~ total memory freed........: 5110295 bytes +~~ total memory allocated....: 5110287 bytes +~~ total memory freed........: 5110287 bytes ~~ total allocations/frees...: 113575/113575 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/ssl-cert-name-mismatch.pcap.out b/test/results/ssl-cert-name-mismatch.pcap.out index 9d7d3a11f..6211f75a7 100644 --- a/test/results/ssl-cert-name-mismatch.pcap.out +++ b/test/results/ssl-cert-name-mismatch.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5109626 bytes -~~ total memory freed........: 5109626 bytes +~~ total memory allocated....: 5109618 bytes +~~ total memory freed........: 5109618 bytes ~~ total allocations/frees...: 113342/113342 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 478 chars diff --git a/test/results/starcraft_battle.pcap.out b/test/results/starcraft_battle.pcap.out index 66e288542..ae49256d7 100644 --- a/test/results/starcraft_battle.pcap.out +++ b/test/results/starcraft_battle.pcap.out @@ -321,8 +321,8 @@ ~~ total active/idle flows...: 52/52 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5194934 bytes -~~ total memory freed........: 5194934 bytes +~~ total memory allocated....: 5194518 bytes +~~ total memory freed........: 5194518 bytes ~~ total allocations/frees...: 114333/114333 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 199 chars diff --git a/test/results/steam.pcap.out b/test/results/steam.pcap.out index a15541fde..69a7616fc 100644 --- a/test/results/steam.pcap.out +++ b/test/results/steam.pcap.out @@ -270,8 +270,8 @@ ~~ total active/idle flows...: 55/55 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5150913 bytes -~~ total memory freed........: 5150913 bytes +~~ total memory allocated....: 5150473 bytes +~~ total memory freed........: 5150473 bytes ~~ total allocations/frees...: 113579/113579 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/steam_datagram_relay_ping.pcapng.out b/test/results/steam_datagram_relay_ping.pcapng.out index 9d808c574..a8d80397e 100644 --- a/test/results/steam_datagram_relay_ping.pcapng.out +++ b/test/results/steam_datagram_relay_ping.pcapng.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100867 bytes -~~ total memory freed........: 5100867 bytes +~~ total memory allocated....: 5100859 bytes +~~ total memory freed........: 5100859 bytes ~~ total allocations/frees...: 113315/113315 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 483 chars diff --git a/test/results/stun_facebook.pcapng.out b/test/results/stun_facebook.pcapng.out index f6f46edae..a64abd70e 100644 --- a/test/results/stun_facebook.pcapng.out +++ b/test/results/stun_facebook.pcapng.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111192 bytes -~~ total memory freed........: 5111192 bytes +~~ total memory allocated....: 5111184 bytes +~~ total memory freed........: 5111184 bytes ~~ total allocations/frees...: 113390/113390 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 471 chars diff --git a/test/results/stun_signal.pcapng.out b/test/results/stun_signal.pcapng.out index b02d546eb..9cccf3481 100644 --- a/test/results/stun_signal.pcapng.out +++ b/test/results/stun_signal.pcapng.out @@ -147,8 +147,8 @@ ~~ total active/idle flows...: 23/23 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5141541 bytes -~~ total memory freed........: 5141541 bytes +~~ total memory allocated....: 5141357 bytes +~~ total memory freed........: 5141357 bytes ~~ total allocations/frees...: 113841/113841 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/synscan.pcap.out b/test/results/synscan.pcap.out index ea9c358d7..f462c79fd 100644 --- a/test/results/synscan.pcap.out +++ b/test/results/synscan.pcap.out @@ -7996,8 +7996,8 @@ ~~ total active/idle flows...: 1994/1994 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6897024 bytes -~~ total memory freed........: 6897024 bytes +~~ total memory allocated....: 6881072 bytes +~~ total memory freed........: 6881072 bytes ~~ total allocations/frees...: 121303/121303 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/syslog.pcapng.out b/test/results/syslog.pcapng.out index b4207820a..8d5b915ad 100644 --- a/test/results/syslog.pcapng.out +++ b/test/results/syslog.pcapng.out @@ -48,8 +48,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5106621 bytes -~~ total memory freed........: 5106621 bytes +~~ total memory allocated....: 5106565 bytes +~~ total memory freed........: 5106565 bytes ~~ total allocations/frees...: 113351/113351 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/teams.pcap.out b/test/results/teams.pcap.out index f39472e52..7fed6e7d2 100644 --- a/test/results/teams.pcap.out +++ b/test/results/teams.pcap.out @@ -603,8 +603,8 @@ ~~ total active/idle flows...: 83/83 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6500040 bytes -~~ total memory freed........: 6500040 bytes +~~ total memory allocated....: 6499376 bytes +~~ total memory freed........: 6499376 bytes ~~ total allocations/frees...: 116779/116779 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 184 chars diff --git a/test/results/teamspeak3.pcap.out b/test/results/teamspeak3.pcap.out index 1cdeb2523..20c823ec2 100644 --- a/test/results/teamspeak3.pcap.out +++ b/test/results/teamspeak3.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101186 bytes -~~ total memory freed........: 5101186 bytes +~~ total memory allocated....: 5101178 bytes +~~ total memory freed........: 5101178 bytes ~~ total allocations/frees...: 113326/113326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/teamviewer.pcap.out b/test/results/teamviewer.pcap.out index 58dfae90b..7347ca709 100644 --- a/test/results/teamviewer.pcap.out +++ b/test/results/teamviewer.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5139323 bytes -~~ total memory freed........: 5139323 bytes +~~ total memory allocated....: 5139307 bytes +~~ total memory freed........: 5139307 bytes ~~ total allocations/frees...: 114614/114614 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 450 chars diff --git a/test/results/telegram.pcap.out b/test/results/telegram.pcap.out index ad39f7516..e155ba3b5 100644 --- a/test/results/telegram.pcap.out +++ b/test/results/telegram.pcap.out @@ -285,8 +285,8 @@ ~~ total active/idle flows...: 48/48 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5187339 bytes -~~ total memory freed........: 5187339 bytes +~~ total memory allocated....: 5186955 bytes +~~ total memory freed........: 5186955 bytes ~~ total allocations/frees...: 115023/115023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/telnet.pcap.out b/test/results/telnet.pcap.out index aa9a18d87..f5c1e884a 100644 --- a/test/results/telnet.pcap.out +++ b/test/results/telnet.pcap.out @@ -28,8 +28,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5105380 bytes -~~ total memory freed........: 5105380 bytes +~~ total memory allocated....: 5105372 bytes +~~ total memory freed........: 5105372 bytes ~~ total allocations/frees...: 113401/113401 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 205 chars diff --git a/test/results/teredo.pcap.out b/test/results/teredo.pcap.out index 133a2f4ba..00102b6a9 100644 --- a/test/results/teredo.pcap.out +++ b/test/results/teredo.pcap.out @@ -36,8 +36,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5104993 bytes -~~ total memory freed........: 5104993 bytes +~~ total memory allocated....: 5104953 bytes +~~ total memory freed........: 5104953 bytes ~~ total allocations/frees...: 113349/113349 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/tftp.pcap.out b/test/results/tftp.pcap.out index 30823a464..c4f13dff1 100644 --- a/test/results/tftp.pcap.out +++ b/test/results/tftp.pcap.out @@ -30,8 +30,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5106441 bytes -~~ total memory freed........: 5106441 bytes +~~ total memory allocated....: 5106409 bytes +~~ total memory freed........: 5106409 bytes ~~ total allocations/frees...: 113426/113426 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 444 chars diff --git a/test/results/tinc.pcap.out b/test/results/tinc.pcap.out index ef53b30e9..8bca7810c 100644 --- a/test/results/tinc.pcap.out +++ b/test/results/tinc.pcap.out @@ -33,8 +33,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5121131 bytes -~~ total memory freed........: 5121131 bytes +~~ total memory allocated....: 5121099 bytes +~~ total memory freed........: 5121099 bytes ~~ total allocations/frees...: 113651/113651 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 451 chars diff --git a/test/results/tk.pcap.out b/test/results/tk.pcap.out index e4e810176..dab259821 100644 --- a/test/results/tk.pcap.out +++ b/test/results/tk.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102727 bytes -~~ total memory freed........: 5102727 bytes +~~ total memory allocated....: 5102703 bytes +~~ total memory freed........: 5102703 bytes ~~ total allocations/frees...: 113325/113325 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 458 chars diff --git a/test/results/tls-esni-fuzzed.pcap.out b/test/results/tls-esni-fuzzed.pcap.out index 79934b065..3426775fb 100644 --- a/test/results/tls-esni-fuzzed.pcap.out +++ b/test/results/tls-esni-fuzzed.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5110080 bytes -~~ total memory freed........: 5110080 bytes +~~ total memory allocated....: 5110056 bytes +~~ total memory freed........: 5110056 bytes ~~ total allocations/frees...: 113333/113333 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 471 chars diff --git a/test/results/tls-rdn-extract.pcap.out b/test/results/tls-rdn-extract.pcap.out index 09e959b1d..35bcd53d4 100644 --- a/test/results/tls-rdn-extract.pcap.out +++ b/test/results/tls-rdn-extract.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5142650 bytes -~~ total memory freed........: 5142650 bytes +~~ total memory allocated....: 5142642 bytes +~~ total memory freed........: 5142642 bytes ~~ total allocations/frees...: 113368/113368 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 471 chars diff --git a/test/results/tls_alert.pcap.out b/test/results/tls_alert.pcap.out index ec200aa9b..172159e4a 100644 --- a/test/results/tls_alert.pcap.out +++ b/test/results/tls_alert.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103222 bytes -~~ total memory freed........: 5103222 bytes +~~ total memory allocated....: 5103214 bytes +~~ total memory freed........: 5103214 bytes ~~ total allocations/frees...: 113326/113326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/tls_certificate_too_long.pcap.out b/test/results/tls_certificate_too_long.pcap.out index 1b4ce350c..13bbb9337 100644 --- a/test/results/tls_certificate_too_long.pcap.out +++ b/test/results/tls_certificate_too_long.pcap.out @@ -224,8 +224,8 @@ ~~ total active/idle flows...: 35/35 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5251476 bytes -~~ total memory freed........: 5251476 bytes +~~ total memory allocated....: 5251196 bytes +~~ total memory freed........: 5251196 bytes ~~ total allocations/frees...: 113845/113845 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/tls_cipher_lens.pcap.out b/test/results/tls_cipher_lens.pcap.out index e28520b74..4307718f5 100644 --- a/test/results/tls_cipher_lens.pcap.out +++ b/test/results/tls_cipher_lens.pcap.out @@ -29,8 +29,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5114682 bytes -~~ total memory freed........: 5114682 bytes +~~ total memory allocated....: 5114642 bytes +~~ total memory freed........: 5114642 bytes ~~ total allocations/frees...: 113335/113335 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 471 chars diff --git a/test/results/tls_esni_sni_both.pcap.out b/test/results/tls_esni_sni_both.pcap.out index 34c2be846..86515823c 100644 --- a/test/results/tls_esni_sni_both.pcap.out +++ b/test/results/tls_esni_sni_both.pcap.out @@ -23,8 +23,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5108065 bytes -~~ total memory freed........: 5108065 bytes +~~ total memory allocated....: 5108049 bytes +~~ total memory freed........: 5108049 bytes ~~ total allocations/frees...: 113360/113360 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/tls_invalid_reads.pcap.out b/test/results/tls_invalid_reads.pcap.out index abe25bf1c..f222eae39 100644 --- a/test/results/tls_invalid_reads.pcap.out +++ b/test/results/tls_invalid_reads.pcap.out @@ -30,8 +30,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5106009 bytes -~~ total memory freed........: 5106009 bytes +~~ total memory allocated....: 5105993 bytes +~~ total memory freed........: 5105993 bytes ~~ total allocations/frees...: 113326/113326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 200 chars diff --git a/test/results/tls_long_cert.pcap.out b/test/results/tls_long_cert.pcap.out index e400dc8cc..8c17920ad 100644 --- a/test/results/tls_long_cert.pcap.out +++ b/test/results/tls_long_cert.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5146925 bytes -~~ total memory freed........: 5146925 bytes +~~ total memory allocated....: 5146917 bytes +~~ total memory freed........: 5146917 bytes ~~ total allocations/frees...: 113557/113557 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/tls_port_80.pcapng.out b/test/results/tls_port_80.pcapng.out index 876651e5c..def2ad0c5 100644 --- a/test/results/tls_port_80.pcapng.out +++ b/test/results/tls_port_80.pcapng.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103234 bytes -~~ total memory freed........: 5103234 bytes +~~ total memory allocated....: 5103226 bytes +~~ total memory freed........: 5103226 bytes ~~ total allocations/frees...: 113327/113327 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/tls_torrent.pcapng.out b/test/results/tls_torrent.pcapng.out index a4e4ad973..5f9bc5bf1 100644 --- a/test/results/tls_torrent.pcapng.out +++ b/test/results/tls_torrent.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5115538 bytes -~~ total memory freed........: 5115538 bytes +~~ total memory allocated....: 5115530 bytes +~~ total memory freed........: 5115530 bytes ~~ total allocations/frees...: 113328/113328 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/tls_verylong_certificate.pcap.out b/test/results/tls_verylong_certificate.pcap.out index b26fdbbf9..664ac14c5 100644 --- a/test/results/tls_verylong_certificate.pcap.out +++ b/test/results/tls_verylong_certificate.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5274480 bytes -~~ total memory freed........: 5274480 bytes +~~ total memory allocated....: 5274472 bytes +~~ total memory freed........: 5274472 bytes ~~ total allocations/frees...: 113498/113498 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 480 chars diff --git a/test/results/tor.pcap.out b/test/results/tor.pcap.out index fddc099ed..7f1131ab3 100644 --- a/test/results/tor.pcap.out +++ b/test/results/tor.pcap.out @@ -362,8 +362,8 @@ ~~ total active/idle flows...: 11/11 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5231366 bytes -~~ total memory freed........: 5231366 bytes +~~ total memory allocated....: 5231278 bytes +~~ total memory freed........: 5231278 bytes ~~ total allocations/frees...: 117058/117058 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 182 chars diff --git a/test/results/trickbot.pcap.out b/test/results/trickbot.pcap.out index e075fb50c..ca2463892 100644 --- a/test/results/trickbot.pcap.out +++ b/test/results/trickbot.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103142 bytes -~~ total memory freed........: 5103142 bytes +~~ total memory allocated....: 5103134 bytes +~~ total memory freed........: 5103134 bytes ~~ total allocations/frees...: 113392/113392 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 456 chars diff --git a/test/results/tumblr.pcap.out b/test/results/tumblr.pcap.out index 17264be4f..1ad7eff65 100644 --- a/test/results/tumblr.pcap.out +++ b/test/results/tumblr.pcap.out @@ -278,8 +278,8 @@ ~~ total active/idle flows...: 47/47 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6277492 bytes -~~ total memory freed........: 6277492 bytes +~~ total memory allocated....: 6277116 bytes +~~ total memory freed........: 6277116 bytes ~~ total allocations/frees...: 138286/138286 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/ubntac2.pcap.out b/test/results/ubntac2.pcap.out index 31c13de2f..323dc0e51 100644 --- a/test/results/ubntac2.pcap.out +++ b/test/results/ubntac2.pcap.out @@ -41,8 +41,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5107145 bytes -~~ total memory freed........: 5107145 bytes +~~ total memory allocated....: 5107081 bytes +~~ total memory freed........: 5107081 bytes ~~ total allocations/frees...: 113342/113342 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/upnp.pcap.out b/test/results/upnp.pcap.out index b4bf76eeb..8896474e7 100644 --- a/test/results/upnp.pcap.out +++ b/test/results/upnp.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5102087 bytes -~~ total memory freed........: 5102087 bytes +~~ total memory allocated....: 5102071 bytes +~~ total memory freed........: 5102071 bytes ~~ total allocations/frees...: 113330/113330 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/viber.pcap.out b/test/results/viber.pcap.out index 43eaed397..ca7d0e1a4 100644 --- a/test/results/viber.pcap.out +++ b/test/results/viber.pcap.out @@ -171,8 +171,8 @@ ~~ total active/idle flows...: 26/26 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5229456 bytes -~~ total memory freed........: 5229456 bytes +~~ total memory allocated....: 5229248 bytes +~~ total memory freed........: 5229248 bytes ~~ total allocations/frees...: 113859/113859 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/vnc.pcap.out b/test/results/vnc.pcap.out index 41f6275a8..bcb8b71b9 100644 --- a/test/results/vnc.pcap.out +++ b/test/results/vnc.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5237756 bytes -~~ total memory freed........: 5237756 bytes +~~ total memory allocated....: 5237740 bytes +~~ total memory freed........: 5237740 bytes ~~ total allocations/frees...: 117869/117869 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 457 chars diff --git a/test/results/vrrp3.pcapng.out b/test/results/vrrp3.pcapng.out index c34383412..a0b73f021 100644 --- a/test/results/vrrp3.pcapng.out +++ b/test/results/vrrp3.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101971 bytes -~~ total memory freed........: 5101971 bytes +~~ total memory allocated....: 5101955 bytes +~~ total memory freed........: 5101955 bytes ~~ total allocations/frees...: 113326/113326 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 463 chars diff --git a/test/results/vxlan.pcap.out b/test/results/vxlan.pcap.out index f14ae62ba..87102b9d8 100644 --- a/test/results/vxlan.pcap.out +++ b/test/results/vxlan.pcap.out @@ -59,8 +59,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111468 bytes -~~ total memory freed........: 5111468 bytes +~~ total memory allocated....: 5111396 bytes +~~ total memory freed........: 5111396 bytes ~~ total allocations/frees...: 113464/113464 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/wa_video.pcap.out b/test/results/wa_video.pcap.out index 09ab66fd6..1967c69cc 100644 --- a/test/results/wa_video.pcap.out +++ b/test/results/wa_video.pcap.out @@ -88,8 +88,8 @@ ~~ total active/idle flows...: 14/14 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5220503 bytes -~~ total memory freed........: 5220503 bytes +~~ total memory allocated....: 5220391 bytes +~~ total memory freed........: 5220391 bytes ~~ total allocations/frees...: 114936/114936 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 464 chars diff --git a/test/results/wa_voice.pcap.out b/test/results/wa_voice.pcap.out index 9ac483da2..198bb9356 100644 --- a/test/results/wa_voice.pcap.out +++ b/test/results/wa_voice.pcap.out @@ -172,8 +172,8 @@ ~~ total active/idle flows...: 28/28 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5235559 bytes -~~ total memory freed........: 5235559 bytes +~~ total memory allocated....: 5235335 bytes +~~ total memory freed........: 5235335 bytes ~~ total allocations/frees...: 114151/114151 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 457 chars diff --git a/test/results/waze.pcap.out b/test/results/waze.pcap.out index 4387b8960..6258190b3 100644 --- a/test/results/waze.pcap.out +++ b/test/results/waze.pcap.out @@ -235,8 +235,8 @@ ~~ total active/idle flows...: 33/33 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5221572 bytes -~~ total memory freed........: 5221572 bytes +~~ total memory allocated....: 5221308 bytes +~~ total memory freed........: 5221308 bytes ~~ total allocations/frees...: 114088/114088 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 452 chars diff --git a/test/results/webex.pcap.out b/test/results/webex.pcap.out index 1760dc31e..8a4ffe386 100644 --- a/test/results/webex.pcap.out +++ b/test/results/webex.pcap.out @@ -389,8 +389,8 @@ ~~ total active/idle flows...: 57/57 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5438260 bytes -~~ total memory freed........: 5438260 bytes +~~ total memory allocated....: 5437804 bytes +~~ total memory freed........: 5437804 bytes ~~ total allocations/frees...: 115275/115275 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 450 chars diff --git a/test/results/websocket.pcap.out b/test/results/websocket.pcap.out index b1ebf3bdf..cfd59b0c6 100644 --- a/test/results/websocket.pcap.out +++ b/test/results/websocket.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5103002 bytes -~~ total memory freed........: 5103002 bytes +~~ total memory allocated....: 5102994 bytes +~~ total memory freed........: 5102994 bytes ~~ total allocations/frees...: 113319/113319 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/wechat.pcap.out b/test/results/wechat.pcap.out index c1c929a42..18c4a28e5 100644 --- a/test/results/wechat.pcap.out +++ b/test/results/wechat.pcap.out @@ -682,8 +682,8 @@ ~~ total active/idle flows...: 110/110 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5485917 bytes -~~ total memory freed........: 5485917 bytes +~~ total memory allocated....: 5485037 bytes +~~ total memory freed........: 5485037 bytes ~~ total allocations/frees...: 115902/115902 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 450 chars diff --git a/test/results/weibo.pcap.out b/test/results/weibo.pcap.out index bac9566cd..d58fd4b07 100644 --- a/test/results/weibo.pcap.out +++ b/test/results/weibo.pcap.out @@ -245,8 +245,8 @@ ~~ total active/idle flows...: 44/44 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5156713 bytes -~~ total memory freed........: 5156713 bytes +~~ total memory allocated....: 5156361 bytes +~~ total memory freed........: 5156361 bytes ~~ total allocations/frees...: 113979/113979 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 452 chars diff --git a/test/results/whatsapp_login_call.pcap.out b/test/results/whatsapp_login_call.pcap.out index ea7e739c8..df1567809 100644 --- a/test/results/whatsapp_login_call.pcap.out +++ b/test/results/whatsapp_login_call.pcap.out @@ -354,8 +354,8 @@ ~~ total active/idle flows...: 57/57 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5214915 bytes -~~ total memory freed........: 5214915 bytes +~~ total memory allocated....: 5214459 bytes +~~ total memory freed........: 5214459 bytes ~~ total allocations/frees...: 114746/114746 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 466 chars diff --git a/test/results/whatsapp_login_chat.pcap.out b/test/results/whatsapp_login_chat.pcap.out index 37303119a..97f5e8dff 100644 --- a/test/results/whatsapp_login_chat.pcap.out +++ b/test/results/whatsapp_login_chat.pcap.out @@ -57,8 +57,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5116626 bytes -~~ total memory freed........: 5116626 bytes +~~ total memory allocated....: 5116554 bytes +~~ total memory freed........: 5116554 bytes ~~ total allocations/frees...: 113433/113433 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 475 chars diff --git a/test/results/whatsapp_voice_and_message.pcap.out b/test/results/whatsapp_voice_and_message.pcap.out index 52978eb0c..3a1789245 100644 --- a/test/results/whatsapp_voice_and_message.pcap.out +++ b/test/results/whatsapp_voice_and_message.pcap.out @@ -87,8 +87,8 @@ ~~ total active/idle flows...: 13/13 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5137290 bytes -~~ total memory freed........: 5137290 bytes +~~ total memory allocated....: 5137186 bytes +~~ total memory freed........: 5137186 bytes ~~ total allocations/frees...: 113617/113617 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 472 chars diff --git a/test/results/whatsappfiles.pcap.out b/test/results/whatsappfiles.pcap.out index 98a891214..f481bd4e8 100644 --- a/test/results/whatsappfiles.pcap.out +++ b/test/results/whatsappfiles.pcap.out @@ -24,8 +24,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5130206 bytes -~~ total memory freed........: 5130206 bytes +~~ total memory allocated....: 5130190 bytes +~~ total memory freed........: 5130190 bytes ~~ total allocations/frees...: 113950/113950 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 469 chars diff --git a/test/results/whois.pcapng.out b/test/results/whois.pcapng.out index 522c5c42e..60c32e621 100644 --- a/test/results/whois.pcapng.out +++ b/test/results/whois.pcapng.out @@ -30,8 +30,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5112887 bytes -~~ total memory freed........: 5112887 bytes +~~ total memory allocated....: 5112863 bytes +~~ total memory freed........: 5112863 bytes ~~ total allocations/frees...: 113349/113349 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 453 chars diff --git a/test/results/wireguard.pcap.out b/test/results/wireguard.pcap.out index 7df6a8b45..cfeefe312 100644 --- a/test/results/wireguard.pcap.out +++ b/test/results/wireguard.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5170380 bytes -~~ total memory freed........: 5170380 bytes +~~ total memory allocated....: 5170372 bytes +~~ total memory freed........: 5170372 bytes ~~ total allocations/frees...: 115712/115712 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 465 chars diff --git a/test/results/wow.pcap.out b/test/results/wow.pcap.out index b8723370d..769d10d1f 100644 --- a/test/results/wow.pcap.out +++ b/test/results/wow.pcap.out @@ -40,8 +40,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5113301 bytes -~~ total memory freed........: 5113301 bytes +~~ total memory allocated....: 5113261 bytes +~~ total memory freed........: 5113261 bytes ~~ total allocations/frees...: 113427/113427 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 459 chars diff --git a/test/results/xdmcp.pcap.out b/test/results/xdmcp.pcap.out index cc1b0e630..986c4f120 100644 --- a/test/results/xdmcp.pcap.out +++ b/test/results/xdmcp.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5100983 bytes -~~ total memory freed........: 5100983 bytes +~~ total memory allocated....: 5100975 bytes +~~ total memory freed........: 5100975 bytes ~~ total allocations/frees...: 113319/113319 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 460 chars diff --git a/test/results/youtube_quic.pcap.out b/test/results/youtube_quic.pcap.out index f5a3c50ce..6264a0f01 100644 --- a/test/results/youtube_quic.pcap.out +++ b/test/results/youtube_quic.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5111078 bytes -~~ total memory freed........: 5111078 bytes +~~ total memory allocated....: 5111054 bytes +~~ total memory freed........: 5111054 bytes ~~ total allocations/frees...: 113611/113611 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 468 chars diff --git a/test/results/youtubeupload.pcap.out b/test/results/youtubeupload.pcap.out index 879994e09..8e9ff761e 100644 --- a/test/results/youtubeupload.pcap.out +++ b/test/results/youtubeupload.pcap.out @@ -29,8 +29,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5116934 bytes -~~ total memory freed........: 5116934 bytes +~~ total memory allocated....: 5116910 bytes +~~ total memory freed........: 5116910 bytes ~~ total allocations/frees...: 113477/113477 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 467 chars diff --git a/test/results/z3950.pcapng.out b/test/results/z3950.pcapng.out index 6385be3a0..906e6b656 100644 --- a/test/results/z3950.pcapng.out +++ b/test/results/z3950.pcapng.out @@ -22,8 +22,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5113037 bytes -~~ total memory freed........: 5113037 bytes +~~ total memory allocated....: 5113021 bytes +~~ total memory freed........: 5113021 bytes ~~ total allocations/frees...: 113351/113351 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 453 chars diff --git a/test/results/zabbix.pcap.out b/test/results/zabbix.pcap.out index 4ec962d29..268cc19ee 100644 --- a/test/results/zabbix.pcap.out +++ b/test/results/zabbix.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5101099 bytes -~~ total memory freed........: 5101099 bytes +~~ total memory allocated....: 5101091 bytes +~~ total memory freed........: 5101091 bytes ~~ total allocations/frees...: 113323/113323 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 462 chars diff --git a/test/results/zattoo.pcap.out b/test/results/zattoo.pcap.out index 2be1d6195..9db48642f 100644 --- a/test/results/zattoo.pcap.out +++ b/test/results/zattoo.pcap.out @@ -22,8 +22,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5104968 bytes -~~ total memory freed........: 5104968 bytes +~~ total memory allocated....: 5104952 bytes +~~ total memory freed........: 5104952 bytes ~~ total allocations/frees...: 113354/113354 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/zcash.pcap.out b/test/results/zcash.pcap.out index 88e62830a..be1b8094b 100644 --- a/test/results/zcash.pcap.out +++ b/test/results/zcash.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5115270 bytes -~~ total memory freed........: 5115270 bytes +~~ total memory allocated....: 5115262 bytes +~~ total memory freed........: 5115262 bytes ~~ total allocations/frees...: 113461/113461 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars diff --git a/test/results/zoom.pcap.out b/test/results/zoom.pcap.out index ebb13d9eb..ead2380b3 100644 --- a/test/results/zoom.pcap.out +++ b/test/results/zoom.pcap.out @@ -217,8 +217,8 @@ ~~ total active/idle flows...: 33/33 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5288702 bytes -~~ total memory freed........: 5288702 bytes +~~ total memory allocated....: 5288438 bytes +~~ total memory freed........: 5288438 bytes ~~ total allocations/frees...: 114183/114183 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 187 chars diff --git a/test/results/zoom2.pcap.out b/test/results/zoom2.pcap.out index 645af5029..1baf4138e 100644 --- a/test/results/zoom2.pcap.out +++ b/test/results/zoom2.pcap.out @@ -44,8 +44,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 5464815 bytes -~~ total memory freed........: 5464815 bytes +~~ total memory allocated....: 5464775 bytes +~~ total memory freed........: 5464775 bytes ~~ total allocations/frees...: 125311/125311 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json string min len.......: 461 chars |