diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2024-10-24 12:49:39 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-10-24 15:45:04 +0200 |
commit | 542379726789720c569d7130567068f40d03ac6f (patch) | |
tree | a4baf852483e63a09106cb1c90cc8c62c9fa13f4 | |
parent | 7e126c205e9b7a8ef27c85b615cf93c6545fa33c (diff) |
Added nDPId `ndpi_process_packet()` LLVM fuzzer
* replaced dumb `dumb_fuzzer.sh`
* fixed nDPId NULL pointer deref found by fuzzer
* nDPI: `--enable-debug-build` and `--enable-debug-messages` for non release builds
* nDPI: do not force `log.level` to `3` anymore, use config value instead
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
575 files changed, 1278 insertions, 1206 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index a4803e545..787e30037 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -283,6 +283,10 @@ if(ENABLE_COVERAGE) message(STATUS "nDPI: Enable Coverage") set(NDPI_ADDITIONAL_ARGS "${NDPI_ADDITIONAL_ARGS} --enable-code-coverage") endif() +if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "") + message(STATUS "nDPI: Enable Debug Build") + set(NDPI_ADDITIONAL_ARGS "${NDPI_ADDITIONAL_ARGS} --enable-debug-build --enable-debug-messages") +endif() execute_process( COMMAND git describe --tags @@ -308,7 +312,9 @@ if(CMAKE_CROSSCOMPILING) add_definitions("-DCROSS_COMPILATION=1") endif() if(ENABLE_MEMORY_PROFILING) - message(WARNING "ENABLE_MEMORY_PROFILING should not be used in production environments.") + if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug" AND NOT CMAKE_BUILD_TYPE STREQUAL "") + message(WARNING "ENABLE_MEMORY_PROFILING should not be used in production environments.") + endif() add_definitions("-DENABLE_MEMORY_PROFILING=1" "-Duthash_malloc=nDPIsrvd_uthash_malloc" "-Duthash_free=nDPIsrvd_uthash_free") @@ -442,6 +448,24 @@ target_link_libraries(nDPId-test "${STATIC_LIBNDPI_LIB}" "${STATIC_PFRING_LIB}" "${GCRYPT_LIBRARY}" "${GCRYPT_ERROR_LIBRARY}" "${PCAP_LIBRARY}" "${LIBM_LIB}" "${PF_RING_LIB}" "-pthread") +if(CMAKE_C_COMPILER_ID STREQUAL "Clang") + add_executable(fuzz_ndpi_process_packet test/fuzz_ndpi_process_packet.c) + if(BUILD_NDPI) + add_dependencies(fuzz_ndpi_process_packet libnDPI) + endif() + target_compile_options(fuzz_ndpi_process_packet PRIVATE "-Wno-unused-function" "-fsanitize=fuzzer" "-pthread") + target_compile_definitions(fuzz_ndpi_process_packet PRIVATE -D_GNU_SOURCE=1 + -DPKG_VERSION=\"${PKG_VERSION}\" -DGIT_VERSION=\"${GIT_VERSION}\" + ${NDPID_DEFS} ${EPOLL_DEFS} ${ZLIB_DEFS} ${PFRING_DEFS}) + target_include_directories(fuzz_ndpi_process_packet PRIVATE "${STATIC_LIBNDPI_INC}" "${DEFAULT_NDPI_INCLUDE}" + ${NDPID_DEPS_INC} ${PFRING_KERNEL_INC} ${PFRING_INC}) + target_link_libraries(fuzz_ndpi_process_packet "${STATIC_LIBNDPI_LIB}" "${STATIC_PFRING_LIB}" "${pkgcfg_lib_PCAP_pcap}" "${pkgcfg_lib_NDPI_ndpi}" + "${pkgcfg_lib_PCRE_pcre2-8}" "${pkgcfg_lib_MAXMINDDB_maxminddb}" "${pkgcfg_lib_ZLIB_z}" + "${GCRYPT_LIBRARY}" "${GCRYPT_ERROR_LIBRARY}" "${PCAP_LIBRARY}" "${LIBM_LIB}" "${PF_RING_LIB}" + "-pthread") + target_link_options(fuzz_ndpi_process_packet PRIVATE "-fsanitize=fuzzer") +endif() + if(BUILD_EXAMPLES) add_executable(nDPIsrvd-collectd examples/c-collectd/c-collectd.c utils.c) if(BUILD_NDPI) @@ -610,3 +634,6 @@ if(NOT NDPI_NO_PKGCONFIG) message(STATUS "- pkgcfg_lib_NDPI_ndpi...: ${pkgcfg_lib_NDPI_ndpi}") endif() message(STATUS "--------------------------") +if(CMAKE_C_COMPILER_ID STREQUAL "Clang") +message(STATUS "Fuzzing enabled") +endif() diff --git a/nDPId-test.c b/nDPId-test.c index b804f7995..003376e57 100644 --- a/nDPId-test.c +++ b/nDPId-test.c @@ -1727,7 +1727,9 @@ int main(int argc, char ** argv) */ set_cmdarg_boolean(&nDPId_options.enable_zlib_compression, 1); #endif +#ifdef ENABLE_MEMORY_PROFILING set_cmdarg_ull(&nDPId_options.memory_profiling_log_interval, (unsigned long long int)-1); +#endif set_cmdarg_ull(&nDPId_options.reader_thread_count, 1); /* Please do not change this! Generating meaningful pcap diff's relies on a single reader thread! */ set_cmdarg_string(&nDPId_options.instance_alias, "nDPId-test"); @@ -1196,6 +1196,10 @@ static void ndpi_debug_printf(unsigned int proto, written); } va_end(vl); + if (written <= 0) + { + return; + } switch (log_level) { @@ -1212,8 +1216,13 @@ static void ndpi_debug_printf(unsigned int proto, break; } + size_t buf_last = ndpi_min((size_t)written, nDPIsrvd_ARRAY_LENGTH(buf)); + if (buf[buf_last - 1] == '\n') + { + buf[buf_last - 1] = '\0'; + } logger(is_log_err, - "[libnDPI@%s.%s.%u] protocol %u.%s: %s", + "[libnDPI@%s.%s.%u] protocol %u.%s: `%s'", file_name, func_name, line_number, @@ -1489,7 +1498,6 @@ static struct nDPId_workflow * init_workflow(char const * const file_or_device) } } - cfg_set_u64(workflow, NULL, "log.level", 3); cfg_set_u64(workflow, NULL, "packets_limit_per_flow", @@ -2903,7 +2911,9 @@ static void jsonize_packet_event(struct nDPId_reader_thread * const reader_threa { ndpi_serialize_string_int32(&workflow->ndpi_serializer, "pkt_datalink", - pcap_datalink(reader_thread->workflow->pcap_handle)); + reader_thread->workflow->pcap_handle != NULL + ? pcap_datalink(reader_thread->workflow->pcap_handle) + : -1); } ndpi_serialize_string_uint32(&workflow->ndpi_serializer, "pkt_caplen", header->caplen); ndpi_serialize_string_uint32(&workflow->ndpi_serializer, "pkt_type", pkt_type); @@ -2981,7 +2991,9 @@ static void jsonize_flow_event(struct nDPId_reader_thread * const reader_thread, { ndpi_serialize_string_int32(&workflow->ndpi_serializer, "flow_datalink", - pcap_datalink(reader_thread->workflow->pcap_handle)); + reader_thread->workflow->pcap_handle != NULL + ? pcap_datalink(reader_thread->workflow->pcap_handle) + : -1); } ndpi_serialize_string_uint32(&workflow->ndpi_serializer, "flow_max_packets", @@ -3029,11 +3041,14 @@ static void jsonize_flow_event(struct nDPId_reader_thread * const reader_thread, if (flow->info.detection_completed != 0) { ndpi_serialize_start_of_block(&workflow->ndpi_serializer, "ndpi"); - ndpi_serialize_proto(workflow->ndpi_struct, - &workflow->ndpi_serializer, - flow->info.detection_data->flow.risk, - flow->info.detection_data->flow.confidence, - flow->flow_extended.detected_l7_protocol); + if (flow->info.detection_data != NULL) + { + ndpi_serialize_proto(workflow->ndpi_struct, + &workflow->ndpi_serializer, + flow->info.detection_data->flow.risk, + flow->info.detection_data->flow.confidence, + flow->flow_extended.detected_l7_protocol); + } ndpi_serialize_end_of_block(&workflow->ndpi_serializer); } } @@ -3411,8 +3426,8 @@ static uint32_t calculate_ndpi_flow_struct_hash(struct ndpi_flow_struct const * /* mask for FCF */ #define WIFI_DATA 0x2 #define FCF_TYPE(fc) (((fc) >> 2) & 0x3) /* 0000 0011 = 0x3 */ -#define FCF_TO_DS(fc) ((fc) & 0x0100) -#define FCF_FROM_DS(fc) ((fc) & 0x0200) +#define FCF_TO_DS(fc) ((fc)&0x0100) +#define FCF_FROM_DS(fc) ((fc)&0x0200) /* mask for Bad FCF presence */ #define BAD_FCS 0x50 /* 0101 0000 */ static int process_datalink_layer(struct nDPId_reader_thread * const reader_thread, @@ -3433,7 +3448,14 @@ static int process_datalink_layer(struct nDPId_reader_thread * const reader_thre else #endif { - datalink_type = pcap_datalink(reader_thread->workflow->pcap_handle); + if (reader_thread->workflow->pcap_handle != NULL) + { + datalink_type = pcap_datalink(reader_thread->workflow->pcap_handle); + } + else + { + datalink_type = DLT_RAW; + } } switch (datalink_type) diff --git a/test/configs/unusual-ndpi.conf b/test/configs/unusual-ndpi.conf index a0c00ca66..0864c0f8d 100644 --- a/test/configs/unusual-ndpi.conf +++ b/test/configs/unusual-ndpi.conf @@ -23,7 +23,7 @@ fpc = enable dpi.guess_on_giveup = 0x01 flow_risk_lists.load = 1 flow_risk.crawler_bot.list.load = 1 -log.level = 0 +log.level = 3 [protos] tls.certificate_expiration_threshold = 1 diff --git a/test/dumb_fuzzer.sh b/test/dumb_fuzzer.sh deleted file mode 100755 index 61865b6c1..000000000 --- a/test/dumb_fuzzer.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/env bash - -set -e - -MYDIR="$(realpath "$(dirname ${0})")" -nDPId_test_EXEC="$(realpath "${1:-"${MYDIR}/../nDPId-test"}")" -PROTOCOL="${2:-tcp}" -MAX_RUNS="${3:-100}" -MAX_COUNT="${4:-10000}" - -function usage() -{ -cat <<EOF -usage: ${0} [path-to-nDPId-test-exec] [protocol] [max-runs] [max-count] - - path-to-nDPId-test-exec defaults to ${nDPId_test_EXEC} - protocol defaults to ${PROTOCOL} - max-runs defaults to ${MAX_RUNS} - max-count defaults to ${MAX_COUNT} -EOF -return 0 -} - -if [ $# -eq 0 ]; then - usage - exit 1 -elif [ ! -x "${nDPId_test_EXEC}" ]; then - printf '%s\n' "Required nDPId-test executable does not exist; ${nDPId_test_EXEC}" - exit 1 -fi - -function sighandler() -{ - printf '%s\n' ' Received shutdown SIGNAL, bye' >&2 - rm -f "/tmp/randpkt_$$.pcap" - $(which pkill) -P $$ - wait - exit 2 -} -trap sighandler SIGINT SIGTERM - -test -z "$(which pkill)" && { printf '%s\n' 'pkill not found'; exit 1; } -test -z "$(which randpkt)" && { printf '%s\n' 'randpkt not found'; exit 1; } - -while (( ${MAX_RUNS} > 0 )); do - printf '.' - test $((${MAX_RUNS} % 10)) -ne 0 || printf '%s' "${MAX_RUNS}" - $(which randpkt) -c "${MAX_COUNT}" -t "${PROTOCOL}" "/tmp/randpkt_$$.pcap" - ${nDPId_test_EXEC} "/tmp/randpkt_$$.pcap" >/dev/null - MAX_RUNS=$((${MAX_RUNS} - 1)) -done - -rm -f "/tmp/randpkt_$$.pcap" -printf '\n' diff --git a/test/fuzz_ndpi_process_packet.c b/test/fuzz_ndpi_process_packet.c new file mode 100644 index 000000000..654eaefa8 --- /dev/null +++ b/test/fuzz_ndpi_process_packet.c @@ -0,0 +1,75 @@ +#define NO_MAIN 1 +#include "../utils.c" +#include "../nio.c" +#include "../nDPId.c" +#ifdef ENABLE_PFRING +#include "../npfring.c" +#endif + +int LLVMFuzzerTestOneInput(const uint8_t * data, size_t size) +{ + if (reader_threads[0].workflow == NULL) + { + set_ndpi_malloc(ndpi_malloc_wrapper); + set_ndpi_free(ndpi_free_wrapper); + set_ndpi_flow_malloc(NULL); + set_ndpi_flow_free(NULL); + + init_logging("fuzz_ndpi_process_packet"); + log_app_info(); + + set_cmdarg_string(&nDPId_options.instance_alias, "fuzz_ndpi_process_packet"); + set_cmdarg_ull(&nDPId_options.max_flows_per_thread, 1024); + set_cmdarg_ull(&nDPId_options.max_idle_flows_per_thread, 16); + set_cmdarg_ull(&nDPId_options.reader_thread_count, 1); + set_cmdarg_boolean(&nDPId_options.enable_data_analysis, 1); + set_cmdarg_ull(&nDPId_options.max_packets_per_flow_to_send, 5); +#ifdef ENABLE_ZLIB + set_cmdarg_boolean(&nDPId_options.enable_zlib_compression, 1); +#endif +#ifdef ENABLE_MEMORY_PROFILING + set_cmdarg_ull(&nDPId_options.memory_profiling_log_interval, TIME_S_TO_US(60u)); +#endif +#ifdef ENABLE_PFRING + set_cmdarg_boolean(&nDPId_options.use_pfring, 0); +#endif + + struct nDPId_workflow * const workflow = (struct nDPId_workflow *)ndpi_calloc(1, sizeof(*workflow)); + if (workflow == NULL) + { + return 1; + } + workflow->max_idle_flows = GET_CMDARG_ULL(nDPId_options.max_idle_flows_per_thread); + workflow->max_active_flows = GET_CMDARG_ULL(nDPId_options.max_flows_per_thread); + workflow->ndpi_flows_idle = (void **)ndpi_calloc(workflow->max_idle_flows, sizeof(void *)); + workflow->ndpi_flows_active = (void **)ndpi_calloc(workflow->max_active_flows, sizeof(void *)); + reader_threads[0].collector_sockfd = -1; + reader_threads[0].workflow = workflow; + + if (workflow->ndpi_flows_idle == NULL || workflow->ndpi_flows_active == NULL) + { + return 1; + } + + global_context = ndpi_global_init(); + if (global_context == NULL) + { + return 1; + } + + workflow->ndpi_struct = ndpi_init_detection_module(global_context); + if (workflow->ndpi_struct == NULL) + { + return 1; + } + ndpi_set_user_data(workflow->ndpi_struct, workflow); + set_ndpi_debug_function(workflow->ndpi_struct, ndpi_debug_printf); + ndpi_finalize_initialization(workflow->ndpi_struct); + } + + struct pcap_pkthdr pcap_hdr = {.caplen = size, .len = size}; + gettimeofday(&pcap_hdr.ts, NULL); // not optimal; more difficult to reproduce via crash files + ndpi_process_packet((uint8_t *)&reader_threads[0], &pcap_hdr, data); + + return 0; +} diff --git a/test/results/caches_cfg/ookla.pcap.out b/test/results/caches_cfg/ookla.pcap.out index e38174a69..2fe08fbcc 100644 --- a/test/results/caches_cfg/ookla.pcap.out +++ b/test/results/caches_cfg/ookla.pcap.out @@ -61,8 +61,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6657355 bytes -~~ total memory freed........: 6657355 bytes +~~ total memory allocated....: 6657379 bytes +~~ total memory freed........: 6657379 bytes ~~ total allocations/frees...: 114205/114205 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 523 chars diff --git a/test/results/caches_cfg/teams.pcap.out b/test/results/caches_cfg/teams.pcap.out index 2dc56c7c0..75a9920ec 100644 --- a/test/results/caches_cfg/teams.pcap.out +++ b/test/results/caches_cfg/teams.pcap.out @@ -688,8 +688,8 @@ ~~ total active/idle flows...: 83/83 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7769292 bytes -~~ total memory freed........: 7769292 bytes +~~ total memory allocated....: 7769316 bytes +~~ total memory freed........: 7769316 bytes ~~ total allocations/frees...: 116827/116827 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 298 chars diff --git a/test/results/caches_global/bittorrent.pcap.out b/test/results/caches_global/bittorrent.pcap.out index ed9b98d99..9fcf25d5f 100644 --- a/test/results/caches_global/bittorrent.pcap.out +++ b/test/results/caches_global/bittorrent.pcap.out @@ -170,8 +170,8 @@ ~~ total active/idle flows...: 24/24 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6748086 bytes -~~ total memory freed........: 6748086 bytes +~~ total memory allocated....: 6748110 bytes +~~ total memory freed........: 6748110 bytes ~~ total allocations/frees...: 114594/114594 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 575 chars diff --git a/test/results/caches_global/lru_ipv6_caches.pcapng.out b/test/results/caches_global/lru_ipv6_caches.pcapng.out index a8e6fbb3f..934a3ea64 100644 --- a/test/results/caches_global/lru_ipv6_caches.pcapng.out +++ b/test/results/caches_global/lru_ipv6_caches.pcapng.out @@ -95,8 +95,8 @@ ~~ total active/idle flows...: 12/12 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6684384 bytes -~~ total memory freed........: 6684384 bytes +~~ total memory allocated....: 6684408 bytes +~~ total memory freed........: 6684408 bytes ~~ total allocations/frees...: 114261/114261 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 584 chars diff --git a/test/results/caches_global/mining.pcapng.out b/test/results/caches_global/mining.pcapng.out index 473b6407a..2187ece3e 100644 --- a/test/results/caches_global/mining.pcapng.out +++ b/test/results/caches_global/mining.pcapng.out @@ -47,8 +47,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6676228 bytes -~~ total memory freed........: 6676228 bytes +~~ total memory allocated....: 6676252 bytes +~~ total memory freed........: 6676252 bytes ~~ total allocations/frees...: 114730/114730 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/caches_global/ookla.pcap.out b/test/results/caches_global/ookla.pcap.out index fda1906e2..9f013a762 100644 --- a/test/results/caches_global/ookla.pcap.out +++ b/test/results/caches_global/ookla.pcap.out @@ -62,8 +62,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6673819 bytes -~~ total memory freed........: 6673819 bytes +~~ total memory allocated....: 6673843 bytes +~~ total memory freed........: 6673843 bytes ~~ total allocations/frees...: 114207/114207 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 526 chars diff --git a/test/results/caches_global/teams.pcap.out b/test/results/caches_global/teams.pcap.out index f76abcf24..12a763ad9 100644 --- a/test/results/caches_global/teams.pcap.out +++ b/test/results/caches_global/teams.pcap.out @@ -688,8 +688,8 @@ ~~ total active/idle flows...: 83/83 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7785756 bytes -~~ total memory freed........: 7785756 bytes +~~ total memory allocated....: 7785780 bytes +~~ total memory freed........: 7785780 bytes ~~ total allocations/frees...: 116829/116829 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 301 chars diff --git a/test/results/caches_global/zoom_p2p.pcapng.out b/test/results/caches_global/zoom_p2p.pcapng.out index dd9bd3ec9..a1a8ba826 100644 --- a/test/results/caches_global/zoom_p2p.pcapng.out +++ b/test/results/caches_global/zoom_p2p.pcapng.out @@ -140,8 +140,8 @@ ~~ total active/idle flows...: 13/13 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6691332 bytes -~~ total memory freed........: 6691332 bytes +~~ total memory allocated....: 6691356 bytes +~~ total memory freed........: 6691356 bytes ~~ total allocations/frees...: 114917/114917 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 577 chars diff --git a/test/results/default/1kxun.pcap.out b/test/results/default/1kxun.pcap.out index 51cc10b80..84da95e3e 100644 --- a/test/results/default/1kxun.pcap.out +++ b/test/results/default/1kxun.pcap.out @@ -1309,8 +1309,8 @@ ~~ total active/idle flows...: 197/197 ~~ total timeout flows.......: 20 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7221685 bytes -~~ total memory freed........: 7221685 bytes +~~ total memory allocated....: 7221709 bytes +~~ total memory freed........: 7221709 bytes ~~ total allocations/frees...: 118676/118676 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/443-chrome.pcap.out b/test/results/default/443-chrome.pcap.out index cbdee2f5f..053a9700c 100644 --- a/test/results/default/443-chrome.pcap.out +++ b/test/results/default/443-chrome.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643758 bytes -~~ total memory freed........: 6643758 bytes +~~ total memory allocated....: 6643782 bytes +~~ total memory freed........: 6643782 bytes ~~ total allocations/frees...: 114023/114023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 571 chars diff --git a/test/results/default/443-curl.pcap.out b/test/results/default/443-curl.pcap.out index 70edd4672..510f1defb 100644 --- a/test/results/default/443-curl.pcap.out +++ b/test/results/default/443-curl.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6651771 bytes -~~ total memory freed........: 6651771 bytes +~~ total memory allocated....: 6651795 bytes +~~ total memory freed........: 6651795 bytes ~~ total allocations/frees...: 114137/114137 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/443-firefox.pcap.out b/test/results/default/443-firefox.pcap.out index 9f5fbf004..a58f268a7 100644 --- a/test/results/default/443-firefox.pcap.out +++ b/test/results/default/443-firefox.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6668007 bytes -~~ total memory freed........: 6668007 bytes +~~ total memory allocated....: 6668031 bytes +~~ total memory freed........: 6668031 bytes ~~ total allocations/frees...: 114696/114696 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 549 chars diff --git a/test/results/default/443-git.pcap.out b/test/results/default/443-git.pcap.out index 03d442662..f4ba697f3 100644 --- a/test/results/default/443-git.pcap.out +++ b/test/results/default/443-git.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6654156 bytes -~~ total memory freed........: 6654156 bytes +~~ total memory allocated....: 6654180 bytes +~~ total memory freed........: 6654180 bytes ~~ total allocations/frees...: 114100/114100 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/443-opvn.pcap.out b/test/results/default/443-opvn.pcap.out index aa7afa5c9..88fc5969f 100644 --- a/test/results/default/443-opvn.pcap.out +++ b/test/results/default/443-opvn.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645025 bytes -~~ total memory freed........: 6645025 bytes +~~ total memory allocated....: 6645049 bytes +~~ total memory freed........: 6645049 bytes ~~ total allocations/frees...: 114067/114067 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/443-safari.pcap.out b/test/results/default/443-safari.pcap.out index 4b3c0b65c..9fa51bf64 100644 --- a/test/results/default/443-safari.pcap.out +++ b/test/results/default/443-safari.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649829 bytes -~~ total memory freed........: 6649829 bytes +~~ total memory allocated....: 6649853 bytes +~~ total memory freed........: 6649853 bytes ~~ total allocations/frees...: 114069/114069 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 548 chars diff --git a/test/results/default/4in4tunnel.pcap.out b/test/results/default/4in4tunnel.pcap.out index 3b38d2447..1123d9066 100644 --- a/test/results/default/4in4tunnel.pcap.out +++ b/test/results/default/4in4tunnel.pcap.out @@ -23,8 +23,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 303 chars diff --git a/test/results/default/4in6tunnel.pcap.out b/test/results/default/4in6tunnel.pcap.out index fee59ad91..ad285c39e 100644 --- a/test/results/default/4in6tunnel.pcap.out +++ b/test/results/default/4in6tunnel.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641759 bytes -~~ total memory freed........: 6641759 bytes +~~ total memory allocated....: 6641783 bytes +~~ total memory freed........: 6641783 bytes ~~ total allocations/frees...: 114024/114024 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 571 chars diff --git a/test/results/default/6in4tunnel.pcap.out b/test/results/default/6in4tunnel.pcap.out index d1f7154f8..be56a79dd 100644 --- a/test/results/default/6in4tunnel.pcap.out +++ b/test/results/default/6in4tunnel.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645326 bytes -~~ total memory freed........: 6645326 bytes +~~ total memory allocated....: 6645350 bytes +~~ total memory freed........: 6645350 bytes ~~ total allocations/frees...: 114147/114147 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 571 chars diff --git a/test/results/default/6in6tunnel.pcap.out b/test/results/default/6in6tunnel.pcap.out index 8213a69a3..c27a1e735 100644 --- a/test/results/default/6in6tunnel.pcap.out +++ b/test/results/default/6in6tunnel.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643993 bytes -~~ total memory freed........: 6643993 bytes +~~ total memory allocated....: 6644017 bytes +~~ total memory freed........: 6644017 bytes ~~ total allocations/frees...: 114033/114033 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 571 chars diff --git a/test/results/default/BGP_Cisco_hdlc_slarp.pcap.out b/test/results/default/BGP_Cisco_hdlc_slarp.pcap.out index 60ba3da27..4fc6db28b 100644 --- a/test/results/default/BGP_Cisco_hdlc_slarp.pcap.out +++ b/test/results/default/BGP_Cisco_hdlc_slarp.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642049 bytes -~~ total memory freed........: 6642049 bytes +~~ total memory allocated....: 6642073 bytes +~~ total memory freed........: 6642073 bytes ~~ total allocations/frees...: 114034/114034 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/BGP_redist.pcap.out b/test/results/default/BGP_redist.pcap.out index be2453ffe..1fcfa709e 100644 --- a/test/results/default/BGP_redist.pcap.out +++ b/test/results/default/BGP_redist.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641672 bytes -~~ total memory freed........: 6641672 bytes +~~ total memory allocated....: 6641696 bytes +~~ total memory freed........: 6641696 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 301 chars diff --git a/test/results/default/EAQ.pcap.out b/test/results/default/EAQ.pcap.out index e4138f3cb..83f85065a 100644 --- a/test/results/default/EAQ.pcap.out +++ b/test/results/default/EAQ.pcap.out @@ -275,8 +275,8 @@ ~~ total active/idle flows...: 31/31 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6716354 bytes -~~ total memory freed........: 6716354 bytes +~~ total memory allocated....: 6716378 bytes +~~ total memory freed........: 6716378 bytes ~~ total allocations/frees...: 114561/114561 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 525 chars diff --git a/test/results/default/FAX-Call-t38-CA-TDM-SIP-FB-1.pcap.out b/test/results/default/FAX-Call-t38-CA-TDM-SIP-FB-1.pcap.out index 022e903d4..705c83933 100644 --- a/test/results/default/FAX-Call-t38-CA-TDM-SIP-FB-1.pcap.out +++ b/test/results/default/FAX-Call-t38-CA-TDM-SIP-FB-1.pcap.out @@ -58,8 +58,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6695819 bytes -~~ total memory freed........: 6695819 bytes +~~ total memory allocated....: 6695843 bytes +~~ total memory freed........: 6695843 bytes ~~ total allocations/frees...: 115616/115616 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 589 chars diff --git a/test/results/default/IEC104.pcap.out b/test/results/default/IEC104.pcap.out index 289d09a7a..95e1f915e 100644 --- a/test/results/default/IEC104.pcap.out +++ b/test/results/default/IEC104.pcap.out @@ -23,8 +23,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644370 bytes -~~ total memory freed........: 6644370 bytes +~~ total memory allocated....: 6644394 bytes +~~ total memory freed........: 6644394 bytes ~~ total allocations/frees...: 114046/114046 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/KakaoTalk_chat.pcap.out b/test/results/default/KakaoTalk_chat.pcap.out index e21dddabe..cbd28f301 100644 --- a/test/results/default/KakaoTalk_chat.pcap.out +++ b/test/results/default/KakaoTalk_chat.pcap.out @@ -276,8 +276,8 @@ ~~ total active/idle flows...: 38/38 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6864890 bytes -~~ total memory freed........: 6864890 bytes +~~ total memory allocated....: 6864914 bytes +~~ total memory freed........: 6864914 bytes ~~ total allocations/frees...: 115006/115006 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/KakaoTalk_talk.pcap.out b/test/results/default/KakaoTalk_talk.pcap.out index dd9ff8310..7f18a01c3 100644 --- a/test/results/default/KakaoTalk_talk.pcap.out +++ b/test/results/default/KakaoTalk_talk.pcap.out @@ -150,8 +150,8 @@ ~~ total active/idle flows...: 20/20 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6803463 bytes -~~ total memory freed........: 6803463 bytes +~~ total memory allocated....: 6803487 bytes +~~ total memory freed........: 6803487 bytes ~~ total allocations/frees...: 117471/117471 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/NTPv2.pcap.out b/test/results/default/NTPv2.pcap.out index d882dedce..15e4876a0 100644 --- a/test/results/default/NTPv2.pcap.out +++ b/test/results/default/NTPv2.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641672 bytes -~~ total memory freed........: 6641672 bytes +~~ total memory allocated....: 6641696 bytes +~~ total memory freed........: 6641696 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/NTPv3.pcap.out b/test/results/default/NTPv3.pcap.out index cdad13b06..df928e992 100644 --- a/test/results/default/NTPv3.pcap.out +++ b/test/results/default/NTPv3.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641672 bytes -~~ total memory freed........: 6641672 bytes +~~ total memory allocated....: 6641696 bytes +~~ total memory freed........: 6641696 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/NTPv4.pcap.out b/test/results/default/NTPv4.pcap.out index 6688378fa..62923976d 100644 --- a/test/results/default/NTPv4.pcap.out +++ b/test/results/default/NTPv4.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641672 bytes -~~ total memory freed........: 6641672 bytes +~~ total memory allocated....: 6641696 bytes +~~ total memory freed........: 6641696 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/Oscar.pcap.out b/test/results/default/Oscar.pcap.out index 556130c16..81dac23bb 100644 --- a/test/results/default/Oscar.pcap.out +++ b/test/results/default/Oscar.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645750 bytes -~~ total memory freed........: 6645750 bytes +~~ total memory allocated....: 6645774 bytes +~~ total memory freed........: 6645774 bytes ~~ total allocations/frees...: 114092/114092 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/TivoDVR.pcap.out b/test/results/default/TivoDVR.pcap.out index 61d11a677..d2343436f 100644 --- a/test/results/default/TivoDVR.pcap.out +++ b/test/results/default/TivoDVR.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641673 bytes -~~ total memory freed........: 6641673 bytes +~~ total memory allocated....: 6641697 bytes +~~ total memory freed........: 6641697 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/WebattackRCE.pcap.out b/test/results/default/WebattackRCE.pcap.out index ba6d758e9..9d4229a72 100644 --- a/test/results/default/WebattackRCE.pcap.out +++ b/test/results/default/WebattackRCE.pcap.out @@ -3197,8 +3197,8 @@ ~~ total active/idle flows...: 797/797 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 8640319 bytes -~~ total memory freed........: 8640319 bytes +~~ total memory allocated....: 8640343 bytes +~~ total memory freed........: 8640343 bytes ~~ total allocations/frees...: 128144/128144 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 573 chars diff --git a/test/results/default/WebattackSQLinj.pcap.out b/test/results/default/WebattackSQLinj.pcap.out index 539afb37f..49f3865c8 100644 --- a/test/results/default/WebattackSQLinj.pcap.out +++ b/test/results/default/WebattackSQLinj.pcap.out @@ -81,8 +81,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6666220 bytes -~~ total memory freed........: 6666220 bytes +~~ total memory allocated....: 6666244 bytes +~~ total memory freed........: 6666244 bytes ~~ total allocations/frees...: 114285/114285 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 553 chars diff --git a/test/results/default/WebattackXSS.pcap.out b/test/results/default/WebattackXSS.pcap.out index cd65f59f3..3d4dd3f92 100644 --- a/test/results/default/WebattackXSS.pcap.out +++ b/test/results/default/WebattackXSS.pcap.out @@ -5311,8 +5311,8 @@ ~~ total active/idle flows...: 661/661 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 8435060 bytes -~~ total memory freed........: 8435060 bytes +~~ total memory allocated....: 8435084 bytes +~~ total memory freed........: 8435084 bytes ~~ total allocations/frees...: 130826/130826 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 550 chars diff --git a/test/results/default/activision.pcap.out b/test/results/default/activision.pcap.out index f41ad8f69..89216d120 100644 --- a/test/results/default/activision.pcap.out +++ b/test/results/default/activision.pcap.out @@ -44,8 +44,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650259 bytes -~~ total memory freed........: 6650259 bytes +~~ total memory allocated....: 6650283 bytes +~~ total memory freed........: 6650283 bytes ~~ total allocations/frees...: 114113/114113 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/default/adult_content.pcap.out b/test/results/default/adult_content.pcap.out index 039379ef5..25bf274ae 100644 --- a/test/results/default/adult_content.pcap.out +++ b/test/results/default/adult_content.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642368 bytes -~~ total memory freed........: 6642368 bytes +~~ total memory allocated....: 6642392 bytes +~~ total memory freed........: 6642392 bytes ~~ total allocations/frees...: 114045/114045 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 547 chars diff --git a/test/results/default/afp.pcap.out b/test/results/default/afp.pcap.out index b8e1f1276..d8f5c9f57 100644 --- a/test/results/default/afp.pcap.out +++ b/test/results/default/afp.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642107 bytes -~~ total memory freed........: 6642107 bytes +~~ total memory allocated....: 6642131 bytes +~~ total memory freed........: 6642131 bytes ~~ total allocations/frees...: 114036/114036 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/agora-sd-rtn.pcap.out b/test/results/default/agora-sd-rtn.pcap.out index 224771955..23be42cbe 100644 --- a/test/results/default/agora-sd-rtn.pcap.out +++ b/test/results/default/agora-sd-rtn.pcap.out @@ -244,8 +244,8 @@ ~~ total active/idle flows...: 26/26 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6710630 bytes -~~ total memory freed........: 6710630 bytes +~~ total memory allocated....: 6710654 bytes +~~ total memory freed........: 6710654 bytes ~~ total allocations/frees...: 114698/114698 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 573 chars diff --git a/test/results/default/ah.pcapng.out b/test/results/default/ah.pcapng.out index 2e57bc1a2..853d83f1f 100644 --- a/test/results/default/ah.pcapng.out +++ b/test/results/default/ah.pcapng.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644109 bytes -~~ total memory freed........: 6644109 bytes +~~ total memory allocated....: 6644133 bytes +~~ total memory freed........: 6644133 bytes ~~ total allocations/frees...: 114037/114037 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 565 chars diff --git a/test/results/default/ajp.pcap.out b/test/results/default/ajp.pcap.out index f9c56e800..5e5036dcc 100644 --- a/test/results/default/ajp.pcap.out +++ b/test/results/default/ajp.pcap.out @@ -49,8 +49,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644689 bytes -~~ total memory freed........: 6644689 bytes +~~ total memory allocated....: 6644713 bytes +~~ total memory freed........: 6644713 bytes ~~ total allocations/frees...: 114057/114057 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 313 chars diff --git a/test/results/default/alexa-app.pcapng.out b/test/results/default/alexa-app.pcapng.out index ae6ffd7f4..49e7d5211 100644 --- a/test/results/default/alexa-app.pcapng.out +++ b/test/results/default/alexa-app.pcapng.out @@ -1421,8 +1421,8 @@ ~~ total active/idle flows...: 160/160 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7793404 bytes -~~ total memory freed........: 7793404 bytes +~~ total memory allocated....: 7793428 bytes +~~ total memory freed........: 7793428 bytes ~~ total allocations/frees...: 119726/119726 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 300 chars diff --git a/test/results/default/alicloud.pcap.out b/test/results/default/alicloud.pcap.out index d5e23f80d..c6218cc5a 100644 --- a/test/results/default/alicloud.pcap.out +++ b/test/results/default/alicloud.pcap.out @@ -141,8 +141,8 @@ ~~ total active/idle flows...: 15/15 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6710976 bytes -~~ total memory freed........: 6710976 bytes +~~ total memory allocated....: 6711000 bytes +~~ total memory freed........: 6711000 bytes ~~ total allocations/frees...: 114414/114414 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/among_us.pcap.out b/test/results/default/among_us.pcap.out index f94f48e3b..36c8956d0 100644 --- a/test/results/default/among_us.pcap.out +++ b/test/results/default/among_us.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641672 bytes -~~ total memory freed........: 6641672 bytes +~~ total memory allocated....: 6641696 bytes +~~ total memory freed........: 6641696 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 530 chars diff --git a/test/results/default/amqp.pcap.out b/test/results/default/amqp.pcap.out index 0bb2897a3..8fdc1ab10 100644 --- a/test/results/default/amqp.pcap.out +++ b/test/results/default/amqp.pcap.out @@ -34,8 +34,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6657098 bytes -~~ total memory freed........: 6657098 bytes +~~ total memory allocated....: 6657122 bytes +~~ total memory freed........: 6657122 bytes ~~ total allocations/frees...: 114208/114208 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/android.pcap.out b/test/results/default/android.pcap.out index 6c50168b4..21df96009 100644 --- a/test/results/default/android.pcap.out +++ b/test/results/default/android.pcap.out @@ -443,8 +443,8 @@ ~~ total active/idle flows...: 63/63 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7039911 bytes -~~ total memory freed........: 7039911 bytes +~~ total memory allocated....: 7039935 bytes +~~ total memory freed........: 7039935 bytes ~~ total allocations/frees...: 115463/115463 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/anyconnect-vpn.pcap.out b/test/results/default/anyconnect-vpn.pcap.out index 9189df036..27faba904 100644 --- a/test/results/default/anyconnect-vpn.pcap.out +++ b/test/results/default/anyconnect-vpn.pcap.out @@ -463,8 +463,8 @@ ~~ total active/idle flows...: 69/69 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6909386 bytes -~~ total memory freed........: 6909386 bytes +~~ total memory allocated....: 6909410 bytes +~~ total memory freed........: 6909410 bytes ~~ total allocations/frees...: 115437/115437 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 527 chars diff --git a/test/results/default/anydesk.pcapng.out b/test/results/default/anydesk.pcapng.out index 6eded2685..8131577a3 100644 --- a/test/results/default/anydesk.pcapng.out +++ b/test/results/default/anydesk.pcapng.out @@ -72,8 +72,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6704443 bytes -~~ total memory freed........: 6704443 bytes +~~ total memory allocated....: 6704467 bytes +~~ total memory freed........: 6704467 bytes ~~ total allocations/frees...: 114299/114299 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/atg.pcap.out b/test/results/default/atg.pcap.out index f5fc262bb..93a1c0c30 100644 --- a/test/results/default/atg.pcap.out +++ b/test/results/default/atg.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648930 bytes -~~ total memory freed........: 6648930 bytes +~~ total memory allocated....: 6648954 bytes +~~ total memory freed........: 6648954 bytes ~~ total allocations/frees...: 114064/114064 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 541 chars diff --git a/test/results/default/avast.pcap.out b/test/results/default/avast.pcap.out index eaad21d74..df7e92c0f 100644 --- a/test/results/default/avast.pcap.out +++ b/test/results/default/avast.pcap.out @@ -107,8 +107,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6686869 bytes -~~ total memory freed........: 6686869 bytes +~~ total memory allocated....: 6686893 bytes +~~ total memory freed........: 6686893 bytes ~~ total allocations/frees...: 114271/114271 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 527 chars diff --git a/test/results/default/avast_securedns.pcapng.out b/test/results/default/avast_securedns.pcapng.out index 5d54f4774..2715a6178 100644 --- a/test/results/default/avast_securedns.pcapng.out +++ b/test/results/default/avast_securedns.pcapng.out @@ -224,8 +224,8 @@ ~~ total active/idle flows...: 39/39 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6730972 bytes -~~ total memory freed........: 6730972 bytes +~~ total memory allocated....: 6730996 bytes +~~ total memory freed........: 6730996 bytes ~~ total allocations/frees...: 114515/114515 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 574 chars diff --git a/test/results/default/bacnet.pcap.out b/test/results/default/bacnet.pcap.out index 29613ba15..46341249f 100644 --- a/test/results/default/bacnet.pcap.out +++ b/test/results/default/bacnet.pcap.out @@ -63,8 +63,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6662938 bytes -~~ total memory freed........: 6662938 bytes +~~ total memory allocated....: 6662962 bytes +~~ total memory freed........: 6662962 bytes ~~ total allocations/frees...: 114142/114142 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/bad-dns-traffic.pcap.out b/test/results/default/bad-dns-traffic.pcap.out index 46db03cf2..0f7eec8e4 100644 --- a/test/results/default/bad-dns-traffic.pcap.out +++ b/test/results/default/bad-dns-traffic.pcap.out @@ -45,8 +45,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6657742 bytes -~~ total memory freed........: 6657742 bytes +~~ total memory allocated....: 6657766 bytes +~~ total memory freed........: 6657766 bytes ~~ total allocations/frees...: 114435/114435 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 576 chars diff --git a/test/results/default/badpackets.pcap.out b/test/results/default/badpackets.pcap.out index ed6080e14..809785bf1 100644 --- a/test/results/default/badpackets.pcap.out +++ b/test/results/default/badpackets.pcap.out @@ -200,8 +200,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 320 chars diff --git a/test/results/default/beckhoff_ads.pcapng.out b/test/results/default/beckhoff_ads.pcapng.out index 9f610147b..825c00a45 100644 --- a/test/results/default/beckhoff_ads.pcapng.out +++ b/test/results/default/beckhoff_ads.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643093 bytes -~~ total memory freed........: 6643093 bytes +~~ total memory allocated....: 6643117 bytes +~~ total memory freed........: 6643117 bytes ~~ total allocations/frees...: 114070/114070 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/default/bets.pcapng.out b/test/results/default/bets.pcapng.out index 63917b2b2..508771b6d 100644 --- a/test/results/default/bets.pcapng.out +++ b/test/results/default/bets.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6658531 bytes -~~ total memory freed........: 6658531 bytes +~~ total memory allocated....: 6658555 bytes +~~ total memory freed........: 6658555 bytes ~~ total allocations/frees...: 114060/114060 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 528 chars diff --git a/test/results/default/bfcp.pcapng.out b/test/results/default/bfcp.pcapng.out index 0b7cb41a1..19e077d55 100644 --- a/test/results/default/bfcp.pcapng.out +++ b/test/results/default/bfcp.pcapng.out @@ -23,8 +23,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646360 bytes -~~ total memory freed........: 6646360 bytes +~~ total memory allocated....: 6646384 bytes +~~ total memory freed........: 6646384 bytes ~~ total allocations/frees...: 114045/114045 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/bfd.pcap.out b/test/results/default/bfd.pcap.out index 965f52ff3..cb50048d2 100644 --- a/test/results/default/bfd.pcap.out +++ b/test/results/default/bfd.pcap.out @@ -32,8 +32,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648838 bytes -~~ total memory freed........: 6648838 bytes +~~ total memory allocated....: 6648862 bytes +~~ total memory freed........: 6648862 bytes ~~ total allocations/frees...: 114064/114064 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/bitcoin.pcap.out b/test/results/default/bitcoin.pcap.out index a5bddcc3c..0760bd8a6 100644 --- a/test/results/default/bitcoin.pcap.out +++ b/test/results/default/bitcoin.pcap.out @@ -63,8 +63,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6668444 bytes -~~ total memory freed........: 6668444 bytes +~~ total memory allocated....: 6668468 bytes +~~ total memory freed........: 6668468 bytes ~~ total allocations/frees...: 114604/114604 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/bittorrent.pcap.out b/test/results/default/bittorrent.pcap.out index d750f6434..e322d510e 100644 --- a/test/results/default/bittorrent.pcap.out +++ b/test/results/default/bittorrent.pcap.out @@ -170,8 +170,8 @@ ~~ total active/idle flows...: 24/24 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6748086 bytes -~~ total memory freed........: 6748086 bytes +~~ total memory allocated....: 6748110 bytes +~~ total memory freed........: 6748110 bytes ~~ total allocations/frees...: 114594/114594 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 569 chars diff --git a/test/results/default/bittorrent_tcp_miss.pcapng.out b/test/results/default/bittorrent_tcp_miss.pcapng.out index 5dcbf0c78..78529a381 100644 --- a/test/results/default/bittorrent_tcp_miss.pcapng.out +++ b/test/results/default/bittorrent_tcp_miss.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646591 bytes -~~ total memory freed........: 6646591 bytes +~~ total memory allocated....: 6646615 bytes +~~ total memory freed........: 6646615 bytes ~~ total allocations/frees...: 114121/114121 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 543 chars diff --git a/test/results/default/bittorrent_utp.pcap.out b/test/results/default/bittorrent_utp.pcap.out index b106200e7..c5dbf8de1 100644 --- a/test/results/default/bittorrent_utp.pcap.out +++ b/test/results/default/bittorrent_utp.pcap.out @@ -29,8 +29,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646631 bytes -~~ total memory freed........: 6646631 bytes +~~ total memory allocated....: 6646655 bytes +~~ total memory freed........: 6646655 bytes ~~ total allocations/frees...: 114124/114124 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 548 chars diff --git a/test/results/default/bjnp.pcap.out b/test/results/default/bjnp.pcap.out index 2a3efef00..accef8174 100644 --- a/test/results/default/bjnp.pcap.out +++ b/test/results/default/bjnp.pcap.out @@ -49,8 +49,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6662561 bytes -~~ total memory freed........: 6662561 bytes +~~ total memory allocated....: 6662585 bytes +~~ total memory freed........: 6662585 bytes ~~ total allocations/frees...: 114129/114129 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 517 chars diff --git a/test/results/default/bot.pcap.out b/test/results/default/bot.pcap.out index 6e60b7d18..02525bc49 100644 --- a/test/results/default/bot.pcap.out +++ b/test/results/default/bot.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653530 bytes -~~ total memory freed........: 6653530 bytes +~~ total memory allocated....: 6653554 bytes +~~ total memory freed........: 6653554 bytes ~~ total allocations/frees...: 114428/114428 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 541 chars diff --git a/test/results/default/bt-dns.pcap.out b/test/results/default/bt-dns.pcap.out index 365009f19..b932e62de 100644 --- a/test/results/default/bt-dns.pcap.out +++ b/test/results/default/bt-dns.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641701 bytes -~~ total memory freed........: 6641701 bytes +~~ total memory allocated....: 6641725 bytes +~~ total memory freed........: 6641725 bytes ~~ total allocations/frees...: 114022/114022 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 528 chars diff --git a/test/results/default/bt-http.pcapng.out b/test/results/default/bt-http.pcapng.out index 8e42e1242..a6454f48a 100644 --- a/test/results/default/bt-http.pcapng.out +++ b/test/results/default/bt-http.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642692 bytes -~~ total memory freed........: 6642692 bytes +~~ total memory allocated....: 6642716 bytes +~~ total memory freed........: 6642716 bytes ~~ total allocations/frees...: 114050/114050 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/bt_search.pcap.out b/test/results/default/bt_search.pcap.out index 4ec4b6dd3..fdbc13396 100644 --- a/test/results/default/bt_search.pcap.out +++ b/test/results/default/bt_search.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641673 bytes -~~ total memory freed........: 6641673 bytes +~~ total memory allocated....: 6641697 bytes +~~ total memory freed........: 6641697 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/c1222.pcapng.out b/test/results/default/c1222.pcapng.out index d1d335b4a..6eab130a3 100644 --- a/test/results/default/c1222.pcapng.out +++ b/test/results/default/c1222.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644051 bytes -~~ total memory freed........: 6644051 bytes +~~ total memory allocated....: 6644075 bytes +~~ total memory freed........: 6644075 bytes ~~ total allocations/frees...: 114035/114035 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/cachefly.pcapng.out b/test/results/default/cachefly.pcapng.out index eb2431e7b..6d8d23ecc 100644 --- a/test/results/default/cachefly.pcapng.out +++ b/test/results/default/cachefly.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6691311 bytes -~~ total memory freed........: 6691311 bytes +~~ total memory allocated....: 6691335 bytes +~~ total memory freed........: 6691335 bytes ~~ total allocations/frees...: 114091/114091 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 561 chars diff --git a/test/results/default/can.pcap.out b/test/results/default/can.pcap.out index 6caabcdc3..8e99de8d9 100644 --- a/test/results/default/can.pcap.out +++ b/test/results/default/can.pcap.out @@ -42,8 +42,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6657919 bytes -~~ total memory freed........: 6657919 bytes +~~ total memory allocated....: 6657943 bytes +~~ total memory freed........: 6657943 bytes ~~ total allocations/frees...: 114105/114105 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 564 chars diff --git a/test/results/default/capwap.pcap.out b/test/results/default/capwap.pcap.out index ffae7d3ca..e866a23d5 100644 --- a/test/results/default/capwap.pcap.out +++ b/test/results/default/capwap.pcap.out @@ -76,8 +76,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6662268 bytes -~~ total memory freed........: 6662268 bytes +~~ total memory allocated....: 6662292 bytes +~~ total memory freed........: 6662292 bytes ~~ total allocations/frees...: 114459/114459 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 297 chars diff --git a/test/results/default/capwap_data.pcapng.out b/test/results/default/capwap_data.pcapng.out index 4be0d76bc..a5b429905 100644 --- a/test/results/default/capwap_data.pcapng.out +++ b/test/results/default/capwap_data.pcapng.out @@ -37,8 +37,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 306 chars diff --git a/test/results/default/cassandra.pcap.out b/test/results/default/cassandra.pcap.out index 7d9544069..3193a7f2f 100644 --- a/test/results/default/cassandra.pcap.out +++ b/test/results/default/cassandra.pcap.out @@ -32,8 +32,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650903 bytes -~~ total memory freed........: 6650903 bytes +~~ total memory allocated....: 6650927 bytes +~~ total memory freed........: 6650927 bytes ~~ total allocations/frees...: 114064/114064 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 548 chars diff --git a/test/results/default/ceph.pcap.out b/test/results/default/ceph.pcap.out index 9f002c180..fe64d6b3d 100644 --- a/test/results/default/ceph.pcap.out +++ b/test/results/default/ceph.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642774 bytes -~~ total memory freed........: 6642774 bytes +~~ total memory allocated....: 6642798 bytes +~~ total memory freed........: 6642798 bytes ~~ total allocations/frees...: 114059/114059 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/check_mk_new.pcap.out b/test/results/default/check_mk_new.pcap.out index 23e4d98bc..8cc4b0d61 100644 --- a/test/results/default/check_mk_new.pcap.out +++ b/test/results/default/check_mk_new.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644485 bytes -~~ total memory freed........: 6644485 bytes +~~ total memory allocated....: 6644509 bytes +~~ total memory freed........: 6644509 bytes ~~ total allocations/frees...: 114118/114118 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 550 chars diff --git a/test/results/default/chrome.pcap.out b/test/results/default/chrome.pcap.out index d54466844..fd31a9af6 100644 --- a/test/results/default/chrome.pcap.out +++ b/test/results/default/chrome.pcap.out @@ -63,8 +63,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6843560 bytes -~~ total memory freed........: 6843560 bytes +~~ total memory allocated....: 6843584 bytes +~~ total memory freed........: 6843584 bytes ~~ total allocations/frees...: 114252/114252 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/cip_io.pcap.out b/test/results/default/cip_io.pcap.out index adf6ae5b9..1d3383383 100644 --- a/test/results/default/cip_io.pcap.out +++ b/test/results/default/cip_io.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641759 bytes -~~ total memory freed........: 6641759 bytes +~~ total memory allocated....: 6641783 bytes +~~ total memory freed........: 6641783 bytes ~~ total allocations/frees...: 114024/114024 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 561 chars diff --git a/test/results/default/citrix.pcap.out b/test/results/default/citrix.pcap.out index be35cf4ac..c0499ca98 100644 --- a/test/results/default/citrix.pcap.out +++ b/test/results/default/citrix.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644543 bytes -~~ total memory freed........: 6644543 bytes +~~ total memory allocated....: 6644567 bytes +~~ total memory freed........: 6644567 bytes ~~ total allocations/frees...: 114120/114120 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 500 chars diff --git a/test/results/default/cloudflare-warp.pcap.out b/test/results/default/cloudflare-warp.pcap.out index 6dd20ec60..74d702ca0 100644 --- a/test/results/default/cloudflare-warp.pcap.out +++ b/test/results/default/cloudflare-warp.pcap.out @@ -78,8 +78,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 3 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6684740 bytes -~~ total memory freed........: 6684740 bytes +~~ total memory allocated....: 6684764 bytes +~~ total memory freed........: 6684764 bytes ~~ total allocations/frees...: 114211/114211 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 538 chars diff --git a/test/results/default/cnp_ip.pcapng.out b/test/results/default/cnp_ip.pcapng.out index 4b140f606..9fc43e607 100644 --- a/test/results/default/cnp_ip.pcapng.out +++ b/test/results/default/cnp_ip.pcapng.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641701 bytes -~~ total memory freed........: 6641701 bytes +~~ total memory allocated....: 6641725 bytes +~~ total memory freed........: 6641725 bytes ~~ total allocations/frees...: 114022/114022 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 554 chars diff --git a/test/results/default/coap_mqtt.pcap.out b/test/results/default/coap_mqtt.pcap.out index 3968bae77..7474cdb95 100644 --- a/test/results/default/coap_mqtt.pcap.out +++ b/test/results/default/coap_mqtt.pcap.out @@ -127,8 +127,8 @@ ~~ total active/idle flows...: 16/16 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6715535 bytes -~~ total memory freed........: 6715535 bytes +~~ total memory allocated....: 6715559 bytes +~~ total memory freed........: 6715559 bytes ~~ total allocations/frees...: 115269/115269 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 534 chars diff --git a/test/results/default/codm.pcap.out b/test/results/default/codm.pcap.out index fd926fddc..0635361c6 100644 --- a/test/results/default/codm.pcap.out +++ b/test/results/default/codm.pcap.out @@ -31,8 +31,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650848 bytes -~~ total memory freed........: 6650848 bytes +~~ total memory allocated....: 6650872 bytes +~~ total memory freed........: 6650872 bytes ~~ total allocations/frees...: 114063/114063 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 502 chars diff --git a/test/results/default/collectd.pcap.out b/test/results/default/collectd.pcap.out index cfed4ae8b..1e0e2b2e0 100644 --- a/test/results/default/collectd.pcap.out +++ b/test/results/default/collectd.pcap.out @@ -80,8 +80,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 3 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6662320 bytes -~~ total memory freed........: 6662320 bytes +~~ total memory allocated....: 6662344 bytes +~~ total memory freed........: 6662344 bytes ~~ total allocations/frees...: 114188/114188 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 569 chars diff --git a/test/results/default/conncheck.pcap.out b/test/results/default/conncheck.pcap.out index 9d4fdd3c0..1ac6281f6 100644 --- a/test/results/default/conncheck.pcap.out +++ b/test/results/default/conncheck.pcap.out @@ -87,8 +87,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6666523 bytes -~~ total memory freed........: 6666523 bytes +~~ total memory allocated....: 6666547 bytes +~~ total memory freed........: 6666547 bytes ~~ total allocations/frees...: 114250/114250 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 547 chars diff --git a/test/results/default/corba.pcap.out b/test/results/default/corba.pcap.out index 83d723f79..5bda78d6b 100644 --- a/test/results/default/corba.pcap.out +++ b/test/results/default/corba.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646795 bytes -~~ total memory freed........: 6646795 bytes +~~ total memory allocated....: 6646819 bytes +~~ total memory freed........: 6646819 bytes ~~ total allocations/frees...: 114060/114060 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/cpha.pcap.out b/test/results/default/cpha.pcap.out index 0a65ee565..af142be81 100644 --- a/test/results/default/cpha.pcap.out +++ b/test/results/default/cpha.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641644 bytes -~~ total memory freed........: 6641644 bytes +~~ total memory allocated....: 6641668 bytes +~~ total memory freed........: 6641668 bytes ~~ total allocations/frees...: 114020/114020 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 565 chars diff --git a/test/results/default/crawler_false_positive.pcapng.out b/test/results/default/crawler_false_positive.pcapng.out index 7786f1853..ae3feae6f 100644 --- a/test/results/default/crawler_false_positive.pcapng.out +++ b/test/results/default/crawler_false_positive.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642096 bytes -~~ total memory freed........: 6642096 bytes +~~ total memory allocated....: 6642120 bytes +~~ total memory freed........: 6642120 bytes ~~ total allocations/frees...: 114037/114037 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 562 chars diff --git a/test/results/default/crynet.pcap.out b/test/results/default/crynet.pcap.out index 6508cb04d..bd747886b 100644 --- a/test/results/default/crynet.pcap.out +++ b/test/results/default/crynet.pcap.out @@ -70,8 +70,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6658440 bytes -~~ total memory freed........: 6658440 bytes +~~ total memory allocated....: 6658464 bytes +~~ total memory freed........: 6658464 bytes ~~ total allocations/frees...: 114191/114191 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 567 chars diff --git a/test/results/default/custom_categories.pcapng.out b/test/results/default/custom_categories.pcapng.out index 2b6f664ab..d4ab81f9d 100644 --- a/test/results/default/custom_categories.pcapng.out +++ b/test/results/default/custom_categories.pcapng.out @@ -36,8 +36,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650447 bytes -~~ total memory freed........: 6650447 bytes +~~ total memory allocated....: 6650471 bytes +~~ total memory freed........: 6650471 bytes ~~ total allocations/frees...: 114122/114122 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 313 chars diff --git a/test/results/default/custom_risk_mask.pcapng.out b/test/results/default/custom_risk_mask.pcapng.out index df09e7165..e5c07edb2 100644 --- a/test/results/default/custom_risk_mask.pcapng.out +++ b/test/results/default/custom_risk_mask.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644013 bytes -~~ total memory freed........: 6644013 bytes +~~ total memory allocated....: 6644037 bytes +~~ total memory freed........: 6644037 bytes ~~ total allocations/frees...: 114033/114033 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 579 chars diff --git a/test/results/default/custom_rules_ipv6.pcapng.out b/test/results/default/custom_rules_ipv6.pcapng.out index eeeb4c97f..a4411edba 100644 --- a/test/results/default/custom_rules_ipv6.pcapng.out +++ b/test/results/default/custom_rules_ipv6.pcapng.out @@ -40,8 +40,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6655515 bytes -~~ total memory freed........: 6655515 bytes +~~ total memory allocated....: 6655539 bytes +~~ total memory freed........: 6655539 bytes ~~ total allocations/frees...: 114090/114090 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 580 chars diff --git a/test/results/default/custom_rules_same-ip_multiple_ports.pcapng.out b/test/results/default/custom_rules_same-ip_multiple_ports.pcapng.out index eda2a6356..39572afa8 100644 --- a/test/results/default/custom_rules_same-ip_multiple_ports.pcapng.out +++ b/test/results/default/custom_rules_same-ip_multiple_ports.pcapng.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646459 bytes -~~ total memory freed........: 6646459 bytes +~~ total memory allocated....: 6646483 bytes +~~ total memory freed........: 6646483 bytes ~~ total allocations/frees...: 114050/114050 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 587 chars diff --git a/test/results/default/dazn.pcapng.out b/test/results/default/dazn.pcapng.out index 00a381e44..f2594a28d 100644 --- a/test/results/default/dazn.pcapng.out +++ b/test/results/default/dazn.pcapng.out @@ -33,8 +33,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6658947 bytes -~~ total memory freed........: 6658947 bytes +~~ total memory allocated....: 6658971 bytes +~~ total memory freed........: 6658971 bytes ~~ total allocations/frees...: 114066/114066 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 557 chars diff --git a/test/results/default/dcerpc.pcap.out b/test/results/default/dcerpc.pcap.out index a79aa6212..09dc03f4b 100644 --- a/test/results/default/dcerpc.pcap.out +++ b/test/results/default/dcerpc.pcap.out @@ -35,8 +35,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648983 bytes -~~ total memory freed........: 6648983 bytes +~~ total memory allocated....: 6649007 bytes +~~ total memory freed........: 6649007 bytes ~~ total allocations/frees...: 114069/114069 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 567 chars diff --git a/test/results/default/dhcp-fuzz.pcapng.out b/test/results/default/dhcp-fuzz.pcapng.out index 8a3a9d8fc..71e400154 100644 --- a/test/results/default/dhcp-fuzz.pcapng.out +++ b/test/results/default/dhcp-fuzz.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641644 bytes -~~ total memory freed........: 6641644 bytes +~~ total memory allocated....: 6641668 bytes +~~ total memory freed........: 6641668 bytes ~~ total allocations/frees...: 114020/114020 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 572 chars diff --git a/test/results/default/diameter.pcap.out b/test/results/default/diameter.pcap.out index 51adf3b1c..c71d54bfa 100644 --- a/test/results/default/diameter.pcap.out +++ b/test/results/default/diameter.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641817 bytes -~~ total memory freed........: 6641817 bytes +~~ total memory allocated....: 6641841 bytes +~~ total memory freed........: 6641841 bytes ~~ total allocations/frees...: 114026/114026 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 569 chars diff --git a/test/results/default/discord.pcap.out b/test/results/default/discord.pcap.out index 102fe1af3..425442861 100644 --- a/test/results/default/discord.pcap.out +++ b/test/results/default/discord.pcap.out @@ -322,8 +322,8 @@ ~~ total active/idle flows...: 34/34 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6736201 bytes -~~ total memory freed........: 6736201 bytes +~~ total memory allocated....: 6736225 bytes +~~ total memory freed........: 6736225 bytes ~~ total allocations/frees...: 114805/114805 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 516 chars diff --git a/test/results/default/discord_mid_flow.pcap.out b/test/results/default/discord_mid_flow.pcap.out index eedbf5080..2b994f52a 100644 --- a/test/results/default/discord_mid_flow.pcap.out +++ b/test/results/default/discord_mid_flow.pcap.out @@ -41,8 +41,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 309 chars diff --git a/test/results/default/dlep.pcapng.out b/test/results/default/dlep.pcapng.out index b2894bcc6..d5933e06f 100644 --- a/test/results/default/dlep.pcapng.out +++ b/test/results/default/dlep.pcapng.out @@ -22,8 +22,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646315 bytes -~~ total memory freed........: 6646315 bytes +~~ total memory allocated....: 6646339 bytes +~~ total memory freed........: 6646339 bytes ~~ total allocations/frees...: 114045/114045 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 551 chars diff --git a/test/results/default/dlms.pcap.out b/test/results/default/dlms.pcap.out index 8545933e9..c803ccf9f 100644 --- a/test/results/default/dlms.pcap.out +++ b/test/results/default/dlms.pcap.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646766 bytes -~~ total memory freed........: 6646766 bytes +~~ total memory allocated....: 6646790 bytes +~~ total memory freed........: 6646790 bytes ~~ total allocations/frees...: 114059/114059 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 534 chars diff --git a/test/results/default/dlt_ppp.pcap.out b/test/results/default/dlt_ppp.pcap.out index fe0638d56..997a4537e 100644 --- a/test/results/default/dlt_ppp.pcap.out +++ b/test/results/default/dlt_ppp.pcap.out @@ -10,8 +10,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 277 chars diff --git a/test/results/default/dnp3.pcap.out b/test/results/default/dnp3.pcap.out index 680fd467b..6ebb457f4 100644 --- a/test/results/default/dnp3.pcap.out +++ b/test/results/default/dnp3.pcap.out @@ -87,8 +87,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6673434 bytes -~~ total memory freed........: 6673434 bytes +~~ total memory allocated....: 6673458 bytes +~~ total memory freed........: 6673458 bytes ~~ total allocations/frees...: 114640/114640 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 540 chars diff --git a/test/results/default/dns-exf.pcap.out b/test/results/default/dns-exf.pcap.out index 3cab2b66a..d30994519 100644 --- a/test/results/default/dns-exf.pcap.out +++ b/test/results/default/dns-exf.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641812 bytes -~~ total memory freed........: 6641812 bytes +~~ total memory allocated....: 6641836 bytes +~~ total memory freed........: 6641836 bytes ~~ total allocations/frees...: 114026/114026 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/dns-google-nsid.pcapng.out b/test/results/default/dns-google-nsid.pcapng.out index f509763d8..505006145 100644 --- a/test/results/default/dns-google-nsid.pcapng.out +++ b/test/results/default/dns-google-nsid.pcapng.out @@ -52,8 +52,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6655801 bytes -~~ total memory freed........: 6655801 bytes +~~ total memory allocated....: 6655825 bytes +~~ total memory freed........: 6655825 bytes ~~ total allocations/frees...: 114100/114100 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 578 chars diff --git a/test/results/default/dns-invalid-chars.pcap.out b/test/results/default/dns-invalid-chars.pcap.out index 7c4b06833..a5ddbce27 100644 --- a/test/results/default/dns-invalid-chars.pcap.out +++ b/test/results/default/dns-invalid-chars.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641739 bytes -~~ total memory freed........: 6641739 bytes +~~ total memory allocated....: 6641763 bytes +~~ total memory freed........: 6641763 bytes ~~ total allocations/frees...: 114023/114023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 578 chars diff --git a/test/results/default/dns-tunnel-iodine.pcap.out b/test/results/default/dns-tunnel-iodine.pcap.out index 71f891799..ab7a93b79 100644 --- a/test/results/default/dns-tunnel-iodine.pcap.out +++ b/test/results/default/dns-tunnel-iodine.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6654279 bytes -~~ total memory freed........: 6654279 bytes +~~ total memory allocated....: 6654303 bytes +~~ total memory freed........: 6654303 bytes ~~ total allocations/frees...: 114456/114456 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 578 chars diff --git a/test/results/default/dns.pcap.out b/test/results/default/dns.pcap.out index bf406d682..fbc8daf30 100644 --- a/test/results/default/dns.pcap.out +++ b/test/results/default/dns.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641730 bytes -~~ total memory freed........: 6641730 bytes +~~ total memory allocated....: 6641754 bytes +~~ total memory freed........: 6641754 bytes ~~ total allocations/frees...: 114023/114023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 296 chars diff --git a/test/results/default/dns2tcp_tunnel.pcap.out b/test/results/default/dns2tcp_tunnel.pcap.out index 6665acfbc..d5e840ad4 100644 --- a/test/results/default/dns2tcp_tunnel.pcap.out +++ b/test/results/default/dns2tcp_tunnel.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650165 bytes -~~ total memory freed........: 6650165 bytes +~~ total memory allocated....: 6650189 bytes +~~ total memory freed........: 6650189 bytes ~~ total allocations/frees...: 114077/114077 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 543 chars diff --git a/test/results/default/dns_ambiguous_names.pcap.out b/test/results/default/dns_ambiguous_names.pcap.out index 3b0524cf2..5507cb4da 100644 --- a/test/results/default/dns_ambiguous_names.pcap.out +++ b/test/results/default/dns_ambiguous_names.pcap.out @@ -69,8 +69,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6662913 bytes -~~ total memory freed........: 6662913 bytes +~~ total memory allocated....: 6662937 bytes +~~ total memory freed........: 6662937 bytes ~~ total allocations/frees...: 114141/114141 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 580 chars diff --git a/test/results/default/dns_doh.pcap.out b/test/results/default/dns_doh.pcap.out index 9294b926b..8edab8101 100644 --- a/test/results/default/dns_doh.pcap.out +++ b/test/results/default/dns_doh.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6655284 bytes -~~ total memory freed........: 6655284 bytes +~~ total memory allocated....: 6655308 bytes +~~ total memory freed........: 6655308 bytes ~~ total allocations/frees...: 114168/114168 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/dns_dot.pcap.out b/test/results/default/dns_dot.pcap.out index 46fe1e6c4..e440a7b6e 100644 --- a/test/results/default/dns_dot.pcap.out +++ b/test/results/default/dns_dot.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650702 bytes -~~ total memory freed........: 6650702 bytes +~~ total memory allocated....: 6650726 bytes +~~ total memory freed........: 6650726 bytes ~~ total allocations/frees...: 114063/114063 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/dns_exfiltration.pcap.out b/test/results/default/dns_exfiltration.pcap.out index 0e8613a5b..4e6fdb905 100644 --- a/test/results/default/dns_exfiltration.pcap.out +++ b/test/results/default/dns_exfiltration.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650457 bytes -~~ total memory freed........: 6650457 bytes +~~ total memory allocated....: 6650481 bytes +~~ total memory freed........: 6650481 bytes ~~ total allocations/frees...: 114322/114322 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 577 chars diff --git a/test/results/default/dns_fragmented.pcap.out b/test/results/default/dns_fragmented.pcap.out index c1162a1fc..0268901dc 100644 --- a/test/results/default/dns_fragmented.pcap.out +++ b/test/results/default/dns_fragmented.pcap.out @@ -159,8 +159,8 @@ ~~ total active/idle flows...: 21/21 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6689442 bytes -~~ total memory freed........: 6689442 bytes +~~ total memory allocated....: 6689466 bytes +~~ total memory freed........: 6689466 bytes ~~ total allocations/frees...: 114310/114310 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 325 chars diff --git a/test/results/default/dns_invert_query.pcapng.out b/test/results/default/dns_invert_query.pcapng.out index ecff40c24..a35666c26 100644 --- a/test/results/default/dns_invert_query.pcapng.out +++ b/test/results/default/dns_invert_query.pcapng.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641673 bytes -~~ total memory freed........: 6641673 bytes +~~ total memory allocated....: 6641697 bytes +~~ total memory freed........: 6641697 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/dns_long_domainname.pcap.out b/test/results/default/dns_long_domainname.pcap.out index 950ed68c9..69fc46794 100644 --- a/test/results/default/dns_long_domainname.pcap.out +++ b/test/results/default/dns_long_domainname.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641725 bytes -~~ total memory freed........: 6641725 bytes +~~ total memory allocated....: 6641749 bytes +~~ total memory freed........: 6641749 bytes ~~ total allocations/frees...: 114023/114023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 580 chars diff --git a/test/results/default/dnscrypt-v1-and-resolver-pings.pcap.out b/test/results/default/dnscrypt-v1-and-resolver-pings.pcap.out index e0cdd6203..db55a9e59 100644 --- a/test/results/default/dnscrypt-v1-and-resolver-pings.pcap.out +++ b/test/results/default/dnscrypt-v1-and-resolver-pings.pcap.out @@ -1545,8 +1545,8 @@ ~~ total active/idle flows...: 245/245 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7215461 bytes -~~ total memory freed........: 7215461 bytes +~~ total memory allocated....: 7215485 bytes +~~ total memory freed........: 7215485 bytes ~~ total allocations/frees...: 117203/117203 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 338 chars diff --git a/test/results/default/dnscrypt-v2-doh.pcap.out b/test/results/default/dnscrypt-v2-doh.pcap.out index 20c97f6ae..7f79032b0 100644 --- a/test/results/default/dnscrypt-v2-doh.pcap.out +++ b/test/results/default/dnscrypt-v2-doh.pcap.out @@ -315,8 +315,8 @@ ~~ total active/idle flows...: 34/34 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7016367 bytes -~~ total memory freed........: 7016367 bytes +~~ total memory allocated....: 7016391 bytes +~~ total memory freed........: 7016391 bytes ~~ total allocations/frees...: 115156/115156 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/dnscrypt-v2.pcap.out b/test/results/default/dnscrypt-v2.pcap.out index efe34040d..99dc1244b 100644 --- a/test/results/default/dnscrypt-v2.pcap.out +++ b/test/results/default/dnscrypt-v2.pcap.out @@ -24,8 +24,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646515 bytes -~~ total memory freed........: 6646515 bytes +~~ total memory allocated....: 6646539 bytes +~~ total memory freed........: 6646539 bytes ~~ total allocations/frees...: 114051/114051 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 572 chars diff --git a/test/results/default/dnscrypt_skype_false_positive.pcapng.out b/test/results/default/dnscrypt_skype_false_positive.pcapng.out index c0b9d3e27..e8b07d299 100644 --- a/test/results/default/dnscrypt_skype_false_positive.pcapng.out +++ b/test/results/default/dnscrypt_skype_false_positive.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641855 bytes -~~ total memory freed........: 6641855 bytes +~~ total memory allocated....: 6641879 bytes +~~ total memory freed........: 6641879 bytes ~~ total allocations/frees...: 114027/114027 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 592 chars diff --git a/test/results/default/doh.pcapng.out b/test/results/default/doh.pcapng.out index c94d0771d..39f8a1487 100644 --- a/test/results/default/doh.pcapng.out +++ b/test/results/default/doh.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6655085 bytes -~~ total memory freed........: 6655085 bytes +~~ total memory allocated....: 6655109 bytes +~~ total memory freed........: 6655109 bytes ~~ total allocations/frees...: 114148/114148 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/default/doq.pcapng.out b/test/results/default/doq.pcapng.out index 3419cc77f..b96b716a1 100644 --- a/test/results/default/doq.pcapng.out +++ b/test/results/default/doq.pcapng.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6654678 bytes -~~ total memory freed........: 6654678 bytes +~~ total memory allocated....: 6654702 bytes +~~ total memory freed........: 6654702 bytes ~~ total allocations/frees...: 114073/114073 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/doq_adguard.pcapng.out b/test/results/default/doq_adguard.pcapng.out index fd76efb80..2328ff7f8 100644 --- a/test/results/default/doq_adguard.pcapng.out +++ b/test/results/default/doq_adguard.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6660297 bytes -~~ total memory freed........: 6660297 bytes +~~ total memory allocated....: 6660321 bytes +~~ total memory freed........: 6660321 bytes ~~ total allocations/frees...: 114337/114337 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 574 chars diff --git a/test/results/default/dos_win98_smb_netbeui.pcap.out b/test/results/default/dos_win98_smb_netbeui.pcap.out index 98530ed83..a71294d15 100644 --- a/test/results/default/dos_win98_smb_netbeui.pcap.out +++ b/test/results/default/dos_win98_smb_netbeui.pcap.out @@ -116,8 +116,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650233 bytes -~~ total memory freed........: 6650233 bytes +~~ total memory allocated....: 6650257 bytes +~~ total memory freed........: 6650257 bytes ~~ total allocations/frees...: 114112/114112 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 311 chars diff --git a/test/results/default/dotenv.pcap.out b/test/results/default/dotenv.pcap.out index 5b6237ce6..0a4869144 100644 --- a/test/results/default/dotenv.pcap.out +++ b/test/results/default/dotenv.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642083 bytes -~~ total memory freed........: 6642083 bytes +~~ total memory allocated....: 6642107 bytes +~~ total memory freed........: 6642107 bytes ~~ total allocations/frees...: 114037/114037 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/drda_db2.pcap.out b/test/results/default/drda_db2.pcap.out index 4df6fc013..7de0447a7 100644 --- a/test/results/default/drda_db2.pcap.out +++ b/test/results/default/drda_db2.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644793 bytes -~~ total memory freed........: 6644793 bytes +~~ total memory allocated....: 6644817 bytes +~~ total memory freed........: 6644817 bytes ~~ total allocations/frees...: 114059/114059 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 531 chars diff --git a/test/results/default/dropbox.pcap.out b/test/results/default/dropbox.pcap.out index 8fba0d465..fee44a0f1 100644 --- a/test/results/default/dropbox.pcap.out +++ b/test/results/default/dropbox.pcap.out @@ -138,8 +138,8 @@ ~~ total active/idle flows...: 15/15 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6698295 bytes -~~ total memory freed........: 6698295 bytes +~~ total memory allocated....: 6698319 bytes +~~ total memory freed........: 6698319 bytes ~~ total allocations/frees...: 115021/115021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 537 chars diff --git a/test/results/default/dtls.pcap.out b/test/results/default/dtls.pcap.out index 39f6f3c90..f821a5afc 100644 --- a/test/results/default/dtls.pcap.out +++ b/test/results/default/dtls.pcap.out @@ -34,8 +34,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644626 bytes -~~ total memory freed........: 6644626 bytes +~~ total memory allocated....: 6644650 bytes +~~ total memory freed........: 6644650 bytes ~~ total allocations/frees...: 114057/114057 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 297 chars diff --git a/test/results/default/dtls2.pcap.out b/test/results/default/dtls2.pcap.out index 8e9feaea5..00d0dc8ca 100644 --- a/test/results/default/dtls2.pcap.out +++ b/test/results/default/dtls2.pcap.out @@ -23,8 +23,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642630 bytes -~~ total memory freed........: 6642630 bytes +~~ total memory allocated....: 6642654 bytes +~~ total memory freed........: 6642654 bytes ~~ total allocations/frees...: 114055/114055 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/dtls_certificate.pcapng.out b/test/results/default/dtls_certificate.pcapng.out index 66565c4e9..1e0f27a80 100644 --- a/test/results/default/dtls_certificate.pcapng.out +++ b/test/results/default/dtls_certificate.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643941 bytes -~~ total memory freed........: 6643941 bytes +~~ total memory allocated....: 6643965 bytes +~~ total memory freed........: 6643965 bytes ~~ total allocations/frees...: 114025/114025 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 579 chars diff --git a/test/results/default/dtls_certificate_fragments.pcap.out b/test/results/default/dtls_certificate_fragments.pcap.out index 1c9280c3b..fd9a63ff3 100644 --- a/test/results/default/dtls_certificate_fragments.pcap.out +++ b/test/results/default/dtls_certificate_fragments.pcap.out @@ -31,8 +31,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6651414 bytes -~~ total memory freed........: 6651414 bytes +~~ total memory allocated....: 6651438 bytes +~~ total memory freed........: 6651438 bytes ~~ total allocations/frees...: 114074/114074 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 587 chars diff --git a/test/results/default/dtls_mid_sessions.pcapng.out b/test/results/default/dtls_mid_sessions.pcapng.out index c99357462..e61f4e486 100644 --- a/test/results/default/dtls_mid_sessions.pcapng.out +++ b/test/results/default/dtls_mid_sessions.pcapng.out @@ -37,8 +37,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6651158 bytes -~~ total memory freed........: 6651158 bytes +~~ total memory allocated....: 6651182 bytes +~~ total memory freed........: 6651182 bytes ~~ total allocations/frees...: 114144/114144 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 580 chars diff --git a/test/results/default/dtls_old_version.pcapng.out b/test/results/default/dtls_old_version.pcapng.out index c960eee4c..5c827981f 100644 --- a/test/results/default/dtls_old_version.pcapng.out +++ b/test/results/default/dtls_old_version.pcapng.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641921 bytes -~~ total memory freed........: 6641921 bytes +~~ total memory allocated....: 6641945 bytes +~~ total memory freed........: 6641945 bytes ~~ total allocations/frees...: 114030/114030 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 579 chars diff --git a/test/results/default/dtls_session_id_and_coockie_both.pcap.out b/test/results/default/dtls_session_id_and_coockie_both.pcap.out index a5aedde04..98745fc9d 100644 --- a/test/results/default/dtls_session_id_and_coockie_both.pcap.out +++ b/test/results/default/dtls_session_id_and_coockie_both.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641796 bytes -~~ total memory freed........: 6641796 bytes +~~ total memory allocated....: 6641820 bytes +~~ total memory freed........: 6641820 bytes ~~ total allocations/frees...: 114026/114026 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 593 chars diff --git a/test/results/default/edonkey.pcap.out b/test/results/default/edonkey.pcap.out index 0257539d9..382a45654 100644 --- a/test/results/default/edonkey.pcap.out +++ b/test/results/default/edonkey.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644184 bytes -~~ total memory freed........: 6644184 bytes +~~ total memory allocated....: 6644208 bytes +~~ total memory freed........: 6644208 bytes ~~ total allocations/frees...: 114038/114038 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 541 chars diff --git a/test/results/default/egd.pcapng.out b/test/results/default/egd.pcapng.out index 82c029f2a..93f3f70d3 100644 --- a/test/results/default/egd.pcapng.out +++ b/test/results/default/egd.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641788 bytes -~~ total memory freed........: 6641788 bytes +~~ total memory allocated....: 6641812 bytes +~~ total memory freed........: 6641812 bytes ~~ total allocations/frees...: 114025/114025 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/elasticsearch.pcap.out b/test/results/default/elasticsearch.pcap.out index 014ca9120..7ba91bca7 100644 --- a/test/results/default/elasticsearch.pcap.out +++ b/test/results/default/elasticsearch.pcap.out @@ -50,8 +50,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6671094 bytes -~~ total memory freed........: 6671094 bytes +~~ total memory allocated....: 6671118 bytes +~~ total memory freed........: 6671118 bytes ~~ total allocations/frees...: 114140/114140 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 552 chars diff --git a/test/results/default/elf.pcap.out b/test/results/default/elf.pcap.out index dafeb46f1..70303cbec 100644 --- a/test/results/default/elf.pcap.out +++ b/test/results/default/elf.pcap.out @@ -22,8 +22,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6662794 bytes -~~ total memory freed........: 6662794 bytes +~~ total memory allocated....: 6662818 bytes +~~ total memory freed........: 6662818 bytes ~~ total allocations/frees...: 114049/114049 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/emotet.pcap.out b/test/results/default/emotet.pcap.out index a1e66f630..60fffd14d 100644 --- a/test/results/default/emotet.pcap.out +++ b/test/results/default/emotet.pcap.out @@ -66,8 +66,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6676135 bytes -~~ total memory freed........: 6676135 bytes +~~ total memory allocated....: 6676159 bytes +~~ total memory freed........: 6676159 bytes ~~ total allocations/frees...: 114279/114279 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/encrypted_sni.pcap.out b/test/results/default/encrypted_sni.pcap.out index 8d2eebc1f..38ae32bfd 100644 --- a/test/results/default/encrypted_sni.pcap.out +++ b/test/results/default/encrypted_sni.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6654339 bytes -~~ total memory freed........: 6654339 bytes +~~ total memory allocated....: 6654363 bytes +~~ total memory freed........: 6654363 bytes ~~ total allocations/frees...: 114057/114057 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 574 chars diff --git a/test/results/default/epicgames.pcapng.out b/test/results/default/epicgames.pcapng.out index d49d079a9..51eec9ad2 100644 --- a/test/results/default/epicgames.pcapng.out +++ b/test/results/default/epicgames.pcapng.out @@ -41,8 +41,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650868 bytes -~~ total memory freed........: 6650868 bytes +~~ total memory allocated....: 6650892 bytes +~~ total memory freed........: 6650892 bytes ~~ total allocations/frees...: 114134/114134 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 572 chars diff --git a/test/results/default/esp.pcapng.out b/test/results/default/esp.pcapng.out index 9a061df49..3c8b87d22 100644 --- a/test/results/default/esp.pcapng.out +++ b/test/results/default/esp.pcapng.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644109 bytes -~~ total memory freed........: 6644109 bytes +~~ total memory allocated....: 6644133 bytes +~~ total memory freed........: 6644133 bytes ~~ total allocations/frees...: 114037/114037 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/ethereum.pcap.out b/test/results/default/ethereum.pcap.out index d91630b6a..459a4b08f 100644 --- a/test/results/default/ethereum.pcap.out +++ b/test/results/default/ethereum.pcap.out @@ -579,8 +579,8 @@ ~~ total active/idle flows...: 74/74 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6866959 bytes -~~ total memory freed........: 6866959 bytes +~~ total memory allocated....: 6866983 bytes +~~ total memory freed........: 6866983 bytes ~~ total allocations/frees...: 116823/116823 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/default/ethernetIP.pcap.out b/test/results/default/ethernetIP.pcap.out index 1c2f6712c..6e9db7149 100644 --- a/test/results/default/ethernetIP.pcap.out +++ b/test/results/default/ethernetIP.pcap.out @@ -41,8 +41,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6651419 bytes -~~ total memory freed........: 6651419 bytes +~~ total memory allocated....: 6651443 bytes +~~ total memory freed........: 6651443 bytes ~~ total allocations/frees...: 114153/114153 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/ethersbus.pcap.out b/test/results/default/ethersbus.pcap.out index d29e8a195..2a2bfbe1c 100644 --- a/test/results/default/ethersbus.pcap.out +++ b/test/results/default/ethersbus.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642223 bytes -~~ total memory freed........: 6642223 bytes +~~ total memory allocated....: 6642247 bytes +~~ total memory freed........: 6642247 bytes ~~ total allocations/frees...: 114040/114040 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/default/ethersio.pcap.out b/test/results/default/ethersio.pcap.out index 4a822725b..0d52bbc80 100644 --- a/test/results/default/ethersio.pcap.out +++ b/test/results/default/ethersio.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642687 bytes -~~ total memory freed........: 6642687 bytes +~~ total memory allocated....: 6642711 bytes +~~ total memory freed........: 6642711 bytes ~~ total allocations/frees...: 114056/114056 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 569 chars diff --git a/test/results/default/exe_download.pcap.out b/test/results/default/exe_download.pcap.out index 24985e969..ddb638dfc 100644 --- a/test/results/default/exe_download.pcap.out +++ b/test/results/default/exe_download.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642472 bytes -~~ total memory freed........: 6642472 bytes +~~ total memory allocated....: 6642496 bytes +~~ total memory freed........: 6642496 bytes ~~ total allocations/frees...: 114050/114050 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 534 chars diff --git a/test/results/default/exe_download_as_png.pcap.out b/test/results/default/exe_download_as_png.pcap.out index e00766cf9..cf19fa6ac 100644 --- a/test/results/default/exe_download_as_png.pcap.out +++ b/test/results/default/exe_download_as_png.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644687 bytes -~~ total memory freed........: 6644687 bytes +~~ total memory allocated....: 6644711 bytes +~~ total memory freed........: 6644711 bytes ~~ total allocations/frees...: 114127/114127 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 541 chars diff --git a/test/results/default/facebook.pcap.out b/test/results/default/facebook.pcap.out index e9e069802..973df4763 100644 --- a/test/results/default/facebook.pcap.out +++ b/test/results/default/facebook.pcap.out @@ -29,8 +29,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6661098 bytes -~~ total memory freed........: 6661098 bytes +~~ total memory allocated....: 6661122 bytes +~~ total memory freed........: 6661122 bytes ~~ total allocations/frees...: 114116/114116 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/false_positives.pcapng.out b/test/results/default/false_positives.pcapng.out index 1088ad081..de10cfae7 100644 --- a/test/results/default/false_positives.pcapng.out +++ b/test/results/default/false_positives.pcapng.out @@ -91,8 +91,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645008 bytes -~~ total memory freed........: 6645008 bytes +~~ total memory allocated....: 6645032 bytes +~~ total memory freed........: 6645032 bytes ~~ total allocations/frees...: 114068/114068 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 310 chars diff --git a/test/results/default/fastcgi.pcap.out b/test/results/default/fastcgi.pcap.out index f7e562323..ad6713ae2 100644 --- a/test/results/default/fastcgi.pcap.out +++ b/test/results/default/fastcgi.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646688 bytes -~~ total memory freed........: 6646688 bytes +~~ total memory allocated....: 6646712 bytes +~~ total memory freed........: 6646712 bytes ~~ total allocations/frees...: 114125/114125 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/fins.pcap.out b/test/results/default/fins.pcap.out index 3fd1c415f..fd8ccf235 100644 --- a/test/results/default/fins.pcap.out +++ b/test/results/default/fins.pcap.out @@ -56,8 +56,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653680 bytes -~~ total memory freed........: 6653680 bytes +~~ total memory allocated....: 6653704 bytes +~~ total memory freed........: 6653704 bytes ~~ total allocations/frees...: 114299/114299 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 343 chars diff --git a/test/results/default/firefox.pcap.out b/test/results/default/firefox.pcap.out index 264e48480..37039aa00 100644 --- a/test/results/default/firefox.pcap.out +++ b/test/results/default/firefox.pcap.out @@ -63,8 +63,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6799126 bytes -~~ total memory freed........: 6799126 bytes +~~ total memory allocated....: 6799150 bytes +~~ total memory freed........: 6799150 bytes ~~ total allocations/frees...: 114248/114248 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/fix.pcap.out b/test/results/default/fix.pcap.out index 6e55425fa..0ee7b52ae 100644 --- a/test/results/default/fix.pcap.out +++ b/test/results/default/fix.pcap.out @@ -110,8 +110,8 @@ ~~ total active/idle flows...: 12/12 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6728000 bytes -~~ total memory freed........: 6728000 bytes +~~ total memory allocated....: 6728024 bytes +~~ total memory freed........: 6728024 bytes ~~ total allocations/frees...: 115414/115414 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 527 chars diff --git a/test/results/default/fix2.pcap.out b/test/results/default/fix2.pcap.out index 8e84bc57e..2fb9480e2 100644 --- a/test/results/default/fix2.pcap.out +++ b/test/results/default/fix2.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6736365 bytes -~~ total memory freed........: 6736365 bytes +~~ total memory allocated....: 6736389 bytes +~~ total memory freed........: 6736389 bytes ~~ total allocations/frees...: 117079/117079 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/default/flute.pcapng.out b/test/results/default/flute.pcapng.out index 0537d06b4..2e51a7355 100644 --- a/test/results/default/flute.pcapng.out +++ b/test/results/default/flute.pcapng.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641731 bytes -~~ total memory freed........: 6641731 bytes +~~ total memory allocated....: 6641755 bytes +~~ total memory freed........: 6641755 bytes ~~ total allocations/frees...: 114023/114023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 552 chars diff --git a/test/results/default/forticlient.pcap.out b/test/results/default/forticlient.pcap.out index 2144c331f..a4d298988 100644 --- a/test/results/default/forticlient.pcap.out +++ b/test/results/default/forticlient.pcap.out @@ -60,8 +60,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6755530 bytes -~~ total memory freed........: 6755530 bytes +~~ total memory allocated....: 6755554 bytes +~~ total memory freed........: 6755554 bytes ~~ total allocations/frees...: 116104/116104 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 549 chars diff --git a/test/results/default/ftp-start-tls.pcap.out b/test/results/default/ftp-start-tls.pcap.out index 1cb6c455a..0c2fa9198 100644 --- a/test/results/default/ftp-start-tls.pcap.out +++ b/test/results/default/ftp-start-tls.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649510 bytes -~~ total memory freed........: 6649510 bytes +~~ total memory allocated....: 6649534 bytes +~~ total memory freed........: 6649534 bytes ~~ total allocations/frees...: 114080/114080 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 543 chars diff --git a/test/results/default/ftp.pcap.out b/test/results/default/ftp.pcap.out index ca655ab06..af78ee46a 100644 --- a/test/results/default/ftp.pcap.out +++ b/test/results/default/ftp.pcap.out @@ -35,8 +35,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6658463 bytes -~~ total memory freed........: 6658463 bytes +~~ total memory allocated....: 6658487 bytes +~~ total memory freed........: 6658487 bytes ~~ total allocations/frees...: 114255/114255 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/ftp_failed.pcap.out b/test/results/default/ftp_failed.pcap.out index bfa592af6..2d65415b6 100644 --- a/test/results/default/ftp_failed.pcap.out +++ b/test/results/default/ftp_failed.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644240 bytes -~~ total memory freed........: 6644240 bytes +~~ total memory allocated....: 6644264 bytes +~~ total memory freed........: 6644264 bytes ~~ total allocations/frees...: 114040/114040 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 571 chars diff --git a/test/results/default/fuzz-2006-06-26-2594.pcap.out b/test/results/default/fuzz-2006-06-26-2594.pcap.out index 286f8b2a6..21f60d689 100644 --- a/test/results/default/fuzz-2006-06-26-2594.pcap.out +++ b/test/results/default/fuzz-2006-06-26-2594.pcap.out @@ -2140,8 +2140,8 @@ ~~ total active/idle flows...: 257/257 ~~ total timeout flows.......: 2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7278848 bytes -~~ total memory freed........: 7278848 bytes +~~ total memory allocated....: 7278872 bytes +~~ total memory freed........: 7278872 bytes ~~ total allocations/frees...: 117530/117530 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 311 chars diff --git a/test/results/default/fuzz-2006-09-29-28586.pcap.out b/test/results/default/fuzz-2006-09-29-28586.pcap.out index 80dc9bb2b..0a3dd369e 100644 --- a/test/results/default/fuzz-2006-09-29-28586.pcap.out +++ b/test/results/default/fuzz-2006-09-29-28586.pcap.out @@ -225,8 +225,8 @@ ~~ total active/idle flows...: 39/39 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6745546 bytes -~~ total memory freed........: 6745546 bytes +~~ total memory allocated....: 6745570 bytes +~~ total memory freed........: 6745570 bytes ~~ total allocations/frees...: 114607/114607 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 312 chars diff --git a/test/results/default/fuzz-2020-02-16-11740.pcap.out b/test/results/default/fuzz-2020-02-16-11740.pcap.out index abfc3b8d7..a21be0efb 100644 --- a/test/results/default/fuzz-2020-02-16-11740.pcap.out +++ b/test/results/default/fuzz-2020-02-16-11740.pcap.out @@ -621,8 +621,8 @@ ~~ total active/idle flows...: 79/79 ~~ total timeout flows.......: 13 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6829278 bytes -~~ total memory freed........: 6829278 bytes +~~ total memory allocated....: 6829302 bytes +~~ total memory freed........: 6829302 bytes ~~ total allocations/frees...: 115183/115183 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 312 chars diff --git a/test/results/default/fuzz-2021-06-07-c6c72a0a56.pcap.out b/test/results/default/fuzz-2021-06-07-c6c72a0a56.pcap.out index 30531a814..b5dd2440d 100644 --- a/test/results/default/fuzz-2021-06-07-c6c72a0a56.pcap.out +++ b/test/results/default/fuzz-2021-06-07-c6c72a0a56.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 336 chars diff --git a/test/results/default/fuzz-2021-10-13.pcap.out b/test/results/default/fuzz-2021-10-13.pcap.out index 2fb2b77fd..2ee8fd9c5 100644 --- a/test/results/default/fuzz-2021-10-13.pcap.out +++ b/test/results/default/fuzz-2021-10-13.pcap.out @@ -11,8 +11,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 318 chars diff --git a/test/results/default/gaijin_mobile_mixed.pcap.out b/test/results/default/gaijin_mobile_mixed.pcap.out index 850a74350..273ade6de 100644 --- a/test/results/default/gaijin_mobile_mixed.pcap.out +++ b/test/results/default/gaijin_mobile_mixed.pcap.out @@ -36,8 +36,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6663550 bytes -~~ total memory freed........: 6663550 bytes +~~ total memory allocated....: 6663574 bytes +~~ total memory freed........: 6663574 bytes ~~ total allocations/frees...: 114077/114077 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 525 chars diff --git a/test/results/default/gaijin_warthunder.pcap.out b/test/results/default/gaijin_warthunder.pcap.out index da5d2bdba..1d16c025b 100644 --- a/test/results/default/gaijin_warthunder.pcap.out +++ b/test/results/default/gaijin_warthunder.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644225 bytes -~~ total memory freed........: 6644225 bytes +~~ total memory allocated....: 6644249 bytes +~~ total memory freed........: 6644249 bytes ~~ total allocations/frees...: 114041/114041 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/default/gearman.pcap.out b/test/results/default/gearman.pcap.out index 43c2667fd..66922fd89 100644 --- a/test/results/default/gearman.pcap.out +++ b/test/results/default/gearman.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641875 bytes -~~ total memory freed........: 6641875 bytes +~~ total memory allocated....: 6641899 bytes +~~ total memory freed........: 6641899 bytes ~~ total allocations/frees...: 114028/114028 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/geforcenow.pcapng.out b/test/results/default/geforcenow.pcapng.out index f00068a04..af7b0da46 100644 --- a/test/results/default/geforcenow.pcapng.out +++ b/test/results/default/geforcenow.pcapng.out @@ -33,8 +33,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6711369 bytes -~~ total memory freed........: 6711369 bytes +~~ total memory allocated....: 6711393 bytes +~~ total memory freed........: 6711393 bytes ~~ total allocations/frees...: 114158/114158 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 550 chars diff --git a/test/results/default/genshin-impact.pcap.out b/test/results/default/genshin-impact.pcap.out index 6ce80135b..967992d60 100644 --- a/test/results/default/genshin-impact.pcap.out +++ b/test/results/default/genshin-impact.pcap.out @@ -62,8 +62,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6661857 bytes -~~ total memory freed........: 6661857 bytes +~~ total memory allocated....: 6661881 bytes +~~ total memory freed........: 6661881 bytes ~~ total allocations/frees...: 114168/114168 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 537 chars diff --git a/test/results/default/git.pcap.out b/test/results/default/git.pcap.out index 4fe94abbd..c68134771 100644 --- a/test/results/default/git.pcap.out +++ b/test/results/default/git.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644253 bytes -~~ total memory freed........: 6644253 bytes +~~ total memory allocated....: 6644277 bytes +~~ total memory freed........: 6644277 bytes ~~ total allocations/frees...: 114110/114110 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 541 chars diff --git a/test/results/default/gnutella.pcap.out b/test/results/default/gnutella.pcap.out index b5837d89e..6db9b87ce 100644 --- a/test/results/default/gnutella.pcap.out +++ b/test/results/default/gnutella.pcap.out @@ -6872,8 +6872,8 @@ ~~ total active/idle flows...: 801/801 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 8703032 bytes -~~ total memory freed........: 8703032 bytes +~~ total memory allocated....: 8703056 bytes +~~ total memory freed........: 8703056 bytes ~~ total allocations/frees...: 126862/126862 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 274 chars diff --git a/test/results/default/google_chat.pcapng.out b/test/results/default/google_chat.pcapng.out index 87044b6bf..afc6a3c7e 100644 --- a/test/results/default/google_chat.pcapng.out +++ b/test/results/default/google_chat.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648742 bytes -~~ total memory freed........: 6648742 bytes +~~ total memory allocated....: 6648766 bytes +~~ total memory freed........: 6648766 bytes ~~ total allocations/frees...: 114031/114031 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 551 chars diff --git a/test/results/default/google_meet.pcapng.out b/test/results/default/google_meet.pcapng.out index 27184132c..3a322a46b 100644 --- a/test/results/default/google_meet.pcapng.out +++ b/test/results/default/google_meet.pcapng.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6663150 bytes -~~ total memory freed........: 6663150 bytes +~~ total memory allocated....: 6663174 bytes +~~ total memory freed........: 6663174 bytes ~~ total allocations/frees...: 114070/114070 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 551 chars diff --git a/test/results/default/google_ssl.pcap.out b/test/results/default/google_ssl.pcap.out index 9935ed870..58492be86 100644 --- a/test/results/default/google_ssl.pcap.out +++ b/test/results/default/google_ssl.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644609 bytes -~~ total memory freed........: 6644609 bytes +~~ total memory allocated....: 6644633 bytes +~~ total memory freed........: 6644633 bytes ~~ total allocations/frees...: 114052/114052 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/googledns_android10.pcap.out b/test/results/default/googledns_android10.pcap.out index 6bf369d55..6def0aee5 100644 --- a/test/results/default/googledns_android10.pcap.out +++ b/test/results/default/googledns_android10.pcap.out @@ -83,8 +83,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6709296 bytes -~~ total memory freed........: 6709296 bytes +~~ total memory allocated....: 6709320 bytes +~~ total memory freed........: 6709320 bytes ~~ total allocations/frees...: 114701/114701 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/gquic.pcap.out b/test/results/default/gquic.pcap.out index 3903d1748..afbd6d1b7 100644 --- a/test/results/default/gquic.pcap.out +++ b/test/results/default/gquic.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652043 bytes -~~ total memory freed........: 6652043 bytes +~~ total memory allocated....: 6652067 bytes +~~ total memory freed........: 6652067 bytes ~~ total allocations/frees...: 114041/114041 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/gquic_only_from_server.pcap.out b/test/results/default/gquic_only_from_server.pcap.out index 4b47d0842..1489d0832 100644 --- a/test/results/default/gquic_only_from_server.pcap.out +++ b/test/results/default/gquic_only_from_server.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642513 bytes -~~ total memory freed........: 6642513 bytes +~~ total memory allocated....: 6642537 bytes +~~ total memory freed........: 6642537 bytes ~~ total allocations/frees...: 114050/114050 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 563 chars diff --git a/test/results/default/gre.pcapng.out b/test/results/default/gre.pcapng.out index 5ae8193f2..3999bb0f4 100644 --- a/test/results/default/gre.pcapng.out +++ b/test/results/default/gre.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641672 bytes -~~ total memory freed........: 6641672 bytes +~~ total memory allocated....: 6641696 bytes +~~ total memory freed........: 6641696 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/gtp_c.pcap.out b/test/results/default/gtp_c.pcap.out index af193575b..cde86f449 100644 --- a/test/results/default/gtp_c.pcap.out +++ b/test/results/default/gtp_c.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641759 bytes -~~ total memory freed........: 6641759 bytes +~~ total memory allocated....: 6641783 bytes +~~ total memory freed........: 6641783 bytes ~~ total allocations/frees...: 114024/114024 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/gtp_false_positive.pcapng.out b/test/results/default/gtp_false_positive.pcapng.out index 8fb0b3308..a7e2e8a23 100644 --- a/test/results/default/gtp_false_positive.pcapng.out +++ b/test/results/default/gtp_false_positive.pcapng.out @@ -28,8 +28,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646459 bytes -~~ total memory freed........: 6646459 bytes +~~ total memory allocated....: 6646483 bytes +~~ total memory freed........: 6646483 bytes ~~ total allocations/frees...: 114050/114050 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/gtp_prime.pcapng.out b/test/results/default/gtp_prime.pcapng.out index 86f0d0ea1..332ca7bc4 100644 --- a/test/results/default/gtp_prime.pcapng.out +++ b/test/results/default/gtp_prime.pcapng.out @@ -11,8 +11,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 304 chars diff --git a/test/results/default/h323-overflow.pcap.out b/test/results/default/h323-overflow.pcap.out index 1c8d70e3b..047ab03e3 100644 --- a/test/results/default/h323-overflow.pcap.out +++ b/test/results/default/h323-overflow.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643720 bytes -~~ total memory freed........: 6643720 bytes +~~ total memory allocated....: 6643744 bytes +~~ total memory freed........: 6643744 bytes ~~ total allocations/frees...: 114022/114022 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 541 chars diff --git a/test/results/default/h323.pcap.out b/test/results/default/h323.pcap.out index cba61d7ec..42a42608b 100644 --- a/test/results/default/h323.pcap.out +++ b/test/results/default/h323.pcap.out @@ -58,8 +58,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6657326 bytes -~~ total memory freed........: 6657326 bytes +~~ total memory allocated....: 6657350 bytes +~~ total memory freed........: 6657350 bytes ~~ total allocations/frees...: 114151/114151 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 526 chars diff --git a/test/results/default/haproxy.pcap.out b/test/results/default/haproxy.pcap.out index da3f68fc2..d4f761f42 100644 --- a/test/results/default/haproxy.pcap.out +++ b/test/results/default/haproxy.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643749 bytes -~~ total memory freed........: 6643749 bytes +~~ total memory allocated....: 6643773 bytes +~~ total memory freed........: 6643773 bytes ~~ total allocations/frees...: 114023/114023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/hart_ip.pcap.out b/test/results/default/hart_ip.pcap.out index d80c0f52d..f463d782c 100644 --- a/test/results/default/hart_ip.pcap.out +++ b/test/results/default/hart_ip.pcap.out @@ -30,8 +30,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648112 bytes -~~ total memory freed........: 6648112 bytes +~~ total memory allocated....: 6648136 bytes +~~ total memory freed........: 6648136 bytes ~~ total allocations/frees...: 114107/114107 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 531 chars diff --git a/test/results/default/heuristic_tcp_ack_payload.pcap.out b/test/results/default/heuristic_tcp_ack_payload.pcap.out index 0cf1c6965..9c83f631e 100644 --- a/test/results/default/heuristic_tcp_ack_payload.pcap.out +++ b/test/results/default/heuristic_tcp_ack_payload.pcap.out @@ -63,8 +63,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6674448 bytes -~~ total memory freed........: 6674448 bytes +~~ total memory allocated....: 6674472 bytes +~~ total memory freed........: 6674472 bytes ~~ total allocations/frees...: 114392/114392 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 552 chars diff --git a/test/results/default/hislip.pcap.out b/test/results/default/hislip.pcap.out index a8af7b306..66234894e 100644 --- a/test/results/default/hislip.pcap.out +++ b/test/results/default/hislip.pcap.out @@ -45,8 +45,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653855 bytes -~~ total memory freed........: 6653855 bytes +~~ total memory allocated....: 6653879 bytes +~~ total memory freed........: 6653879 bytes ~~ total allocations/frees...: 114237/114237 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/hl7.pcap.out b/test/results/default/hl7.pcap.out index 2886e9396..c2cc9b4b7 100644 --- a/test/results/default/hl7.pcap.out +++ b/test/results/default/hl7.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643952 bytes -~~ total memory freed........: 6643952 bytes +~~ total memory allocated....: 6643976 bytes +~~ total memory freed........: 6643976 bytes ~~ total allocations/frees...: 114030/114030 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/hls.pcapng.out b/test/results/default/hls.pcapng.out index 63dd83e34..a29b57c84 100644 --- a/test/results/default/hls.pcapng.out +++ b/test/results/default/hls.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642182 bytes -~~ total memory freed........: 6642182 bytes +~~ total memory allocated....: 6642206 bytes +~~ total memory freed........: 6642206 bytes ~~ total allocations/frees...: 114039/114039 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 511 chars diff --git a/test/results/default/hots.pcapng.out b/test/results/default/hots.pcapng.out index ce17e71a1..e5809ee95 100644 --- a/test/results/default/hots.pcapng.out +++ b/test/results/default/hots.pcapng.out @@ -38,8 +38,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649127 bytes -~~ total memory freed........: 6649127 bytes +~~ total memory allocated....: 6649151 bytes +~~ total memory freed........: 6649151 bytes ~~ total allocations/frees...: 114142/114142 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 540 chars diff --git a/test/results/default/hpvirtgrp.pcap.out b/test/results/default/hpvirtgrp.pcap.out index 2fd077aca..e077261b4 100644 --- a/test/results/default/hpvirtgrp.pcap.out +++ b/test/results/default/hpvirtgrp.pcap.out @@ -88,8 +88,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6682326 bytes -~~ total memory freed........: 6682326 bytes +~~ total memory allocated....: 6682350 bytes +~~ total memory freed........: 6682350 bytes ~~ total allocations/frees...: 114252/114252 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/hsrp0.pcap.out b/test/results/default/hsrp0.pcap.out index 2000621b1..4859e5721 100644 --- a/test/results/default/hsrp0.pcap.out +++ b/test/results/default/hsrp0.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648523 bytes -~~ total memory freed........: 6648523 bytes +~~ total memory allocated....: 6648547 bytes +~~ total memory freed........: 6648547 bytes ~~ total allocations/frees...: 114053/114053 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 543 chars diff --git a/test/results/default/hsrp2.pcap.out b/test/results/default/hsrp2.pcap.out index d3eab1417..56df43cbe 100644 --- a/test/results/default/hsrp2.pcap.out +++ b/test/results/default/hsrp2.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643937 bytes -~~ total memory freed........: 6643937 bytes +~~ total memory allocated....: 6643961 bytes +~~ total memory freed........: 6643961 bytes ~~ total allocations/frees...: 114031/114031 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/hsrp2_ipv6.pcapng.out b/test/results/default/hsrp2_ipv6.pcapng.out index c6cacb37d..01c94430e 100644 --- a/test/results/default/hsrp2_ipv6.pcapng.out +++ b/test/results/default/hsrp2_ipv6.pcapng.out @@ -29,8 +29,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644923 bytes -~~ total memory freed........: 6644923 bytes +~~ total memory allocated....: 6644947 bytes +~~ total memory freed........: 6644947 bytes ~~ total allocations/frees...: 114065/114065 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 560 chars diff --git a/test/results/default/http-crash-content-disposition.pcap.out b/test/results/default/http-crash-content-disposition.pcap.out index 8c772e801..6f6b6654e 100644 --- a/test/results/default/http-crash-content-disposition.pcap.out +++ b/test/results/default/http-crash-content-disposition.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642054 bytes -~~ total memory freed........: 6642054 bytes +~~ total memory allocated....: 6642078 bytes +~~ total memory freed........: 6642078 bytes ~~ total allocations/frees...: 114036/114036 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 552 chars diff --git a/test/results/default/http-lines-split.pcap.out b/test/results/default/http-lines-split.pcap.out index bb83c30a2..3606cc700 100644 --- a/test/results/default/http-lines-split.pcap.out +++ b/test/results/default/http-lines-split.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642107 bytes -~~ total memory freed........: 6642107 bytes +~~ total memory allocated....: 6642131 bytes +~~ total memory freed........: 6642131 bytes ~~ total allocations/frees...: 114037/114037 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/default/http-manipulated.pcap.out b/test/results/default/http-manipulated.pcap.out index c9e1ef60b..ed5520de0 100644 --- a/test/results/default/http-manipulated.pcap.out +++ b/test/results/default/http-manipulated.pcap.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645340 bytes -~~ total memory freed........: 6645340 bytes +~~ total memory allocated....: 6645364 bytes +~~ total memory freed........: 6645364 bytes ~~ total allocations/frees...: 114082/114082 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 536 chars diff --git a/test/results/default/http-proxy.pcapng.out b/test/results/default/http-proxy.pcapng.out index 5184a9d6a..9d207e477 100644 --- a/test/results/default/http-proxy.pcapng.out +++ b/test/results/default/http-proxy.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642139 bytes -~~ total memory freed........: 6642139 bytes +~~ total memory allocated....: 6642163 bytes +~~ total memory freed........: 6642163 bytes ~~ total allocations/frees...: 114037/114037 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 534 chars diff --git a/test/results/default/http.pcapng.out b/test/results/default/http.pcapng.out index 9d6b94140..455888088 100644 --- a/test/results/default/http.pcapng.out +++ b/test/results/default/http.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641971 bytes -~~ total memory freed........: 6641971 bytes +~~ total memory allocated....: 6641995 bytes +~~ total memory freed........: 6641995 bytes ~~ total allocations/frees...: 114034/114034 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/http2.pcapng.out b/test/results/default/http2.pcapng.out index 5af58d432..9b0381f6d 100644 --- a/test/results/default/http2.pcapng.out +++ b/test/results/default/http2.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643981 bytes -~~ total memory freed........: 6643981 bytes +~~ total memory allocated....: 6644005 bytes +~~ total memory freed........: 6644005 bytes ~~ total allocations/frees...: 114031/114031 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/http_asymmetric.pcapng.out b/test/results/default/http_asymmetric.pcapng.out index ddf231e33..f11b7356d 100644 --- a/test/results/default/http_asymmetric.pcapng.out +++ b/test/results/default/http_asymmetric.pcapng.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645256 bytes -~~ total memory freed........: 6645256 bytes +~~ total memory allocated....: 6645280 bytes +~~ total memory freed........: 6645280 bytes ~~ total allocations/frees...: 114074/114074 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/default/http_auth.pcap.out b/test/results/default/http_auth.pcap.out index 53aa9d7da..362771f9d 100644 --- a/test/results/default/http_auth.pcap.out +++ b/test/results/default/http_auth.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642845 bytes -~~ total memory freed........: 6642845 bytes +~~ total memory allocated....: 6642869 bytes +~~ total memory freed........: 6642869 bytes ~~ total allocations/frees...: 114060/114060 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 550 chars diff --git a/test/results/default/http_connect.pcap.out b/test/results/default/http_connect.pcap.out index 19d52bf3f..9ca8fa8fe 100644 --- a/test/results/default/http_connect.pcap.out +++ b/test/results/default/http_connect.pcap.out @@ -34,8 +34,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6664871 bytes -~~ total memory freed........: 6664871 bytes +~~ total memory allocated....: 6664895 bytes +~~ total memory freed........: 6664895 bytes ~~ total allocations/frees...: 114153/114153 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/default/http_guessed_host_and_guessed.pcapng.out b/test/results/default/http_guessed_host_and_guessed.pcapng.out index c76420de5..db2d57d0e 100644 --- a/test/results/default/http_guessed_host_and_guessed.pcapng.out +++ b/test/results/default/http_guessed_host_and_guessed.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643769 bytes -~~ total memory freed........: 6643769 bytes +~~ total memory allocated....: 6643793 bytes +~~ total memory freed........: 6643793 bytes ~~ total allocations/frees...: 114024/114024 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 592 chars diff --git a/test/results/default/http_invalid_server.pcap.out b/test/results/default/http_invalid_server.pcap.out index 68eaf189a..72bbf9cd7 100644 --- a/test/results/default/http_invalid_server.pcap.out +++ b/test/results/default/http_invalid_server.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642097 bytes -~~ total memory freed........: 6642097 bytes +~~ total memory allocated....: 6642121 bytes +~~ total memory freed........: 6642121 bytes ~~ total allocations/frees...: 114038/114038 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 557 chars diff --git a/test/results/default/http_ipv6.pcap.out b/test/results/default/http_ipv6.pcap.out index f424e94e9..e7641682e 100644 --- a/test/results/default/http_ipv6.pcap.out +++ b/test/results/default/http_ipv6.pcap.out @@ -123,8 +123,8 @@ ~~ total active/idle flows...: 15/15 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6764171 bytes -~~ total memory freed........: 6764171 bytes +~~ total memory allocated....: 6764195 bytes +~~ total memory freed........: 6764195 bytes ~~ total allocations/frees...: 114448/114448 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/http_on_sip_port.pcap.out b/test/results/default/http_on_sip_port.pcap.out index 8c6dabd73..d79ebb10f 100644 --- a/test/results/default/http_on_sip_port.pcap.out +++ b/test/results/default/http_on_sip_port.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642303 bytes -~~ total memory freed........: 6642303 bytes +~~ total memory allocated....: 6642327 bytes +~~ total memory freed........: 6642327 bytes ~~ total allocations/frees...: 114034/114034 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 558 chars diff --git a/test/results/default/http_origin_different_than_host.pcap.out b/test/results/default/http_origin_different_than_host.pcap.out index 408ba0112..31966b210 100644 --- a/test/results/default/http_origin_different_than_host.pcap.out +++ b/test/results/default/http_origin_different_than_host.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 324 chars diff --git a/test/results/default/http_starting_with_reply.pcapng.out b/test/results/default/http_starting_with_reply.pcapng.out index cca31a7b3..cd0eae70c 100644 --- a/test/results/default/http_starting_with_reply.pcapng.out +++ b/test/results/default/http_starting_with_reply.pcapng.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642473 bytes -~~ total memory freed........: 6642473 bytes +~~ total memory allocated....: 6642497 bytes +~~ total memory freed........: 6642497 bytes ~~ total allocations/frees...: 114048/114048 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 548 chars diff --git a/test/results/default/http_ua_splitted_in_two_pkts.pcapng.out b/test/results/default/http_ua_splitted_in_two_pkts.pcapng.out index fd7b2c92e..6f333bc69 100644 --- a/test/results/default/http_ua_splitted_in_two_pkts.pcapng.out +++ b/test/results/default/http_ua_splitted_in_two_pkts.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644984 bytes -~~ total memory freed........: 6644984 bytes +~~ total memory allocated....: 6645008 bytes +~~ total memory freed........: 6645008 bytes ~~ total allocations/frees...: 114136/114136 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 582 chars diff --git a/test/results/default/i3d.pcap.out b/test/results/default/i3d.pcap.out index b85af60c4..835ee2102 100644 --- a/test/results/default/i3d.pcap.out +++ b/test/results/default/i3d.pcap.out @@ -43,8 +43,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650259 bytes -~~ total memory freed........: 6650259 bytes +~~ total memory allocated....: 6650283 bytes +~~ total memory freed........: 6650283 bytes ~~ total allocations/frees...: 114113/114113 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 564 chars diff --git a/test/results/default/iax.pcap.out b/test/results/default/iax.pcap.out index 1e045e735..92ae47864 100644 --- a/test/results/default/iax.pcap.out +++ b/test/results/default/iax.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643093 bytes -~~ total memory freed........: 6643093 bytes +~~ total memory allocated....: 6643117 bytes +~~ total memory freed........: 6643117 bytes ~~ total allocations/frees...: 114070/114070 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 524 chars diff --git a/test/results/default/icmp-tunnel.pcap.out b/test/results/default/icmp-tunnel.pcap.out index d7adc17d1..f6c5c3e16 100644 --- a/test/results/default/icmp-tunnel.pcap.out +++ b/test/results/default/icmp-tunnel.pcap.out @@ -45,8 +45,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6666721 bytes -~~ total memory freed........: 6666721 bytes +~~ total memory allocated....: 6666745 bytes +~~ total memory freed........: 6666745 bytes ~~ total allocations/frees...: 114885/114885 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 572 chars diff --git a/test/results/default/iec60780-5-104.pcap.out b/test/results/default/iec60780-5-104.pcap.out index 0e7627180..569c02f86 100644 --- a/test/results/default/iec60780-5-104.pcap.out +++ b/test/results/default/iec60780-5-104.pcap.out @@ -59,8 +59,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6657366 bytes -~~ total memory freed........: 6657366 bytes +~~ total memory allocated....: 6657390 bytes +~~ total memory freed........: 6657390 bytes ~~ total allocations/frees...: 114222/114222 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 540 chars diff --git a/test/results/default/ieee_c37118.pcap.out b/test/results/default/ieee_c37118.pcap.out index 87e118f29..a911a32db 100644 --- a/test/results/default/ieee_c37118.pcap.out +++ b/test/results/default/ieee_c37118.pcap.out @@ -28,8 +28,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6666497 bytes -~~ total memory freed........: 6666497 bytes +~~ total memory allocated....: 6666521 bytes +~~ total memory freed........: 6666521 bytes ~~ total allocations/frees...: 114809/114809 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/imap-starttls.pcap.out b/test/results/default/imap-starttls.pcap.out index 0db98758e..f54c61e64 100644 --- a/test/results/default/imap-starttls.pcap.out +++ b/test/results/default/imap-starttls.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6661025 bytes -~~ total memory freed........: 6661025 bytes +~~ total memory allocated....: 6661049 bytes +~~ total memory freed........: 6661049 bytes ~~ total allocations/frees...: 114066/114066 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/default/imap.pcap.out b/test/results/default/imap.pcap.out index fb8338d04..c7be0f4b9 100644 --- a/test/results/default/imap.pcap.out +++ b/test/results/default/imap.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644676 bytes -~~ total memory freed........: 6644676 bytes +~~ total memory allocated....: 6644700 bytes +~~ total memory freed........: 6644700 bytes ~~ total allocations/frees...: 114055/114055 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 543 chars diff --git a/test/results/default/imaps.pcap.out b/test/results/default/imaps.pcap.out index 0fc3791c5..4b0de75a3 100644 --- a/test/results/default/imaps.pcap.out +++ b/test/results/default/imaps.pcap.out @@ -29,8 +29,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6658534 bytes -~~ total memory freed........: 6658534 bytes +~~ total memory allocated....: 6658558 bytes +~~ total memory freed........: 6658558 bytes ~~ total allocations/frees...: 114071/114071 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 543 chars diff --git a/test/results/default/imo.pcap.out b/test/results/default/imo.pcap.out index 623c9d6da..53b18f838 100644 --- a/test/results/default/imo.pcap.out +++ b/test/results/default/imo.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646904 bytes -~~ total memory freed........: 6646904 bytes +~~ total memory allocated....: 6646928 bytes +~~ total memory freed........: 6646928 bytes ~~ total allocations/frees...: 114133/114133 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 512 chars diff --git a/test/results/default/instagram.pcap.out b/test/results/default/instagram.pcap.out index f1fe1707f..749acff43 100644 --- a/test/results/default/instagram.pcap.out +++ b/test/results/default/instagram.pcap.out @@ -305,8 +305,8 @@ ~~ total active/idle flows...: 38/38 ~~ total timeout flows.......: 5 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6890881 bytes -~~ total memory freed........: 6890881 bytes +~~ total memory allocated....: 6890905 bytes +~~ total memory freed........: 6890905 bytes ~~ total allocations/frees...: 115407/115407 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 547 chars diff --git a/test/results/default/ip_fragmented_garbage.pcap.out b/test/results/default/ip_fragmented_garbage.pcap.out index 8481b04da..5e858894e 100644 --- a/test/results/default/ip_fragmented_garbage.pcap.out +++ b/test/results/default/ip_fragmented_garbage.pcap.out @@ -57,8 +57,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648523 bytes -~~ total memory freed........: 6648523 bytes +~~ total memory allocated....: 6648547 bytes +~~ total memory freed........: 6648547 bytes ~~ total allocations/frees...: 114053/114053 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 333 chars diff --git a/test/results/default/iphone.pcap.out b/test/results/default/iphone.pcap.out index e70f3fc42..7c7d5030f 100644 --- a/test/results/default/iphone.pcap.out +++ b/test/results/default/iphone.pcap.out @@ -362,8 +362,8 @@ ~~ total active/idle flows...: 51/51 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7162861 bytes -~~ total memory freed........: 7162861 bytes +~~ total memory allocated....: 7162885 bytes +~~ total memory freed........: 7162885 bytes ~~ total allocations/frees...: 115335/115335 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 528 chars diff --git a/test/results/default/ipp.pcap.out b/test/results/default/ipp.pcap.out index ed67014b5..e63e38678 100644 --- a/test/results/default/ipp.pcap.out +++ b/test/results/default/ipp.pcap.out @@ -34,8 +34,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6654467 bytes -~~ total memory freed........: 6654467 bytes +~~ total memory allocated....: 6654491 bytes +~~ total memory freed........: 6654491 bytes ~~ total allocations/frees...: 114331/114331 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 541 chars diff --git a/test/results/default/ipsec_isakmp_esp.pcap.out b/test/results/default/ipsec_isakmp_esp.pcap.out index 940044aa2..85e4313e5 100644 --- a/test/results/default/ipsec_isakmp_esp.pcap.out +++ b/test/results/default/ipsec_isakmp_esp.pcap.out @@ -327,8 +327,8 @@ ~~ total active/idle flows...: 36/36 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6746143 bytes -~~ total memory freed........: 6746143 bytes +~~ total memory allocated....: 6746167 bytes +~~ total memory freed........: 6746167 bytes ~~ total allocations/frees...: 115242/115242 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 573 chars diff --git a/test/results/default/ipv6_in_gtp.pcap.out b/test/results/default/ipv6_in_gtp.pcap.out index 6ab70a63f..fe5ffe26b 100644 --- a/test/results/default/ipv6_in_gtp.pcap.out +++ b/test/results/default/ipv6_in_gtp.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 304 chars diff --git a/test/results/default/iqiyi.pcap.out b/test/results/default/iqiyi.pcap.out index a7ebc0803..270cae048 100644 --- a/test/results/default/iqiyi.pcap.out +++ b/test/results/default/iqiyi.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641701 bytes -~~ total memory freed........: 6641701 bytes +~~ total memory allocated....: 6641725 bytes +~~ total memory freed........: 6641725 bytes ~~ total allocations/frees...: 114022/114022 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/irc.pcap.out b/test/results/default/irc.pcap.out index 3f6e6f595..f162b07ae 100644 --- a/test/results/default/irc.pcap.out +++ b/test/results/default/irc.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644559 bytes -~~ total memory freed........: 6644559 bytes +~~ total memory allocated....: 6644583 bytes +~~ total memory freed........: 6644583 bytes ~~ total allocations/frees...: 114051/114051 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/iso9506-1-mms.pcap.out b/test/results/default/iso9506-1-mms.pcap.out index 62580fc2d..6318ff9d2 100644 --- a/test/results/default/iso9506-1-mms.pcap.out +++ b/test/results/default/iso9506-1-mms.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644329 bytes -~~ total memory freed........: 6644329 bytes +~~ total memory allocated....: 6644353 bytes +~~ total memory freed........: 6644353 bytes ~~ total allocations/frees...: 114043/114043 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 543 chars diff --git a/test/results/default/ja3_lots_of_cipher_suites.pcap.out b/test/results/default/ja3_lots_of_cipher_suites.pcap.out index fa659a81d..287aa940e 100644 --- a/test/results/default/ja3_lots_of_cipher_suites.pcap.out +++ b/test/results/default/ja3_lots_of_cipher_suites.pcap.out @@ -31,8 +31,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 318 chars diff --git a/test/results/default/ja3_lots_of_cipher_suites_2_anon.pcap.out b/test/results/default/ja3_lots_of_cipher_suites_2_anon.pcap.out index cba5c9067..cab5d69e8 100644 --- a/test/results/default/ja3_lots_of_cipher_suites_2_anon.pcap.out +++ b/test/results/default/ja3_lots_of_cipher_suites_2_anon.pcap.out @@ -43,8 +43,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642426 bytes -~~ total memory freed........: 6642426 bytes +~~ total memory allocated....: 6642450 bytes +~~ total memory freed........: 6642450 bytes ~~ total allocations/frees...: 114047/114047 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 371 chars diff --git a/test/results/default/jabber.pcap.out b/test/results/default/jabber.pcap.out index 39e6f3fc0..c2af854d9 100644 --- a/test/results/default/jabber.pcap.out +++ b/test/results/default/jabber.pcap.out @@ -116,8 +116,8 @@ ~~ total active/idle flows...: 12/12 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6701900 bytes -~~ total memory freed........: 6701900 bytes +~~ total memory allocated....: 6701924 bytes +~~ total memory freed........: 6701924 bytes ~~ total allocations/frees...: 114514/114514 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/jrmi.pcap.out b/test/results/default/jrmi.pcap.out index 16c2cb378..bcd65338a 100644 --- a/test/results/default/jrmi.pcap.out +++ b/test/results/default/jrmi.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642194 bytes -~~ total memory freed........: 6642194 bytes +~~ total memory allocated....: 6642218 bytes +~~ total memory freed........: 6642218 bytes ~~ total allocations/frees...: 114039/114039 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/jsonrpc.pcap.out b/test/results/default/jsonrpc.pcap.out index 1f0561697..e7e327cb5 100644 --- a/test/results/default/jsonrpc.pcap.out +++ b/test/results/default/jsonrpc.pcap.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646785 bytes -~~ total memory freed........: 6646785 bytes +~~ total memory allocated....: 6646809 bytes +~~ total memory freed........: 6646809 bytes ~~ total allocations/frees...: 114059/114059 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 530 chars diff --git a/test/results/default/kafka.pcapng.out b/test/results/default/kafka.pcapng.out index be257da15..0257152b1 100644 --- a/test/results/default/kafka.pcapng.out +++ b/test/results/default/kafka.pcapng.out @@ -71,8 +71,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6663216 bytes -~~ total memory freed........: 6663216 bytes +~~ total memory allocated....: 6663240 bytes +~~ total memory freed........: 6663240 bytes ~~ total allocations/frees...: 114150/114150 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 547 chars diff --git a/test/results/default/kcp.pcap.out b/test/results/default/kcp.pcap.out index 604578348..40da9199a 100644 --- a/test/results/default/kcp.pcap.out +++ b/test/results/default/kcp.pcap.out @@ -42,8 +42,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6656845 bytes -~~ total memory freed........: 6656845 bytes +~~ total memory allocated....: 6656869 bytes +~~ total memory freed........: 6656869 bytes ~~ total allocations/frees...: 114136/114136 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 564 chars diff --git a/test/results/default/kerberos-error.pcap.out b/test/results/default/kerberos-error.pcap.out index ca90625df..f36d2931b 100644 --- a/test/results/default/kerberos-error.pcap.out +++ b/test/results/default/kerberos-error.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641701 bytes -~~ total memory freed........: 6641701 bytes +~~ total memory allocated....: 6641725 bytes +~~ total memory freed........: 6641725 bytes ~~ total allocations/frees...: 114022/114022 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 575 chars diff --git a/test/results/default/kerberos-login.pcap.out b/test/results/default/kerberos-login.pcap.out index 030b76b45..b2b6342c4 100644 --- a/test/results/default/kerberos-login.pcap.out +++ b/test/results/default/kerberos-login.pcap.out @@ -86,8 +86,8 @@ ~~ total active/idle flows...: 13/13 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6670278 bytes -~~ total memory freed........: 6670278 bytes +~~ total memory allocated....: 6670302 bytes +~~ total memory freed........: 6670302 bytes ~~ total allocations/frees...: 114191/114191 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 552 chars diff --git a/test/results/default/kerberos.pcap.out b/test/results/default/kerberos.pcap.out index 9dc16baf4..aa19b80c7 100644 --- a/test/results/default/kerberos.pcap.out +++ b/test/results/default/kerberos.pcap.out @@ -196,8 +196,8 @@ ~~ total active/idle flows...: 36/36 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6776204 bytes -~~ total memory freed........: 6776204 bytes +~~ total memory allocated....: 6776228 bytes +~~ total memory freed........: 6776228 bytes ~~ total allocations/frees...: 114532/114532 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 569 chars diff --git a/test/results/default/kerberos_fuzz.pcapng.out b/test/results/default/kerberos_fuzz.pcapng.out index b90345bd3..46ca46601 100644 --- a/test/results/default/kerberos_fuzz.pcapng.out +++ b/test/results/default/kerberos_fuzz.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641644 bytes -~~ total memory freed........: 6641644 bytes +~~ total memory allocated....: 6641668 bytes +~~ total memory freed........: 6641668 bytes ~~ total allocations/frees...: 114020/114020 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 576 chars diff --git a/test/results/default/kismet.pcap.out b/test/results/default/kismet.pcap.out index bf5481759..606c81e76 100644 --- a/test/results/default/kismet.pcap.out +++ b/test/results/default/kismet.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644706 bytes -~~ total memory freed........: 6644706 bytes +~~ total memory allocated....: 6644730 bytes +~~ total memory freed........: 6644730 bytes ~~ total allocations/frees...: 114056/114056 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/knxip.pcapng.out b/test/results/default/knxip.pcapng.out index 914bb9b3c..1a5f6eaec 100644 --- a/test/results/default/knxip.pcapng.out +++ b/test/results/default/knxip.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643994 bytes -~~ total memory freed........: 6643994 bytes +~~ total memory allocated....: 6644018 bytes +~~ total memory freed........: 6644018 bytes ~~ total allocations/frees...: 114033/114033 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/ldp.pcap.out b/test/results/default/ldp.pcap.out index 5ae36d365..1e4197314 100644 --- a/test/results/default/ldp.pcap.out +++ b/test/results/default/ldp.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646374 bytes -~~ total memory freed........: 6646374 bytes +~~ total memory allocated....: 6646398 bytes +~~ total memory freed........: 6646398 bytes ~~ total allocations/frees...: 114047/114047 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 556 chars diff --git a/test/results/default/line.pcap.out b/test/results/default/line.pcap.out index 45a81559a..932e927ad 100644 --- a/test/results/default/line.pcap.out +++ b/test/results/default/line.pcap.out @@ -57,8 +57,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6673658 bytes -~~ total memory freed........: 6673658 bytes +~~ total memory allocated....: 6673682 bytes +~~ total memory freed........: 6673682 bytes ~~ total allocations/frees...: 114366/114366 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 527 chars diff --git a/test/results/default/linecall_falsepositve.pcap.out b/test/results/default/linecall_falsepositve.pcap.out index 1eabe9ee7..879d82f78 100644 --- a/test/results/default/linecall_falsepositve.pcap.out +++ b/test/results/default/linecall_falsepositve.pcap.out @@ -73,8 +73,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 314 chars diff --git a/test/results/default/lisp_registration.pcap.out b/test/results/default/lisp_registration.pcap.out index 494a155b9..a32297257 100644 --- a/test/results/default/lisp_registration.pcap.out +++ b/test/results/default/lisp_registration.pcap.out @@ -41,8 +41,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653485 bytes -~~ total memory freed........: 6653485 bytes +~~ total memory allocated....: 6653509 bytes +~~ total memory freed........: 6653509 bytes ~~ total allocations/frees...: 114085/114085 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 548 chars diff --git a/test/results/default/log4j-webapp-exploit.pcap.out b/test/results/default/log4j-webapp-exploit.pcap.out index faa4f5cb2..766a4f727 100644 --- a/test/results/default/log4j-webapp-exploit.pcap.out +++ b/test/results/default/log4j-webapp-exploit.pcap.out @@ -73,8 +73,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6674333 bytes -~~ total memory freed........: 6674333 bytes +~~ total memory allocated....: 6674357 bytes +~~ total memory freed........: 6674357 bytes ~~ total allocations/frees...: 114534/114534 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 310 chars diff --git a/test/results/default/lol_wild_rift_udp.pcap.out b/test/results/default/lol_wild_rift_udp.pcap.out index 683559d33..7eae91414 100644 --- a/test/results/default/lol_wild_rift_udp.pcap.out +++ b/test/results/default/lol_wild_rift_udp.pcap.out @@ -36,8 +36,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6651130 bytes -~~ total memory freed........: 6651130 bytes +~~ total memory allocated....: 6651154 bytes +~~ total memory freed........: 6651154 bytes ~~ total allocations/frees...: 114075/114075 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/default/long_tls_certificate.pcap.out b/test/results/default/long_tls_certificate.pcap.out index 2a26e5991..871e4d7f2 100644 --- a/test/results/default/long_tls_certificate.pcap.out +++ b/test/results/default/long_tls_certificate.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7042325 bytes -~~ total memory freed........: 7042325 bytes +~~ total memory allocated....: 7042349 bytes +~~ total memory freed........: 7042349 bytes ~~ total allocations/frees...: 114262/114262 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/lru_ipv6_caches.pcapng.out b/test/results/default/lru_ipv6_caches.pcapng.out index 3d52c227e..cab849599 100644 --- a/test/results/default/lru_ipv6_caches.pcapng.out +++ b/test/results/default/lru_ipv6_caches.pcapng.out @@ -95,8 +95,8 @@ ~~ total active/idle flows...: 12/12 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6684384 bytes -~~ total memory freed........: 6684384 bytes +~~ total memory allocated....: 6684408 bytes +~~ total memory freed........: 6684408 bytes ~~ total allocations/frees...: 114261/114261 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 578 chars diff --git a/test/results/default/lustre.pcapng.out b/test/results/default/lustre.pcapng.out index 74f06ddb4..4a30f4f66 100644 --- a/test/results/default/lustre.pcapng.out +++ b/test/results/default/lustre.pcapng.out @@ -24,8 +24,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648669 bytes -~~ total memory freed........: 6648669 bytes +~~ total memory allocated....: 6648693 bytes +~~ total memory freed........: 6648693 bytes ~~ total allocations/frees...: 114055/114055 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 523 chars diff --git a/test/results/default/malformed_dns.pcap.out b/test/results/default/malformed_dns.pcap.out index d7d9d0df5..9530f7a20 100644 --- a/test/results/default/malformed_dns.pcap.out +++ b/test/results/default/malformed_dns.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641889 bytes -~~ total memory freed........: 6641889 bytes +~~ total memory allocated....: 6641913 bytes +~~ total memory freed........: 6641913 bytes ~~ total allocations/frees...: 114029/114029 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 559 chars diff --git a/test/results/default/malformed_icmp.pcap.out b/test/results/default/malformed_icmp.pcap.out index 8ff64029c..b8141d55e 100644 --- a/test/results/default/malformed_icmp.pcap.out +++ b/test/results/default/malformed_icmp.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641699 bytes -~~ total memory freed........: 6641699 bytes +~~ total memory allocated....: 6641723 bytes +~~ total memory freed........: 6641723 bytes ~~ total allocations/frees...: 114022/114022 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 519 chars diff --git a/test/results/default/malware.pcap.out b/test/results/default/malware.pcap.out index 7911c93e9..30c3d5677 100644 --- a/test/results/default/malware.pcap.out +++ b/test/results/default/malware.pcap.out @@ -50,8 +50,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6701557 bytes -~~ total memory freed........: 6701557 bytes +~~ total memory allocated....: 6701581 bytes +~~ total memory freed........: 6701581 bytes ~~ total allocations/frees...: 114245/114245 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/memcached.cap.out b/test/results/default/memcached.cap.out index 27a32b11f..133d419a2 100644 --- a/test/results/default/memcached.cap.out +++ b/test/results/default/memcached.cap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643981 bytes -~~ total memory freed........: 6643981 bytes +~~ total memory allocated....: 6644005 bytes +~~ total memory freed........: 6644005 bytes ~~ total allocations/frees...: 114031/114031 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 547 chars diff --git a/test/results/default/merakicloud.pcapng.out b/test/results/default/merakicloud.pcapng.out index 667396256..f095d94fd 100644 --- a/test/results/default/merakicloud.pcapng.out +++ b/test/results/default/merakicloud.pcapng.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642919 bytes -~~ total memory freed........: 6642919 bytes +~~ total memory allocated....: 6642943 bytes +~~ total memory freed........: 6642943 bytes ~~ total allocations/frees...: 114064/114064 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 574 chars diff --git a/test/results/default/mgcp.pcap.out b/test/results/default/mgcp.pcap.out index 1abbfe4d0..3d550160d 100644 --- a/test/results/default/mgcp.pcap.out +++ b/test/results/default/mgcp.pcap.out @@ -42,8 +42,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6651478 bytes -~~ total memory freed........: 6651478 bytes +~~ total memory allocated....: 6651502 bytes +~~ total memory freed........: 6651502 bytes ~~ total allocations/frees...: 114087/114087 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 530 chars diff --git a/test/results/default/mining.pcapng.out b/test/results/default/mining.pcapng.out index f0ef059d1..e38547d25 100644 --- a/test/results/default/mining.pcapng.out +++ b/test/results/default/mining.pcapng.out @@ -47,8 +47,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6676228 bytes -~~ total memory freed........: 6676228 bytes +~~ total memory allocated....: 6676252 bytes +~~ total memory freed........: 6676252 bytes ~~ total allocations/frees...: 114730/114730 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/modbus.pcap.out b/test/results/default/modbus.pcap.out index 9db268679..61a3758d7 100644 --- a/test/results/default/modbus.pcap.out +++ b/test/results/default/modbus.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644601 bytes -~~ total memory freed........: 6644601 bytes +~~ total memory allocated....: 6644625 bytes +~~ total memory freed........: 6644625 bytes ~~ total allocations/frees...: 114122/114122 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/monero.pcap.out b/test/results/default/monero.pcap.out index 1527e510a..1ac6ba637 100644 --- a/test/results/default/monero.pcap.out +++ b/test/results/default/monero.pcap.out @@ -41,8 +41,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6658451 bytes -~~ total memory freed........: 6658451 bytes +~~ total memory allocated....: 6658475 bytes +~~ total memory freed........: 6658475 bytes ~~ total allocations/frees...: 114117/114117 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/mongo_false_positive.pcapng.out b/test/results/default/mongo_false_positive.pcapng.out index b82ae83eb..f24afc0b0 100644 --- a/test/results/default/mongo_false_positive.pcapng.out +++ b/test/results/default/mongo_false_positive.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644417 bytes -~~ total memory freed........: 6644417 bytes +~~ total memory allocated....: 6644441 bytes +~~ total memory freed........: 6644441 bytes ~~ total allocations/frees...: 114046/114046 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 560 chars diff --git a/test/results/default/mongodb.pcap.out b/test/results/default/mongodb.pcap.out index 24c7a67c8..eb014b973 100644 --- a/test/results/default/mongodb.pcap.out +++ b/test/results/default/mongodb.pcap.out @@ -51,8 +51,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653642 bytes -~~ total memory freed........: 6653642 bytes +~~ total memory allocated....: 6653666 bytes +~~ total memory freed........: 6653666 bytes ~~ total allocations/frees...: 114092/114092 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 554 chars diff --git a/test/results/default/mpeg-dash.pcap.out b/test/results/default/mpeg-dash.pcap.out index 443659522..ffbc952e7 100644 --- a/test/results/default/mpeg-dash.pcap.out +++ b/test/results/default/mpeg-dash.pcap.out @@ -36,8 +36,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649623 bytes -~~ total memory freed........: 6649623 bytes +~~ total memory allocated....: 6649647 bytes +~~ total memory freed........: 6649647 bytes ~~ total allocations/frees...: 114080/114080 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 547 chars diff --git a/test/results/default/mpeg.pcap.out b/test/results/default/mpeg.pcap.out index 958a7afe3..f907e2ab0 100644 --- a/test/results/default/mpeg.pcap.out +++ b/test/results/default/mpeg.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642274 bytes -~~ total memory freed........: 6642274 bytes +~~ total memory allocated....: 6642298 bytes +~~ total memory freed........: 6642298 bytes ~~ total allocations/frees...: 114043/114043 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/mpegts.pcap.out b/test/results/default/mpegts.pcap.out index 9f615b074..996e6444f 100644 --- a/test/results/default/mpegts.pcap.out +++ b/test/results/default/mpegts.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641644 bytes -~~ total memory freed........: 6641644 bytes +~~ total memory allocated....: 6641668 bytes +~~ total memory freed........: 6641668 bytes ~~ total allocations/frees...: 114020/114020 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 567 chars diff --git a/test/results/default/mqtt.pcap.out b/test/results/default/mqtt.pcap.out index d489b2cd1..ec2f4f94c 100644 --- a/test/results/default/mqtt.pcap.out +++ b/test/results/default/mqtt.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644196 bytes -~~ total memory freed........: 6644196 bytes +~~ total memory allocated....: 6644220 bytes +~~ total memory freed........: 6644220 bytes ~~ total allocations/frees...: 114040/114040 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 550 chars diff --git a/test/results/default/mssql_tds.pcap.out b/test/results/default/mssql_tds.pcap.out index 516628e61..ccb2a58c8 100644 --- a/test/results/default/mssql_tds.pcap.out +++ b/test/results/default/mssql_tds.pcap.out @@ -71,8 +71,8 @@ ~~ total active/idle flows...: 12/12 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6670005 bytes -~~ total memory freed........: 6670005 bytes +~~ total memory allocated....: 6670029 bytes +~~ total memory freed........: 6670029 bytes ~~ total allocations/frees...: 114180/114180 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 557 chars diff --git a/test/results/default/mullvad_dns.pcap.out b/test/results/default/mullvad_dns.pcap.out index 2aa0f0f89..891af1ffb 100644 --- a/test/results/default/mullvad_dns.pcap.out +++ b/test/results/default/mullvad_dns.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641701 bytes -~~ total memory freed........: 6641701 bytes +~~ total memory allocated....: 6641725 bytes +~~ total memory freed........: 6641725 bytes ~~ total allocations/frees...: 114022/114022 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 572 chars diff --git a/test/results/default/mullvad_wireguard.pcap.out b/test/results/default/mullvad_wireguard.pcap.out index 1091d6b4d..b9c8ce1de 100644 --- a/test/results/default/mullvad_wireguard.pcap.out +++ b/test/results/default/mullvad_wireguard.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641985 bytes -~~ total memory freed........: 6641985 bytes +~~ total memory allocated....: 6642009 bytes +~~ total memory freed........: 6642009 bytes ~~ total allocations/frees...: 114032/114032 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 578 chars diff --git a/test/results/default/mumble.pcapng.out b/test/results/default/mumble.pcapng.out index d51628eb3..dece6fa5f 100644 --- a/test/results/default/mumble.pcapng.out +++ b/test/results/default/mumble.pcapng.out @@ -28,8 +28,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650651 bytes -~~ total memory freed........: 6650651 bytes +~~ total memory allocated....: 6650675 bytes +~~ total memory freed........: 6650675 bytes ~~ total allocations/frees...: 114056/114056 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 530 chars diff --git a/test/results/default/munin.pcap.out b/test/results/default/munin.pcap.out index 2c7619df6..cc585844b 100644 --- a/test/results/default/munin.pcap.out +++ b/test/results/default/munin.pcap.out @@ -44,8 +44,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650259 bytes -~~ total memory freed........: 6650259 bytes +~~ total memory allocated....: 6650283 bytes +~~ total memory freed........: 6650283 bytes ~~ total allocations/frees...: 114113/114113 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/mysql.pcapng.out b/test/results/default/mysql.pcapng.out index c78c7e2cd..de119beda 100644 --- a/test/results/default/mysql.pcapng.out +++ b/test/results/default/mysql.pcapng.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645124 bytes -~~ total memory freed........: 6645124 bytes +~~ total memory allocated....: 6645148 bytes +~~ total memory freed........: 6645148 bytes ~~ total allocations/frees...: 114072/114072 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/nano.pcapng.out b/test/results/default/nano.pcapng.out index 0323c2467..e0e9a8e7f 100644 --- a/test/results/default/nano.pcapng.out +++ b/test/results/default/nano.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641817 bytes -~~ total memory freed........: 6641817 bytes +~~ total memory allocated....: 6641841 bytes +~~ total memory freed........: 6641841 bytes ~~ total allocations/frees...: 114026/114026 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/natpmp.pcap.out b/test/results/default/natpmp.pcap.out index 4241844b9..c7d7adb72 100644 --- a/test/results/default/natpmp.pcap.out +++ b/test/results/default/natpmp.pcap.out @@ -37,8 +37,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648894 bytes -~~ total memory freed........: 6648894 bytes +~~ total memory allocated....: 6648918 bytes +~~ total memory freed........: 6648918 bytes ~~ total allocations/frees...: 114066/114066 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 516 chars diff --git a/test/results/default/nats.pcap.out b/test/results/default/nats.pcap.out index c980dc14b..5af83354d 100644 --- a/test/results/default/nats.pcap.out +++ b/test/results/default/nats.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648814 bytes -~~ total memory freed........: 6648814 bytes +~~ total memory allocated....: 6648838 bytes +~~ total memory freed........: 6648838 bytes ~~ total allocations/frees...: 114060/114060 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 531 chars diff --git a/test/results/default/ndpi_match_string_subprotocol__error.pcapng.out b/test/results/default/ndpi_match_string_subprotocol__error.pcapng.out index bebd15bd6..ea64d31a1 100644 --- a/test/results/default/ndpi_match_string_subprotocol__error.pcapng.out +++ b/test/results/default/ndpi_match_string_subprotocol__error.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642165 bytes -~~ total memory freed........: 6642165 bytes +~~ total memory allocated....: 6642189 bytes +~~ total memory freed........: 6642189 bytes ~~ total allocations/frees...: 114038/114038 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 560 chars diff --git a/test/results/default/nest_log_sink.pcap.out b/test/results/default/nest_log_sink.pcap.out index 01a04009f..328b127b9 100644 --- a/test/results/default/nest_log_sink.pcap.out +++ b/test/results/default/nest_log_sink.pcap.out @@ -174,8 +174,8 @@ ~~ total active/idle flows...: 17/17 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6726325 bytes -~~ total memory freed........: 6726325 bytes +~~ total memory allocated....: 6726349 bytes +~~ total memory freed........: 6726349 bytes ~~ total allocations/frees...: 115007/115007 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 537 chars diff --git a/test/results/default/netbios.pcap.out b/test/results/default/netbios.pcap.out index c29d0c605..b2770e38f 100644 --- a/test/results/default/netbios.pcap.out +++ b/test/results/default/netbios.pcap.out @@ -96,8 +96,8 @@ ~~ total active/idle flows...: 16/16 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6685388 bytes -~~ total memory freed........: 6685388 bytes +~~ total memory allocated....: 6685412 bytes +~~ total memory freed........: 6685412 bytes ~~ total allocations/frees...: 114438/114438 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 538 chars diff --git a/test/results/default/netbios_wildcard_dns_query.pcap.out b/test/results/default/netbios_wildcard_dns_query.pcap.out index 2fec86520..45b5fedff 100644 --- a/test/results/default/netbios_wildcard_dns_query.pcap.out +++ b/test/results/default/netbios_wildcard_dns_query.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641672 bytes -~~ total memory freed........: 6641672 bytes +~~ total memory allocated....: 6641696 bytes +~~ total memory freed........: 6641696 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 587 chars diff --git a/test/results/default/netease_games.pcapng.out b/test/results/default/netease_games.pcapng.out index 4d7ace95a..5046e271e 100644 --- a/test/results/default/netease_games.pcapng.out +++ b/test/results/default/netease_games.pcapng.out @@ -48,8 +48,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6655523 bytes -~~ total memory freed........: 6655523 bytes +~~ total memory allocated....: 6655547 bytes +~~ total memory freed........: 6655547 bytes ~~ total allocations/frees...: 114088/114088 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/default/netflix.pcap.out b/test/results/default/netflix.pcap.out index 51aa475cf..cf14d5193 100644 --- a/test/results/default/netflix.pcap.out +++ b/test/results/default/netflix.pcap.out @@ -563,8 +563,8 @@ ~~ total active/idle flows...: 61/61 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7186644 bytes -~~ total memory freed........: 7186644 bytes +~~ total memory allocated....: 7186668 bytes +~~ total memory freed........: 7186668 bytes ~~ total allocations/frees...: 117041/117041 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/default/netflow-fritz.pcap.out b/test/results/default/netflow-fritz.pcap.out index 9ea2fc257..340583fc7 100644 --- a/test/results/default/netflow-fritz.pcap.out +++ b/test/results/default/netflow-fritz.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641672 bytes -~~ total memory freed........: 6641672 bytes +~~ total memory allocated....: 6641696 bytes +~~ total memory freed........: 6641696 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 574 chars diff --git a/test/results/default/netflowv9.pcap.out b/test/results/default/netflowv9.pcap.out index 920e0b9cb..0811e96b1 100644 --- a/test/results/default/netflowv9.pcap.out +++ b/test/results/default/netflowv9.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641933 bytes -~~ total memory freed........: 6641933 bytes +~~ total memory allocated....: 6641957 bytes +~~ total memory freed........: 6641957 bytes ~~ total allocations/frees...: 114030/114030 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/nfsv2.pcap.out b/test/results/default/nfsv2.pcap.out index 0c0e9a155..465ff0315 100644 --- a/test/results/default/nfsv2.pcap.out +++ b/test/results/default/nfsv2.pcap.out @@ -48,8 +48,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6659919 bytes -~~ total memory freed........: 6659919 bytes +~~ total memory allocated....: 6659943 bytes +~~ total memory freed........: 6659943 bytes ~~ total allocations/frees...: 114242/114242 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/default/nfsv3.pcap.out b/test/results/default/nfsv3.pcap.out index fbaf356de..fbb1821fd 100644 --- a/test/results/default/nfsv3.pcap.out +++ b/test/results/default/nfsv3.pcap.out @@ -53,8 +53,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6661399 bytes -~~ total memory freed........: 6661399 bytes +~~ total memory allocated....: 6661423 bytes +~~ total memory freed........: 6661423 bytes ~~ total allocations/frees...: 114225/114225 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/default/nintendo.pcap.out b/test/results/default/nintendo.pcap.out index 6d91bfde3..a55e4c326 100644 --- a/test/results/default/nintendo.pcap.out +++ b/test/results/default/nintendo.pcap.out @@ -170,8 +170,8 @@ ~~ total active/idle flows...: 21/21 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6734445 bytes -~~ total memory freed........: 6734445 bytes +~~ total memory allocated....: 6734469 bytes +~~ total memory freed........: 6734469 bytes ~~ total allocations/frees...: 115256/115256 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/nntp.pcap.out b/test/results/default/nntp.pcap.out index d7c56723e..c659d9c46 100644 --- a/test/results/default/nntp.pcap.out +++ b/test/results/default/nntp.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644619 bytes -~~ total memory freed........: 6644619 bytes +~~ total memory allocated....: 6644643 bytes +~~ total memory freed........: 6644643 bytes ~~ total allocations/frees...: 114053/114053 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/no_sni.pcap.out b/test/results/default/no_sni.pcap.out index 2b2929fef..4b9799c5d 100644 --- a/test/results/default/no_sni.pcap.out +++ b/test/results/default/no_sni.pcap.out @@ -85,8 +85,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6716837 bytes -~~ total memory freed........: 6716837 bytes +~~ total memory allocated....: 6716861 bytes +~~ total memory freed........: 6716861 bytes ~~ total allocations/frees...: 114578/114578 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/nomachine.pcapng.out b/test/results/default/nomachine.pcapng.out index 4a535921c..a0c22684b 100644 --- a/test/results/default/nomachine.pcapng.out +++ b/test/results/default/nomachine.pcapng.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646084 bytes -~~ total memory freed........: 6646084 bytes +~~ total memory allocated....: 6646108 bytes +~~ total memory freed........: 6646108 bytes ~~ total allocations/frees...: 114106/114106 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/ocs.pcap.out b/test/results/default/ocs.pcap.out index c315f1372..986dacc17 100644 --- a/test/results/default/ocs.pcap.out +++ b/test/results/default/ocs.pcap.out @@ -143,8 +143,8 @@ ~~ total active/idle flows...: 20/20 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6723603 bytes -~~ total memory freed........: 6723603 bytes +~~ total memory allocated....: 6723627 bytes +~~ total memory freed........: 6723627 bytes ~~ total allocations/frees...: 115204/115204 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 526 chars diff --git a/test/results/default/ocsp.pcapng.out b/test/results/default/ocsp.pcapng.out index c8c12ae5d..c02fe3050 100644 --- a/test/results/default/ocsp.pcapng.out +++ b/test/results/default/ocsp.pcapng.out @@ -99,8 +99,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6673962 bytes -~~ total memory freed........: 6673962 bytes +~~ total memory allocated....: 6673986 bytes +~~ total memory freed........: 6673986 bytes ~~ total allocations/frees...: 114520/114520 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 567 chars diff --git a/test/results/default/oicq.pcap.out b/test/results/default/oicq.pcap.out index 7435b981f..8fb6478c6 100644 --- a/test/results/default/oicq.pcap.out +++ b/test/results/default/oicq.pcap.out @@ -152,8 +152,8 @@ ~~ total active/idle flows...: 29/29 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6706660 bytes -~~ total memory freed........: 6706660 bytes +~~ total memory allocated....: 6706684 bytes +~~ total memory freed........: 6706684 bytes ~~ total allocations/frees...: 114357/114357 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 565 chars diff --git a/test/results/default/ookla.pcap.out b/test/results/default/ookla.pcap.out index 59b83cd40..c5e12bfe4 100644 --- a/test/results/default/ookla.pcap.out +++ b/test/results/default/ookla.pcap.out @@ -62,8 +62,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6673819 bytes -~~ total memory freed........: 6673819 bytes +~~ total memory allocated....: 6673843 bytes +~~ total memory freed........: 6673843 bytes ~~ total allocations/frees...: 114207/114207 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 520 chars diff --git a/test/results/default/opc-ua.pcap.out b/test/results/default/opc-ua.pcap.out index 084e413fe..1d0c75d7e 100644 --- a/test/results/default/opc-ua.pcap.out +++ b/test/results/default/opc-ua.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652692 bytes -~~ total memory freed........: 6652692 bytes +~~ total memory allocated....: 6652716 bytes +~~ total memory freed........: 6652716 bytes ~~ total allocations/frees...: 114401/114401 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/openflow.pcap.out b/test/results/default/openflow.pcap.out index e8e9690c5..87e6388b5 100644 --- a/test/results/default/openflow.pcap.out +++ b/test/results/default/openflow.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642252 bytes -~~ total memory freed........: 6642252 bytes +~~ total memory allocated....: 6642276 bytes +~~ total memory freed........: 6642276 bytes ~~ total allocations/frees...: 114041/114041 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/openvpn-tlscrypt.pcap.out b/test/results/default/openvpn-tlscrypt.pcap.out index 7f92e80d1..281844f7e 100644 --- a/test/results/default/openvpn-tlscrypt.pcap.out +++ b/test/results/default/openvpn-tlscrypt.pcap.out @@ -35,8 +35,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 323 chars diff --git a/test/results/default/openvpn.pcap.out b/test/results/default/openvpn.pcap.out index 903275b64..4282455ae 100644 --- a/test/results/default/openvpn.pcap.out +++ b/test/results/default/openvpn.pcap.out @@ -102,8 +102,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6689124 bytes -~~ total memory freed........: 6689124 bytes +~~ total memory allocated....: 6689148 bytes +~~ total memory freed........: 6689148 bytes ~~ total allocations/frees...: 114837/114837 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 508 chars diff --git a/test/results/default/openvpn_nohmac.pcapng.out b/test/results/default/openvpn_nohmac.pcapng.out index 0f3b3e201..c44521de6 100644 --- a/test/results/default/openvpn_nohmac.pcapng.out +++ b/test/results/default/openvpn_nohmac.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6669019 bytes -~~ total memory freed........: 6669019 bytes +~~ total memory allocated....: 6669043 bytes +~~ total memory freed........: 6669043 bytes ~~ total allocations/frees...: 114964/114964 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/openvpn_nohmac_tcp.pcapng.out b/test/results/default/openvpn_nohmac_tcp.pcapng.out index 99b4678a8..096c25d38 100644 --- a/test/results/default/openvpn_nohmac_tcp.pcapng.out +++ b/test/results/default/openvpn_nohmac_tcp.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649346 bytes -~~ total memory freed........: 6649346 bytes +~~ total memory allocated....: 6649370 bytes +~~ total memory freed........: 6649370 bytes ~~ total allocations/frees...: 114216/114216 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 562 chars diff --git a/test/results/default/openwire.pcapng.out b/test/results/default/openwire.pcapng.out index 2a38fc14c..9ac6387ec 100644 --- a/test/results/default/openwire.pcapng.out +++ b/test/results/default/openwire.pcapng.out @@ -41,8 +41,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 317 chars diff --git a/test/results/default/opera-vpn.pcapng.out b/test/results/default/opera-vpn.pcapng.out index 4925f254d..cbdaa4bc8 100644 --- a/test/results/default/opera-vpn.pcapng.out +++ b/test/results/default/opera-vpn.pcapng.out @@ -624,8 +624,8 @@ ~~ total active/idle flows...: 62/62 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7269070 bytes -~~ total memory freed........: 7269070 bytes +~~ total memory allocated....: 7269094 bytes +~~ total memory freed........: 7269094 bytes ~~ total allocations/frees...: 118197/118197 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 538 chars diff --git a/test/results/default/oracle12.pcapng.out b/test/results/default/oracle12.pcapng.out index 510081c9b..b00f6a144 100644 --- a/test/results/default/oracle12.pcapng.out +++ b/test/results/default/oracle12.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642223 bytes -~~ total memory freed........: 6642223 bytes +~~ total memory allocated....: 6642247 bytes +~~ total memory freed........: 6642247 bytes ~~ total allocations/frees...: 114040/114040 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/os_detected.pcapng.out b/test/results/default/os_detected.pcapng.out index bc3cf67e1..7ebdc96df 100644 --- a/test/results/default/os_detected.pcapng.out +++ b/test/results/default/os_detected.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6651961 bytes -~~ total memory freed........: 6651961 bytes +~~ total memory allocated....: 6651985 bytes +~~ total memory freed........: 6651985 bytes ~~ total allocations/frees...: 114046/114046 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 574 chars diff --git a/test/results/default/ospfv2_add_new_prefix.pcap.out b/test/results/default/ospfv2_add_new_prefix.pcap.out index dc7ee3ab8..3789d2589 100644 --- a/test/results/default/ospfv2_add_new_prefix.pcap.out +++ b/test/results/default/ospfv2_add_new_prefix.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641701 bytes -~~ total memory freed........: 6641701 bytes +~~ total memory allocated....: 6641725 bytes +~~ total memory freed........: 6641725 bytes ~~ total allocations/frees...: 114022/114022 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 574 chars diff --git a/test/results/default/ossfuzz_seed_fake_traces_1.pcapng.out b/test/results/default/ossfuzz_seed_fake_traces_1.pcapng.out index 99a0a1442..d41df411a 100644 --- a/test/results/default/ossfuzz_seed_fake_traces_1.pcapng.out +++ b/test/results/default/ossfuzz_seed_fake_traces_1.pcapng.out @@ -65,8 +65,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6667060 bytes -~~ total memory freed........: 6667060 bytes +~~ total memory allocated....: 6667084 bytes +~~ total memory freed........: 6667084 bytes ~~ total allocations/frees...: 114148/114148 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 523 chars diff --git a/test/results/default/ossfuzz_seed_fake_traces_2.pcapng.out b/test/results/default/ossfuzz_seed_fake_traces_2.pcapng.out index 67852d8ec..47144909f 100644 --- a/test/results/default/ossfuzz_seed_fake_traces_2.pcapng.out +++ b/test/results/default/ossfuzz_seed_fake_traces_2.pcapng.out @@ -71,8 +71,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6675048 bytes -~~ total memory freed........: 6675048 bytes +~~ total memory allocated....: 6675072 bytes +~~ total memory freed........: 6675072 bytes ~~ total allocations/frees...: 114208/114208 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 531 chars diff --git a/test/results/default/ossfuzz_seed_fake_traces_3.pcapng.out b/test/results/default/ossfuzz_seed_fake_traces_3.pcapng.out index dcd41de3e..e6c0a9c98 100644 --- a/test/results/default/ossfuzz_seed_fake_traces_3.pcapng.out +++ b/test/results/default/ossfuzz_seed_fake_traces_3.pcapng.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641791 bytes -~~ total memory freed........: 6641791 bytes +~~ total memory allocated....: 6641815 bytes +~~ total memory freed........: 6641815 bytes ~~ total allocations/frees...: 114026/114026 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/ossfuzz_seed_fake_traces_4.pcapng.out b/test/results/default/ossfuzz_seed_fake_traces_4.pcapng.out index b091e7196..689f5dc14 100644 --- a/test/results/default/ossfuzz_seed_fake_traces_4.pcapng.out +++ b/test/results/default/ossfuzz_seed_fake_traces_4.pcapng.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641701 bytes -~~ total memory freed........: 6641701 bytes +~~ total memory allocated....: 6641725 bytes +~~ total memory freed........: 6641725 bytes ~~ total allocations/frees...: 114022/114022 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 522 chars diff --git a/test/results/default/path_of_exile.pcapng.out b/test/results/default/path_of_exile.pcapng.out index f74a95f1d..1b6c4cc80 100644 --- a/test/results/default/path_of_exile.pcapng.out +++ b/test/results/default/path_of_exile.pcapng.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643807 bytes -~~ total memory freed........: 6643807 bytes +~~ total memory allocated....: 6643831 bytes +~~ total memory freed........: 6643831 bytes ~~ total allocations/frees...: 114025/114025 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 553 chars diff --git a/test/results/default/pfcp.pcapng.out b/test/results/default/pfcp.pcapng.out index 3b8b8936e..f8b90bd4b 100644 --- a/test/results/default/pfcp.pcapng.out +++ b/test/results/default/pfcp.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641962 bytes -~~ total memory freed........: 6641962 bytes +~~ total memory allocated....: 6641986 bytes +~~ total memory freed........: 6641986 bytes ~~ total allocations/frees...: 114031/114031 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/pgm.pcap.out b/test/results/default/pgm.pcap.out index d9b31f915..418858423 100644 --- a/test/results/default/pgm.pcap.out +++ b/test/results/default/pgm.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6670615 bytes -~~ total memory freed........: 6670615 bytes +~~ total memory allocated....: 6670639 bytes +~~ total memory freed........: 6670639 bytes ~~ total allocations/frees...: 115019/115019 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 548 chars diff --git a/test/results/default/pgsql.pcap.out b/test/results/default/pgsql.pcap.out index 542901e7b..573ddc347 100644 --- a/test/results/default/pgsql.pcap.out +++ b/test/results/default/pgsql.pcap.out @@ -58,8 +58,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6667943 bytes -~~ total memory freed........: 6667943 bytes +~~ total memory allocated....: 6667967 bytes +~~ total memory freed........: 6667967 bytes ~~ total allocations/frees...: 114169/114169 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/pgsql2.pcapng.out b/test/results/default/pgsql2.pcapng.out index a54a28cd7..ace133ec0 100644 --- a/test/results/default/pgsql2.pcapng.out +++ b/test/results/default/pgsql2.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644242 bytes -~~ total memory freed........: 6644242 bytes +~~ total memory allocated....: 6644266 bytes +~~ total memory freed........: 6644266 bytes ~~ total allocations/frees...: 114040/114040 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 517 chars diff --git a/test/results/default/pia.pcap.out b/test/results/default/pia.pcap.out index 1497b5779..55d8d2291 100644 --- a/test/results/default/pia.pcap.out +++ b/test/results/default/pia.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648950 bytes -~~ total memory freed........: 6648950 bytes +~~ total memory allocated....: 6648974 bytes +~~ total memory freed........: 6648974 bytes ~~ total allocations/frees...: 114038/114038 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 541 chars diff --git a/test/results/default/pim.pcap.out b/test/results/default/pim.pcap.out index b6cab5b5a..b2b0b7fcc 100644 --- a/test/results/default/pim.pcap.out +++ b/test/results/default/pim.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641905 bytes -~~ total memory freed........: 6641905 bytes +~~ total memory allocated....: 6641929 bytes +~~ total memory freed........: 6641929 bytes ~~ total allocations/frees...: 114029/114029 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 564 chars diff --git a/test/results/default/pinterest.pcap.out b/test/results/default/pinterest.pcap.out index 9fc1e4253..f44df6bc5 100644 --- a/test/results/default/pinterest.pcap.out +++ b/test/results/default/pinterest.pcap.out @@ -303,8 +303,8 @@ ~~ total active/idle flows...: 37/37 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7823471 bytes -~~ total memory freed........: 7823471 bytes +~~ total memory allocated....: 7823495 bytes +~~ total memory freed........: 7823495 bytes ~~ total allocations/frees...: 116571/116571 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/pluralsight.pcap.out b/test/results/default/pluralsight.pcap.out index 7054b1012..cc5bc28cc 100644 --- a/test/results/default/pluralsight.pcap.out +++ b/test/results/default/pluralsight.pcap.out @@ -65,8 +65,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6712725 bytes -~~ total memory freed........: 6712725 bytes +~~ total memory allocated....: 6712749 bytes +~~ total memory freed........: 6712749 bytes ~~ total allocations/frees...: 114175/114175 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 553 chars diff --git a/test/results/default/pop3.pcap.out b/test/results/default/pop3.pcap.out index 7b7493542..47a6a255e 100644 --- a/test/results/default/pop3.pcap.out +++ b/test/results/default/pop3.pcap.out @@ -59,8 +59,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6669610 bytes -~~ total memory freed........: 6669610 bytes +~~ total memory allocated....: 6669634 bytes +~~ total memory freed........: 6669634 bytes ~~ total allocations/frees...: 114226/114226 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 527 chars diff --git a/test/results/default/pop3_stls.pcap.out b/test/results/default/pop3_stls.pcap.out index 34683a0b2..b245eac9d 100644 --- a/test/results/default/pop3_stls.pcap.out +++ b/test/results/default/pop3_stls.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6661445 bytes -~~ total memory freed........: 6661445 bytes +~~ total memory allocated....: 6661469 bytes +~~ total memory freed........: 6661469 bytes ~~ total allocations/frees...: 114084/114084 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 531 chars diff --git a/test/results/default/pops.pcapng.out b/test/results/default/pops.pcapng.out index 7166717cf..6738fb8c2 100644 --- a/test/results/default/pops.pcapng.out +++ b/test/results/default/pops.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648315 bytes -~~ total memory freed........: 6648315 bytes +~~ total memory allocated....: 6648339 bytes +~~ total memory freed........: 6648339 bytes ~~ total allocations/frees...: 114029/114029 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/portable_executable.pcap.out b/test/results/default/portable_executable.pcap.out index 70c8348f2..c58f82127 100644 --- a/test/results/default/portable_executable.pcap.out +++ b/test/results/default/portable_executable.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649085 bytes -~~ total memory freed........: 6649085 bytes +~~ total memory allocated....: 6649109 bytes +~~ total memory freed........: 6649109 bytes ~~ total allocations/frees...: 114069/114069 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 549 chars diff --git a/test/results/default/pptp.pcap.out b/test/results/default/pptp.pcap.out index 951b98cae..99df84955 100644 --- a/test/results/default/pptp.pcap.out +++ b/test/results/default/pptp.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644387 bytes -~~ total memory freed........: 6644387 bytes +~~ total memory allocated....: 6644411 bytes +~~ total memory freed........: 6644411 bytes ~~ total allocations/frees...: 114045/114045 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/profinet-io-le.pcap.out b/test/results/default/profinet-io-le.pcap.out index 1c56d2061..79094cfcc 100644 --- a/test/results/default/profinet-io-le.pcap.out +++ b/test/results/default/profinet-io-le.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641701 bytes -~~ total memory freed........: 6641701 bytes +~~ total memory allocated....: 6641725 bytes +~~ total memory freed........: 6641725 bytes ~~ total allocations/frees...: 114022/114022 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 575 chars diff --git a/test/results/default/protobuf.pcap.out b/test/results/default/protobuf.pcap.out index f79227502..fc585755e 100644 --- a/test/results/default/protobuf.pcap.out +++ b/test/results/default/protobuf.pcap.out @@ -53,8 +53,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6662791 bytes -~~ total memory freed........: 6662791 bytes +~~ total memory allocated....: 6662815 bytes +~~ total memory freed........: 6662815 bytes ~~ total allocations/frees...: 114129/114129 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 531 chars diff --git a/test/results/default/protonvpn.pcap.out b/test/results/default/protonvpn.pcap.out index 5dc889cf0..cd1b6ef6b 100644 --- a/test/results/default/protonvpn.pcap.out +++ b/test/results/default/protonvpn.pcap.out @@ -31,8 +31,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6664088 bytes -~~ total memory freed........: 6664088 bytes +~~ total memory allocated....: 6664112 bytes +~~ total memory freed........: 6664112 bytes ~~ total allocations/frees...: 114100/114100 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 510 chars diff --git a/test/results/default/psiphon3.pcap.out b/test/results/default/psiphon3.pcap.out index 4e3d66f24..fb24ab3ca 100644 --- a/test/results/default/psiphon3.pcap.out +++ b/test/results/default/psiphon3.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650165 bytes -~~ total memory freed........: 6650165 bytes +~~ total memory allocated....: 6650189 bytes +~~ total memory freed........: 6650189 bytes ~~ total allocations/frees...: 114094/114094 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 514 chars diff --git a/test/results/default/ptpv2.pcap.out b/test/results/default/ptpv2.pcap.out index 4e1e42922..46255ea24 100644 --- a/test/results/default/ptpv2.pcap.out +++ b/test/results/default/ptpv2.pcap.out @@ -29,8 +29,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646633 bytes -~~ total memory freed........: 6646633 bytes +~~ total memory allocated....: 6646657 bytes +~~ total memory freed........: 6646657 bytes ~~ total allocations/frees...: 114056/114056 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/punycode-idn.pcap.out b/test/results/default/punycode-idn.pcap.out index 92cbe6eec..e45ad0f01 100644 --- a/test/results/default/punycode-idn.pcap.out +++ b/test/results/default/punycode-idn.pcap.out @@ -30,8 +30,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646820 bytes -~~ total memory freed........: 6646820 bytes +~~ total memory allocated....: 6646844 bytes +~~ total memory freed........: 6646844 bytes ~~ total allocations/frees...: 114065/114065 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 536 chars diff --git a/test/results/default/quic-23.pcap.out b/test/results/default/quic-23.pcap.out index 38e1eb191..75cc21162 100644 --- a/test/results/default/quic-23.pcap.out +++ b/test/results/default/quic-23.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652405 bytes -~~ total memory freed........: 6652405 bytes +~~ total memory allocated....: 6652429 bytes +~~ total memory freed........: 6652429 bytes ~~ total allocations/frees...: 114061/114061 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/quic-24.pcap.out b/test/results/default/quic-24.pcap.out index 3e652c243..3f7beef3e 100644 --- a/test/results/default/quic-24.pcap.out +++ b/test/results/default/quic-24.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652186 bytes -~~ total memory freed........: 6652186 bytes +~~ total memory allocated....: 6652210 bytes +~~ total memory freed........: 6652210 bytes ~~ total allocations/frees...: 114056/114056 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/quic-27.pcap.out b/test/results/default/quic-27.pcap.out index 482ef1e7a..90b6b33e8 100644 --- a/test/results/default/quic-27.pcap.out +++ b/test/results/default/quic-27.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652567 bytes -~~ total memory freed........: 6652567 bytes +~~ total memory allocated....: 6652591 bytes +~~ total memory freed........: 6652591 bytes ~~ total allocations/frees...: 114062/114062 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/quic-28.pcap.out b/test/results/default/quic-28.pcap.out index 53dda9b4f..c802460a3 100644 --- a/test/results/default/quic-28.pcap.out +++ b/test/results/default/quic-28.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6658989 bytes -~~ total memory freed........: 6658989 bytes +~~ total memory allocated....: 6659013 bytes +~~ total memory freed........: 6659013 bytes ~~ total allocations/frees...: 114294/114294 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/quic-29.pcap.out b/test/results/default/quic-29.pcap.out index 2af1e97a8..dbcaa2851 100644 --- a/test/results/default/quic-29.pcap.out +++ b/test/results/default/quic-29.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652186 bytes -~~ total memory freed........: 6652186 bytes +~~ total memory allocated....: 6652210 bytes +~~ total memory freed........: 6652210 bytes ~~ total allocations/frees...: 114056/114056 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/quic-33.pcapng.out b/test/results/default/quic-33.pcapng.out index 5d2faaa63..1616efdf9 100644 --- a/test/results/default/quic-33.pcapng.out +++ b/test/results/default/quic-33.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652055 bytes -~~ total memory freed........: 6652055 bytes +~~ total memory allocated....: 6652079 bytes +~~ total memory freed........: 6652079 bytes ~~ total allocations/frees...: 114050/114050 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/quic-34.pcap.out b/test/results/default/quic-34.pcap.out index 17738639a..423ee4564 100644 --- a/test/results/default/quic-34.pcap.out +++ b/test/results/default/quic-34.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652070 bytes -~~ total memory freed........: 6652070 bytes +~~ total memory allocated....: 6652094 bytes +~~ total memory freed........: 6652094 bytes ~~ total allocations/frees...: 114047/114047 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/quic-forcing-vn-with-data.pcapng.out b/test/results/default/quic-forcing-vn-with-data.pcapng.out index 81f0a9bab..6880f3125 100644 --- a/test/results/default/quic-forcing-vn-with-data.pcapng.out +++ b/test/results/default/quic-forcing-vn-with-data.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650640 bytes -~~ total memory freed........: 6650640 bytes +~~ total memory allocated....: 6650664 bytes +~~ total memory freed........: 6650664 bytes ~~ total allocations/frees...: 114064/114064 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 588 chars diff --git a/test/results/default/quic-fuzz-overflow.pcapng.out b/test/results/default/quic-fuzz-overflow.pcapng.out index 73c3510f4..ca1e15fe6 100644 --- a/test/results/default/quic-fuzz-overflow.pcapng.out +++ b/test/results/default/quic-fuzz-overflow.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641685 bytes -~~ total memory freed........: 6641685 bytes +~~ total memory allocated....: 6641709 bytes +~~ total memory freed........: 6641709 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 581 chars diff --git a/test/results/default/quic-mvfst-22.pcap.out b/test/results/default/quic-mvfst-22.pcap.out index 781d5e1e1..c32264a64 100644 --- a/test/results/default/quic-mvfst-22.pcap.out +++ b/test/results/default/quic-mvfst-22.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6665974 bytes -~~ total memory freed........: 6665974 bytes +~~ total memory allocated....: 6665998 bytes +~~ total memory freed........: 6665998 bytes ~~ total allocations/frees...: 114531/114531 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/quic-mvfst-22_decryption_error.pcap.out b/test/results/default/quic-mvfst-22_decryption_error.pcap.out index 60a6c3b11..c0fe5ac1a 100644 --- a/test/results/default/quic-mvfst-22_decryption_error.pcap.out +++ b/test/results/default/quic-mvfst-22_decryption_error.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652042 bytes -~~ total memory freed........: 6652042 bytes +~~ total memory allocated....: 6652066 bytes +~~ total memory freed........: 6652066 bytes ~~ total allocations/frees...: 114050/114050 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 591 chars diff --git a/test/results/default/quic-mvfst-27.pcapng.out b/test/results/default/quic-mvfst-27.pcapng.out index 8a03f5112..93cd81310 100644 --- a/test/results/default/quic-mvfst-27.pcapng.out +++ b/test/results/default/quic-mvfst-27.pcapng.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652334 bytes -~~ total memory freed........: 6652334 bytes +~~ total memory allocated....: 6652358 bytes +~~ total memory freed........: 6652358 bytes ~~ total allocations/frees...: 114061/114061 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 576 chars diff --git a/test/results/default/quic-mvfst-exp.pcap.out b/test/results/default/quic-mvfst-exp.pcap.out index a3d70264c..b8195474d 100644 --- a/test/results/default/quic-mvfst-exp.pcap.out +++ b/test/results/default/quic-mvfst-exp.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652627 bytes -~~ total memory freed........: 6652627 bytes +~~ total memory allocated....: 6652651 bytes +~~ total memory freed........: 6652651 bytes ~~ total allocations/frees...: 114071/114071 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 575 chars diff --git a/test/results/default/quic-v2.pcapng.out b/test/results/default/quic-v2.pcapng.out index bcd8727c6..6a88a0a55 100644 --- a/test/results/default/quic-v2.pcapng.out +++ b/test/results/default/quic-v2.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650825 bytes -~~ total memory freed........: 6650825 bytes +~~ total memory allocated....: 6650849 bytes +~~ total memory freed........: 6650849 bytes ~~ total allocations/frees...: 114060/114060 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/quic.pcap.out b/test/results/default/quic.pcap.out index c66b8c278..1e7aa6dbc 100644 --- a/test/results/default/quic.pcap.out +++ b/test/results/default/quic.pcap.out @@ -86,8 +86,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6677620 bytes -~~ total memory freed........: 6677620 bytes +~~ total memory allocated....: 6677644 bytes +~~ total memory freed........: 6677644 bytes ~~ total allocations/frees...: 114647/114647 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 554 chars diff --git a/test/results/default/quic046.pcap.out b/test/results/default/quic046.pcap.out index 5f1885182..cda8ba8be 100644 --- a/test/results/default/quic046.pcap.out +++ b/test/results/default/quic046.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644591 bytes -~~ total memory freed........: 6644591 bytes +~~ total memory allocated....: 6644615 bytes +~~ total memory freed........: 6644615 bytes ~~ total allocations/frees...: 114121/114121 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/quic_0RTT.pcap.out b/test/results/default/quic_0RTT.pcap.out index 899f8caf6..2750f3fdb 100644 --- a/test/results/default/quic_0RTT.pcap.out +++ b/test/results/default/quic_0RTT.pcap.out @@ -23,8 +23,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6667812 bytes -~~ total memory freed........: 6667812 bytes +~~ total memory allocated....: 6667836 bytes +~~ total memory freed........: 6667836 bytes ~~ total allocations/frees...: 114093/114093 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 550 chars diff --git a/test/results/default/quic_cc_ack.pcapng.out b/test/results/default/quic_cc_ack.pcapng.out index 09e33abfb..7377f5d5e 100644 --- a/test/results/default/quic_cc_ack.pcapng.out +++ b/test/results/default/quic_cc_ack.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6664627 bytes -~~ total memory freed........: 6664627 bytes +~~ total memory allocated....: 6664651 bytes +~~ total memory freed........: 6664651 bytes ~~ total allocations/frees...: 114071/114071 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 574 chars diff --git a/test/results/default/quic_crypto_aes_auth_size.pcap.out b/test/results/default/quic_crypto_aes_auth_size.pcap.out index 7545cc9c7..c4a21751c 100644 --- a/test/results/default/quic_crypto_aes_auth_size.pcap.out +++ b/test/results/default/quic_crypto_aes_auth_size.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6668933 bytes -~~ total memory freed........: 6668933 bytes +~~ total memory allocated....: 6668957 bytes +~~ total memory freed........: 6668957 bytes ~~ total allocations/frees...: 114077/114077 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 586 chars diff --git a/test/results/default/quic_frags_ch_in_multiple_packets.pcapng.out b/test/results/default/quic_frags_ch_in_multiple_packets.pcapng.out index a7d951910..48061deae 100644 --- a/test/results/default/quic_frags_ch_in_multiple_packets.pcapng.out +++ b/test/results/default/quic_frags_ch_in_multiple_packets.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6666736 bytes -~~ total memory freed........: 6666736 bytes +~~ total memory allocated....: 6666760 bytes +~~ total memory freed........: 6666760 bytes ~~ total allocations/frees...: 114069/114069 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 596 chars diff --git a/test/results/default/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out b/test/results/default/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out index 383ba358a..aca9563fc 100644 --- a/test/results/default/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out +++ b/test/results/default/quic_frags_ch_out_of_order_same_packet_craziness.pcapng.out @@ -673,8 +673,8 @@ ~~ total active/idle flows...: 113/113 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 8595220 bytes -~~ total memory freed........: 8595220 bytes +~~ total memory allocated....: 8595244 bytes +~~ total memory freed........: 8595244 bytes ~~ total allocations/frees...: 118139/118139 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 611 chars diff --git a/test/results/default/quic_frags_different_dcid.pcapng.out b/test/results/default/quic_frags_different_dcid.pcapng.out index 1c06325a7..31798b72b 100644 --- a/test/results/default/quic_frags_different_dcid.pcapng.out +++ b/test/results/default/quic_frags_different_dcid.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6666571 bytes -~~ total memory freed........: 6666571 bytes +~~ total memory allocated....: 6666595 bytes +~~ total memory freed........: 6666595 bytes ~~ total allocations/frees...: 114065/114065 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 588 chars diff --git a/test/results/default/quic_interop_V.pcapng.out b/test/results/default/quic_interop_V.pcapng.out index f4de7f28a..939608df2 100644 --- a/test/results/default/quic_interop_V.pcapng.out +++ b/test/results/default/quic_interop_V.pcapng.out @@ -477,8 +477,8 @@ ~~ total active/idle flows...: 77/77 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6824037 bytes -~~ total memory freed........: 6824037 bytes +~~ total memory allocated....: 6824061 bytes +~~ total memory freed........: 6824061 bytes ~~ total allocations/frees...: 115138/115138 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 554 chars diff --git a/test/results/default/quic_q39.pcap.out b/test/results/default/quic_q39.pcap.out index 4dab498e6..26d4be29b 100644 --- a/test/results/default/quic_q39.pcap.out +++ b/test/results/default/quic_q39.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643429 bytes -~~ total memory freed........: 6643429 bytes +~~ total memory allocated....: 6643453 bytes +~~ total memory freed........: 6643453 bytes ~~ total allocations/frees...: 114081/114081 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 557 chars diff --git a/test/results/default/quic_q43.pcap.out b/test/results/default/quic_q43.pcap.out index 792279cb2..f699d8d5e 100644 --- a/test/results/default/quic_q43.pcap.out +++ b/test/results/default/quic_q43.pcap.out @@ -14,8 +14,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641701 bytes -~~ total memory freed........: 6641701 bytes +~~ total memory allocated....: 6641725 bytes +~~ total memory freed........: 6641725 bytes ~~ total allocations/frees...: 114022/114022 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 554 chars diff --git a/test/results/default/quic_q46.pcap.out b/test/results/default/quic_q46.pcap.out index 1f2f77c0e..be3d70252 100644 --- a/test/results/default/quic_q46.pcap.out +++ b/test/results/default/quic_q46.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642267 bytes -~~ total memory freed........: 6642267 bytes +~~ total memory allocated....: 6642291 bytes +~~ total memory freed........: 6642291 bytes ~~ total allocations/frees...: 114041/114041 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 562 chars diff --git a/test/results/default/quic_q46_b.pcap.out b/test/results/default/quic_q46_b.pcap.out index 34c65499b..6880e96f8 100644 --- a/test/results/default/quic_q46_b.pcap.out +++ b/test/results/default/quic_q46_b.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642269 bytes -~~ total memory freed........: 6642269 bytes +~~ total memory allocated....: 6642293 bytes +~~ total memory freed........: 6642293 bytes ~~ total allocations/frees...: 114041/114041 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 571 chars diff --git a/test/results/default/quic_q50.pcap.out b/test/results/default/quic_q50.pcap.out index b81a0355c..66b853f98 100644 --- a/test/results/default/quic_q50.pcap.out +++ b/test/results/default/quic_q50.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652584 bytes -~~ total memory freed........: 6652584 bytes +~~ total memory allocated....: 6652608 bytes +~~ total memory freed........: 6652608 bytes ~~ total allocations/frees...: 114060/114060 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 569 chars diff --git a/test/results/default/quic_t50.pcap.out b/test/results/default/quic_t50.pcap.out index 4cf44f163..b96309ead 100644 --- a/test/results/default/quic_t50.pcap.out +++ b/test/results/default/quic_t50.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652371 bytes -~~ total memory freed........: 6652371 bytes +~~ total memory allocated....: 6652395 bytes +~~ total memory freed........: 6652395 bytes ~~ total allocations/frees...: 114054/114054 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 569 chars diff --git a/test/results/default/quic_t51.pcap.out b/test/results/default/quic_t51.pcap.out index 4c83ea557..41ecf2522 100644 --- a/test/results/default/quic_t51.pcap.out +++ b/test/results/default/quic_t51.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652374 bytes -~~ total memory freed........: 6652374 bytes +~~ total memory allocated....: 6652398 bytes +~~ total memory freed........: 6652398 bytes ~~ total allocations/frees...: 114054/114054 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 569 chars diff --git a/test/results/default/quickplay.pcap.out b/test/results/default/quickplay.pcap.out index d0c1cfae1..3a6823137 100644 --- a/test/results/default/quickplay.pcap.out +++ b/test/results/default/quickplay.pcap.out @@ -151,8 +151,8 @@ ~~ total active/idle flows...: 21/21 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6708860 bytes -~~ total memory freed........: 6708860 bytes +~~ total memory allocated....: 6708884 bytes +~~ total memory freed........: 6708884 bytes ~~ total allocations/frees...: 114626/114626 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/radius_false_positive.pcapng.out b/test/results/default/radius_false_positive.pcapng.out index 9b264a818..9f3c41edb 100644 --- a/test/results/default/radius_false_positive.pcapng.out +++ b/test/results/default/radius_false_positive.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641933 bytes -~~ total memory freed........: 6641933 bytes +~~ total memory allocated....: 6641957 bytes +~~ total memory freed........: 6641957 bytes ~~ total allocations/frees...: 114030/114030 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 584 chars diff --git a/test/results/default/radmin3.pcapng.out b/test/results/default/radmin3.pcapng.out index 94989f611..3912c8b76 100644 --- a/test/results/default/radmin3.pcapng.out +++ b/test/results/default/radmin3.pcapng.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648550 bytes -~~ total memory freed........: 6648550 bytes +~~ total memory allocated....: 6648574 bytes +~~ total memory freed........: 6648574 bytes ~~ total allocations/frees...: 114052/114052 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 531 chars diff --git a/test/results/default/raft.pcap.out b/test/results/default/raft.pcap.out index b7cc863c9..d854a5403 100644 --- a/test/results/default/raft.pcap.out +++ b/test/results/default/raft.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649887 bytes -~~ total memory freed........: 6649887 bytes +~~ total memory allocated....: 6649911 bytes +~~ total memory freed........: 6649911 bytes ~~ total allocations/frees...: 114097/114097 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 527 chars diff --git a/test/results/default/raknet.pcap.out b/test/results/default/raknet.pcap.out index 64198e4ff..69e44e13c 100644 --- a/test/results/default/raknet.pcap.out +++ b/test/results/default/raknet.pcap.out @@ -101,8 +101,8 @@ ~~ total active/idle flows...: 12/12 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6668769 bytes -~~ total memory freed........: 6668769 bytes +~~ total memory allocated....: 6668793 bytes +~~ total memory freed........: 6668793 bytes ~~ total allocations/frees...: 114207/114207 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/rdp.pcap.out b/test/results/default/rdp.pcap.out index 50f945b73..962e86502 100644 --- a/test/results/default/rdp.pcap.out +++ b/test/results/default/rdp.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642233 bytes -~~ total memory freed........: 6642233 bytes +~~ total memory allocated....: 6642257 bytes +~~ total memory freed........: 6642257 bytes ~~ total allocations/frees...: 114041/114041 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 512 chars diff --git a/test/results/default/rdp2.pcap.out b/test/results/default/rdp2.pcap.out index 92159be71..a46e3cbe3 100644 --- a/test/results/default/rdp2.pcap.out +++ b/test/results/default/rdp2.pcap.out @@ -35,8 +35,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6647457 bytes -~~ total memory freed........: 6647457 bytes +~~ total memory allocated....: 6647481 bytes +~~ total memory freed........: 6647481 bytes ~~ total allocations/frees...: 114086/114086 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 565 chars diff --git a/test/results/default/rdp3.pcap.out b/test/results/default/rdp3.pcap.out index 8577717c4..7369d9a3c 100644 --- a/test/results/default/rdp3.pcap.out +++ b/test/results/default/rdp3.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642523 bytes -~~ total memory freed........: 6642523 bytes +~~ total memory allocated....: 6642547 bytes +~~ total memory freed........: 6642547 bytes ~~ total allocations/frees...: 114051/114051 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 537 chars diff --git a/test/results/default/reasm_crash_anon.pcapng.out b/test/results/default/reasm_crash_anon.pcapng.out index 1b4b53bda..f505a460f 100644 --- a/test/results/default/reasm_crash_anon.pcapng.out +++ b/test/results/default/reasm_crash_anon.pcapng.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649781 bytes -~~ total memory freed........: 6649781 bytes +~~ total memory allocated....: 6649805 bytes +~~ total memory freed........: 6649805 bytes ~~ total allocations/frees...: 114231/114231 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 562 chars diff --git a/test/results/default/reasm_segv_anon.pcapng.out b/test/results/default/reasm_segv_anon.pcapng.out index 4593c02a5..f2ce34a2f 100644 --- a/test/results/default/reasm_segv_anon.pcapng.out +++ b/test/results/default/reasm_segv_anon.pcapng.out @@ -50,8 +50,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644021 bytes -~~ total memory freed........: 6644021 bytes +~~ total memory allocated....: 6644045 bytes +~~ total memory freed........: 6644045 bytes ~~ total allocations/frees...: 114102/114102 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 356 chars diff --git a/test/results/default/reddit.pcap.out b/test/results/default/reddit.pcap.out index 7caa17c0f..af7b95227 100644 --- a/test/results/default/reddit.pcap.out +++ b/test/results/default/reddit.pcap.out @@ -588,8 +588,8 @@ ~~ total active/idle flows...: 60/60 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7543663 bytes -~~ total memory freed........: 7543663 bytes +~~ total memory allocated....: 7543687 bytes +~~ total memory freed........: 7543687 bytes ~~ total allocations/frees...: 117108/117108 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 562 chars diff --git a/test/results/default/resp.pcap.out b/test/results/default/resp.pcap.out index ffefcb7d3..4a7f4dff8 100644 --- a/test/results/default/resp.pcap.out +++ b/test/results/default/resp.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642774 bytes -~~ total memory freed........: 6642774 bytes +~~ total memory allocated....: 6642798 bytes +~~ total memory freed........: 6642798 bytes ~~ total allocations/frees...: 114059/114059 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/riot.pcapng.out b/test/results/default/riot.pcapng.out index e556a6cfc..401897ea6 100644 --- a/test/results/default/riot.pcapng.out +++ b/test/results/default/riot.pcapng.out @@ -24,8 +24,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6665608 bytes -~~ total memory freed........: 6665608 bytes +~~ total memory allocated....: 6665632 bytes +~~ total memory freed........: 6665632 bytes ~~ total allocations/frees...: 114054/114054 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 567 chars diff --git a/test/results/default/riotgames.pcap.out b/test/results/default/riotgames.pcap.out index 56219ce63..1e06607ca 100644 --- a/test/results/default/riotgames.pcap.out +++ b/test/results/default/riotgames.pcap.out @@ -68,8 +68,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6661255 bytes -~~ total memory freed........: 6661255 bytes +~~ total memory allocated....: 6661279 bytes +~~ total memory freed........: 6661279 bytes ~~ total allocations/frees...: 114152/114152 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 528 chars diff --git a/test/results/default/ripe_atlas.pcap.out b/test/results/default/ripe_atlas.pcap.out index 1a897156f..17e12c17b 100644 --- a/test/results/default/ripe_atlas.pcap.out +++ b/test/results/default/ripe_atlas.pcap.out @@ -41,8 +41,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6655542 bytes -~~ total memory freed........: 6655542 bytes +~~ total memory allocated....: 6655566 bytes +~~ total memory freed........: 6655566 bytes ~~ total allocations/frees...: 114091/114091 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 551 chars diff --git a/test/results/default/rmcp.pcap.out b/test/results/default/rmcp.pcap.out index 550ce056e..cbc3a9f75 100644 --- a/test/results/default/rmcp.pcap.out +++ b/test/results/default/rmcp.pcap.out @@ -35,8 +35,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653277 bytes -~~ total memory freed........: 6653277 bytes +~~ total memory allocated....: 6653301 bytes +~~ total memory freed........: 6653301 bytes ~~ total allocations/frees...: 114081/114081 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 534 chars diff --git a/test/results/default/roblox.pcapng.out b/test/results/default/roblox.pcapng.out index 462c31b66..a40021f0a 100644 --- a/test/results/default/roblox.pcapng.out +++ b/test/results/default/roblox.pcapng.out @@ -45,8 +45,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6673105 bytes -~~ total memory freed........: 6673105 bytes +~~ total memory allocated....: 6673129 bytes +~~ total memory freed........: 6673129 bytes ~~ total allocations/frees...: 114139/114139 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 548 chars diff --git a/test/results/default/roughtime.pcap.out b/test/results/default/roughtime.pcap.out index 847bf6bf5..5f0b3af5f 100644 --- a/test/results/default/roughtime.pcap.out +++ b/test/results/default/roughtime.pcap.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648635 bytes -~~ total memory freed........: 6648635 bytes +~~ total memory allocated....: 6648659 bytes +~~ total memory freed........: 6648659 bytes ~~ total allocations/frees...: 114057/114057 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/rsh-syslog-false-positive.pcap.out b/test/results/default/rsh-syslog-false-positive.pcap.out index 9b2ec6e97..92769ddd7 100644 --- a/test/results/default/rsh-syslog-false-positive.pcap.out +++ b/test/results/default/rsh-syslog-false-positive.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641875 bytes -~~ total memory freed........: 6641875 bytes +~~ total memory allocated....: 6641899 bytes +~~ total memory freed........: 6641899 bytes ~~ total allocations/frees...: 114028/114028 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 366 chars diff --git a/test/results/default/rsh.pcap.out b/test/results/default/rsh.pcap.out index 5a506989c..e3cb60026 100644 --- a/test/results/default/rsh.pcap.out +++ b/test/results/default/rsh.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648813 bytes -~~ total memory freed........: 6648813 bytes +~~ total memory allocated....: 6648837 bytes +~~ total memory freed........: 6648837 bytes ~~ total allocations/frees...: 114059/114059 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/rsync.pcap.out b/test/results/default/rsync.pcap.out index 2aac53f50..e1ce54463 100644 --- a/test/results/default/rsync.pcap.out +++ b/test/results/default/rsync.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642513 bytes -~~ total memory freed........: 6642513 bytes +~~ total memory allocated....: 6642537 bytes +~~ total memory freed........: 6642537 bytes ~~ total allocations/frees...: 114050/114050 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/rtcp_multiple_pkts_in_the_same_datagram.pcap.out b/test/results/default/rtcp_multiple_pkts_in_the_same_datagram.pcap.out index 7bbb2a039..8bb48b480 100644 --- a/test/results/default/rtcp_multiple_pkts_in_the_same_datagram.pcap.out +++ b/test/results/default/rtcp_multiple_pkts_in_the_same_datagram.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641788 bytes -~~ total memory freed........: 6641788 bytes +~~ total memory allocated....: 6641812 bytes +~~ total memory freed........: 6641812 bytes ~~ total allocations/frees...: 114025/114025 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 600 chars diff --git a/test/results/default/rtmp.pcap.out b/test/results/default/rtmp.pcap.out index b93a32b2c..e30831486 100644 --- a/test/results/default/rtmp.pcap.out +++ b/test/results/default/rtmp.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644503 bytes -~~ total memory freed........: 6644503 bytes +~~ total memory allocated....: 6644527 bytes +~~ total memory freed........: 6644527 bytes ~~ total allocations/frees...: 114049/114049 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 527 chars diff --git a/test/results/default/rtp.pcapng.out b/test/results/default/rtp.pcapng.out index c75023ed9..ccc7bc2b6 100644 --- a/test/results/default/rtp.pcapng.out +++ b/test/results/default/rtp.pcapng.out @@ -44,8 +44,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653853 bytes -~~ total memory freed........: 6653853 bytes +~~ total memory allocated....: 6653877 bytes +~~ total memory freed........: 6653877 bytes ~~ total allocations/frees...: 114167/114167 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 540 chars diff --git a/test/results/default/rtps.pcap.out b/test/results/default/rtps.pcap.out index 6bd650be1..f3b2f641d 100644 --- a/test/results/default/rtps.pcap.out +++ b/test/results/default/rtps.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642484 bytes -~~ total memory freed........: 6642484 bytes +~~ total memory allocated....: 6642508 bytes +~~ total memory freed........: 6642508 bytes ~~ total allocations/frees...: 114049/114049 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 534 chars diff --git a/test/results/default/rtsp.pcap.out b/test/results/default/rtsp.pcap.out index 7cc46da5b..4a7c6144a 100644 --- a/test/results/default/rtsp.pcap.out +++ b/test/results/default/rtsp.pcap.out @@ -71,8 +71,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6686567 bytes -~~ total memory freed........: 6686567 bytes +~~ total memory allocated....: 6686591 bytes +~~ total memory freed........: 6686591 bytes ~~ total allocations/frees...: 114668/114668 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 540 chars diff --git a/test/results/default/rtsp_setup_http.pcapng.out b/test/results/default/rtsp_setup_http.pcapng.out index e7ddba287..d9990823d 100644 --- a/test/results/default/rtsp_setup_http.pcapng.out +++ b/test/results/default/rtsp_setup_http.pcapng.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643772 bytes -~~ total memory freed........: 6643772 bytes +~~ total memory allocated....: 6643796 bytes +~~ total memory freed........: 6643796 bytes ~~ total allocations/frees...: 114023/114023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 578 chars diff --git a/test/results/default/rx.pcap.out b/test/results/default/rx.pcap.out index bfd4439b2..7e91f1c8a 100644 --- a/test/results/default/rx.pcap.out +++ b/test/results/default/rx.pcap.out @@ -46,8 +46,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6654639 bytes -~~ total memory freed........: 6654639 bytes +~~ total memory allocated....: 6654663 bytes +~~ total memory freed........: 6654663 bytes ~~ total allocations/frees...: 114196/114196 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 552 chars diff --git a/test/results/default/s7comm-plus.pcap.out b/test/results/default/s7comm-plus.pcap.out index 4287bba5a..ca97a0289 100644 --- a/test/results/default/s7comm-plus.pcap.out +++ b/test/results/default/s7comm-plus.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645982 bytes -~~ total memory freed........: 6645982 bytes +~~ total memory allocated....: 6646006 bytes +~~ total memory freed........: 6646006 bytes ~~ total allocations/frees...: 114100/114100 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/s7comm.pcap.out b/test/results/default/s7comm.pcap.out index ba4673de8..5d77d35b7 100644 --- a/test/results/default/s7comm.pcap.out +++ b/test/results/default/s7comm.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645286 bytes -~~ total memory freed........: 6645286 bytes +~~ total memory allocated....: 6645310 bytes +~~ total memory freed........: 6645310 bytes ~~ total allocations/frees...: 114076/114076 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 540 chars diff --git a/test/results/default/safari.pcap.out b/test/results/default/safari.pcap.out index 8bbcb9f5c..ee99d6675 100644 --- a/test/results/default/safari.pcap.out +++ b/test/results/default/safari.pcap.out @@ -75,8 +75,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6705463 bytes -~~ total memory freed........: 6705463 bytes +~~ total memory allocated....: 6705487 bytes +~~ total memory freed........: 6705487 bytes ~~ total allocations/frees...: 114288/114288 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/salesforce.pcap.out b/test/results/default/salesforce.pcap.out index 80d36af7d..8105515ed 100644 --- a/test/results/default/salesforce.pcap.out +++ b/test/results/default/salesforce.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652560 bytes -~~ total memory freed........: 6652560 bytes +~~ total memory allocated....: 6652584 bytes +~~ total memory freed........: 6652584 bytes ~~ total allocations/frees...: 114045/114045 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 548 chars diff --git a/test/results/default/sccp_hw_conf_register.pcapng.out b/test/results/default/sccp_hw_conf_register.pcapng.out index db312b8eb..0c77b96f6 100644 --- a/test/results/default/sccp_hw_conf_register.pcapng.out +++ b/test/results/default/sccp_hw_conf_register.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642136 bytes -~~ total memory freed........: 6642136 bytes +~~ total memory allocated....: 6642160 bytes +~~ total memory freed........: 6642160 bytes ~~ total allocations/frees...: 114037/114037 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/sctp.cap.out b/test/results/default/sctp.cap.out index 012bb76fa..13d9a3801 100644 --- a/test/results/default/sctp.cap.out +++ b/test/results/default/sctp.cap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644051 bytes -~~ total memory freed........: 6644051 bytes +~~ total memory allocated....: 6644075 bytes +~~ total memory freed........: 6644075 bytes ~~ total allocations/frees...: 114035/114035 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 537 chars diff --git a/test/results/default/selfsigned.pcap.out b/test/results/default/selfsigned.pcap.out index d776f434a..42b48c39e 100644 --- a/test/results/default/selfsigned.pcap.out +++ b/test/results/default/selfsigned.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646471 bytes -~~ total memory freed........: 6646471 bytes +~~ total memory allocated....: 6646495 bytes +~~ total memory freed........: 6646495 bytes ~~ total allocations/frees...: 114047/114047 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/default/sflow.pcap.out b/test/results/default/sflow.pcap.out index 66e6f8e86..5a1ad64bf 100644 --- a/test/results/default/sflow.pcap.out +++ b/test/results/default/sflow.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641904 bytes -~~ total memory freed........: 6641904 bytes +~~ total memory allocated....: 6641928 bytes +~~ total memory freed........: 6641928 bytes ~~ total allocations/frees...: 114029/114029 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/shadowsocks.pcap.out b/test/results/default/shadowsocks.pcap.out index 626c740bb..bde4dc847 100644 --- a/test/results/default/shadowsocks.pcap.out +++ b/test/results/default/shadowsocks.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649307 bytes -~~ total memory freed........: 6649307 bytes +~~ total memory allocated....: 6649331 bytes +~~ total memory freed........: 6649331 bytes ~~ total allocations/frees...: 114077/114077 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 550 chars diff --git a/test/results/default/shell.pcap.out b/test/results/default/shell.pcap.out index 5f54de625..9ba9a697d 100644 --- a/test/results/default/shell.pcap.out +++ b/test/results/default/shell.pcap.out @@ -33,8 +33,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6658514 bytes -~~ total memory freed........: 6658514 bytes +~~ total memory allocated....: 6658538 bytes +~~ total memory freed........: 6658538 bytes ~~ total allocations/frees...: 114082/114082 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/signal.pcap.out b/test/results/default/signal.pcap.out index 5a2368eea..5b07a1e8b 100644 --- a/test/results/default/signal.pcap.out +++ b/test/results/default/signal.pcap.out @@ -181,8 +181,8 @@ ~~ total active/idle flows...: 19/19 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6932442 bytes -~~ total memory freed........: 6932442 bytes +~~ total memory allocated....: 6932466 bytes +~~ total memory freed........: 6932466 bytes ~~ total allocations/frees...: 114987/114987 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/simple-dnscrypt.pcap.out b/test/results/default/simple-dnscrypt.pcap.out index f7fa8f550..a4d4ea0ff 100644 --- a/test/results/default/simple-dnscrypt.pcap.out +++ b/test/results/default/simple-dnscrypt.pcap.out @@ -51,8 +51,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6741182 bytes -~~ total memory freed........: 6741182 bytes +~~ total memory allocated....: 6741206 bytes +~~ total memory freed........: 6741206 bytes ~~ total allocations/frees...: 114212/114212 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 538 chars diff --git a/test/results/default/sip.pcap.out b/test/results/default/sip.pcap.out index 94a5b7116..fd23a0123 100644 --- a/test/results/default/sip.pcap.out +++ b/test/results/default/sip.pcap.out @@ -65,8 +65,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6651825 bytes -~~ total memory freed........: 6651825 bytes +~~ total memory allocated....: 6651849 bytes +~~ total memory freed........: 6651849 bytes ~~ total allocations/frees...: 114167/114167 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 564 chars diff --git a/test/results/default/sip_hello.pcapng.out b/test/results/default/sip_hello.pcapng.out index 45178174f..483485981 100644 --- a/test/results/default/sip_hello.pcapng.out +++ b/test/results/default/sip_hello.pcapng.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642513 bytes -~~ total memory freed........: 6642513 bytes +~~ total memory allocated....: 6642537 bytes +~~ total memory freed........: 6642537 bytes ~~ total allocations/frees...: 114050/114050 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 536 chars diff --git a/test/results/default/sites.pcapng.out b/test/results/default/sites.pcapng.out index f331efb8d..e2c2cf30f 100644 --- a/test/results/default/sites.pcapng.out +++ b/test/results/default/sites.pcapng.out @@ -564,8 +564,8 @@ ~~ total active/idle flows...: 64/64 ~~ total timeout flows.......: 4 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7428288 bytes -~~ total memory freed........: 7428288 bytes +~~ total memory allocated....: 7428312 bytes +~~ total memory freed........: 7428312 bytes ~~ total allocations/frees...: 116076/116076 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/skinny.pcap.out b/test/results/default/skinny.pcap.out index 62ce69076..b51652277 100644 --- a/test/results/default/skinny.pcap.out +++ b/test/results/default/skinny.pcap.out @@ -67,8 +67,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6661079 bytes -~~ total memory freed........: 6661079 bytes +~~ total memory allocated....: 6661103 bytes +~~ total memory freed........: 6661103 bytes ~~ total allocations/frees...: 114282/114282 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 536 chars diff --git a/test/results/default/skype-conference-call.pcap.out b/test/results/default/skype-conference-call.pcap.out index 69b90ef99..3a9fb2a9c 100644 --- a/test/results/default/skype-conference-call.pcap.out +++ b/test/results/default/skype-conference-call.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6647443 bytes -~~ total memory freed........: 6647443 bytes +~~ total memory allocated....: 6647467 bytes +~~ total memory freed........: 6647467 bytes ~~ total allocations/frees...: 114220/114220 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 582 chars diff --git a/test/results/default/smb_deletefile.pcap.out b/test/results/default/smb_deletefile.pcap.out index 8e3b5112f..680b46dfe 100644 --- a/test/results/default/smb_deletefile.pcap.out +++ b/test/results/default/smb_deletefile.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644572 bytes -~~ total memory freed........: 6644572 bytes +~~ total memory allocated....: 6644596 bytes +~~ total memory freed........: 6644596 bytes ~~ total allocations/frees...: 114121/114121 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 536 chars diff --git a/test/results/default/smb_frags.pcap.out b/test/results/default/smb_frags.pcap.out index 46b5714be..6978ea534 100644 --- a/test/results/default/smb_frags.pcap.out +++ b/test/results/default/smb_frags.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643985 bytes -~~ total memory freed........: 6643985 bytes +~~ total memory allocated....: 6644009 bytes +~~ total memory freed........: 6644009 bytes ~~ total allocations/frees...: 114032/114032 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 563 chars diff --git a/test/results/default/smbv1.pcap.out b/test/results/default/smbv1.pcap.out index ae1f9d7df..b4ec56d86 100644 --- a/test/results/default/smbv1.pcap.out +++ b/test/results/default/smbv1.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643927 bytes -~~ total memory freed........: 6643927 bytes +~~ total memory allocated....: 6643951 bytes +~~ total memory freed........: 6643951 bytes ~~ total allocations/frees...: 114030/114030 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/smpp_in_general.pcap.out b/test/results/default/smpp_in_general.pcap.out index fa1d8507b..db10eb3ad 100644 --- a/test/results/default/smpp_in_general.pcap.out +++ b/test/results/default/smpp_in_general.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644184 bytes -~~ total memory freed........: 6644184 bytes +~~ total memory allocated....: 6644208 bytes +~~ total memory freed........: 6644208 bytes ~~ total allocations/frees...: 114038/114038 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 538 chars diff --git a/test/results/default/smtp-starttls.pcap.out b/test/results/default/smtp-starttls.pcap.out index 431fe680a..c6d02cf1f 100644 --- a/test/results/default/smtp-starttls.pcap.out +++ b/test/results/default/smtp-starttls.pcap.out @@ -34,8 +34,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6668298 bytes -~~ total memory freed........: 6668298 bytes +~~ total memory allocated....: 6668322 bytes +~~ total memory freed........: 6668322 bytes ~~ total allocations/frees...: 114135/114135 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 551 chars diff --git a/test/results/default/smtp.pcap.out b/test/results/default/smtp.pcap.out index f126be261..7a2915321 100644 --- a/test/results/default/smtp.pcap.out +++ b/test/results/default/smtp.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646446 bytes -~~ total memory freed........: 6646446 bytes +~~ total memory allocated....: 6646470 bytes +~~ total memory freed........: 6646470 bytes ~~ total allocations/frees...: 114116/114116 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 531 chars diff --git a/test/results/default/smtps.pcapng.out b/test/results/default/smtps.pcapng.out index eba920cea..0f1a8b0f2 100644 --- a/test/results/default/smtps.pcapng.out +++ b/test/results/default/smtps.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645892 bytes -~~ total memory freed........: 6645892 bytes +~~ total memory allocated....: 6645916 bytes +~~ total memory freed........: 6645916 bytes ~~ total allocations/frees...: 114028/114028 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/snapchat.pcap.out b/test/results/default/snapchat.pcap.out index c6adf6886..4f5dce782 100644 --- a/test/results/default/snapchat.pcap.out +++ b/test/results/default/snapchat.pcap.out @@ -36,8 +36,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6660212 bytes -~~ total memory freed........: 6660212 bytes +~~ total memory allocated....: 6660236 bytes +~~ total memory freed........: 6660236 bytes ~~ total allocations/frees...: 114110/114110 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/snapchat_call.pcapng.out b/test/results/default/snapchat_call.pcapng.out index 877f24509..2c865e680 100644 --- a/test/results/default/snapchat_call.pcapng.out +++ b/test/results/default/snapchat_call.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643134 bytes -~~ total memory freed........: 6643134 bytes +~~ total memory allocated....: 6643158 bytes +~~ total memory freed........: 6643158 bytes ~~ total allocations/frees...: 114071/114071 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 576 chars diff --git a/test/results/default/snapchat_call_v1.pcapng.out b/test/results/default/snapchat_call_v1.pcapng.out index e56a30bdc..e54aa5bad 100644 --- a/test/results/default/snapchat_call_v1.pcapng.out +++ b/test/results/default/snapchat_call_v1.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6665504 bytes -~~ total memory freed........: 6665504 bytes +~~ total memory allocated....: 6665528 bytes +~~ total memory freed........: 6665528 bytes ~~ total allocations/frees...: 114518/114518 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 579 chars diff --git a/test/results/default/snmp.pcap.out b/test/results/default/snmp.pcap.out index fddfa0d8d..15827430e 100644 --- a/test/results/default/snmp.pcap.out +++ b/test/results/default/snmp.pcap.out @@ -145,8 +145,8 @@ ~~ total active/idle flows...: 17/17 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6680374 bytes -~~ total memory freed........: 6680374 bytes +~~ total memory allocated....: 6680398 bytes +~~ total memory freed........: 6680398 bytes ~~ total allocations/frees...: 114268/114268 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 555 chars diff --git a/test/results/default/soap.pcap.out b/test/results/default/soap.pcap.out index bb8ac87e4..3f44ed99b 100644 --- a/test/results/default/soap.pcap.out +++ b/test/results/default/soap.pcap.out @@ -30,8 +30,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6651103 bytes -~~ total memory freed........: 6651103 bytes +~~ total memory allocated....: 6651127 bytes +~~ total memory freed........: 6651127 bytes ~~ total allocations/frees...: 114072/114072 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 539 chars diff --git a/test/results/default/socks.pcap.out b/test/results/default/socks.pcap.out index 650025ae0..702c5fff9 100644 --- a/test/results/default/socks.pcap.out +++ b/test/results/default/socks.pcap.out @@ -42,8 +42,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6658451 bytes -~~ total memory freed........: 6658451 bytes +~~ total memory allocated....: 6658475 bytes +~~ total memory freed........: 6658475 bytes ~~ total allocations/frees...: 114117/114117 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/default/softether.pcap.out b/test/results/default/softether.pcap.out index e6d0cc0df..bcf5fa236 100644 --- a/test/results/default/softether.pcap.out +++ b/test/results/default/softether.pcap.out @@ -113,8 +113,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6658484 bytes -~~ total memory freed........: 6658484 bytes +~~ total memory allocated....: 6658508 bytes +~~ total memory freed........: 6658508 bytes ~~ total allocations/frees...: 114258/114258 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 517 chars diff --git a/test/results/default/someip-tp.pcap.out b/test/results/default/someip-tp.pcap.out index 8899cfda8..122ffca00 100644 --- a/test/results/default/someip-tp.pcap.out +++ b/test/results/default/someip-tp.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641904 bytes -~~ total memory freed........: 6641904 bytes +~~ total memory allocated....: 6641928 bytes +~~ total memory freed........: 6641928 bytes ~~ total allocations/frees...: 114029/114029 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/someip-udp-method-call.pcapng.out b/test/results/default/someip-udp-method-call.pcapng.out index 494e6efee..1227b148f 100644 --- a/test/results/default/someip-udp-method-call.pcapng.out +++ b/test/results/default/someip-udp-method-call.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643994 bytes -~~ total memory freed........: 6643994 bytes +~~ total memory allocated....: 6644018 bytes +~~ total memory freed........: 6644018 bytes ~~ total allocations/frees...: 114033/114033 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 565 chars diff --git a/test/results/default/someip_sd_sample.pcap.out b/test/results/default/someip_sd_sample.pcap.out index 271680612..2f44a8f4e 100644 --- a/test/results/default/someip_sd_sample.pcap.out +++ b/test/results/default/someip_sd_sample.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 0/0 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6639351 bytes -~~ total memory freed........: 6639351 bytes +~~ total memory allocated....: 6639375 bytes +~~ total memory freed........: 6639375 bytes ~~ total allocations/frees...: 114009/114009 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 318 chars diff --git a/test/results/default/source_engine.pcap.out b/test/results/default/source_engine.pcap.out index db81018d2..1a7d5f18f 100644 --- a/test/results/default/source_engine.pcap.out +++ b/test/results/default/source_engine.pcap.out @@ -91,8 +91,8 @@ ~~ total active/idle flows...: 17/17 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6678808 bytes -~~ total memory freed........: 6678808 bytes +~~ total memory allocated....: 6678832 bytes +~~ total memory freed........: 6678832 bytes ~~ total allocations/frees...: 114213/114213 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 559 chars diff --git a/test/results/default/spotify_tcp.pcap.out b/test/results/default/spotify_tcp.pcap.out index 3537bbf8e..52908405e 100644 --- a/test/results/default/spotify_tcp.pcap.out +++ b/test/results/default/spotify_tcp.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643981 bytes -~~ total memory freed........: 6643981 bytes +~~ total memory allocated....: 6644005 bytes +~~ total memory freed........: 6644005 bytes ~~ total allocations/frees...: 114031/114031 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 512 chars diff --git a/test/results/default/sql_injection.pcap.out b/test/results/default/sql_injection.pcap.out index faf688828..39d8140da 100644 --- a/test/results/default/sql_injection.pcap.out +++ b/test/results/default/sql_injection.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642274 bytes -~~ total memory freed........: 6642274 bytes +~~ total memory allocated....: 6642298 bytes +~~ total memory freed........: 6642298 bytes ~~ total allocations/frees...: 114033/114033 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 552 chars diff --git a/test/results/default/srvloc-v1.pcapng.out b/test/results/default/srvloc-v1.pcapng.out index 88f6c9cfc..b63f7c4fe 100644 --- a/test/results/default/srvloc-v1.pcapng.out +++ b/test/results/default/srvloc-v1.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643993 bytes -~~ total memory freed........: 6643993 bytes +~~ total memory allocated....: 6644017 bytes +~~ total memory freed........: 6644017 bytes ~~ total allocations/frees...: 114033/114033 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 572 chars diff --git a/test/results/default/srvloc.pcap.out b/test/results/default/srvloc.pcap.out index 39a687de8..78c7d07d5 100644 --- a/test/results/default/srvloc.pcap.out +++ b/test/results/default/srvloc.pcap.out @@ -3007,8 +3007,8 @@ ~~ total active/idle flows...: 621/621 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 8080924 bytes -~~ total memory freed........: 8080924 bytes +~~ total memory allocated....: 8080948 bytes +~~ total memory freed........: 8080948 bytes ~~ total allocations/frees...: 121469/121469 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 553 chars diff --git a/test/results/default/ssdp-m-search-ua.pcap.out b/test/results/default/ssdp-m-search-ua.pcap.out index 5fde6efa2..fa9e3eb13 100644 --- a/test/results/default/ssdp-m-search-ua.pcap.out +++ b/test/results/default/ssdp-m-search-ua.pcap.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641767 bytes -~~ total memory freed........: 6641767 bytes +~~ total memory allocated....: 6641791 bytes +~~ total memory freed........: 6641791 bytes ~~ total allocations/frees...: 114024/114024 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 577 chars diff --git a/test/results/default/ssdp-m-search.pcap.out b/test/results/default/ssdp-m-search.pcap.out index 2cd891365..7815cc3c6 100644 --- a/test/results/default/ssdp-m-search.pcap.out +++ b/test/results/default/ssdp-m-search.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642166 bytes -~~ total memory freed........: 6642166 bytes +~~ total memory allocated....: 6642190 bytes +~~ total memory freed........: 6642190 bytes ~~ total allocations/frees...: 114038/114038 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 555 chars diff --git a/test/results/default/ssh.pcap.out b/test/results/default/ssh.pcap.out index 20d6c4f7b..fde2732fc 100644 --- a/test/results/default/ssh.pcap.out +++ b/test/results/default/ssh.pcap.out @@ -36,8 +36,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6659401 bytes -~~ total memory freed........: 6659401 bytes +~~ total memory allocated....: 6659425 bytes +~~ total memory freed........: 6659425 bytes ~~ total allocations/frees...: 114338/114338 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/ssh_unidirectional.pcap.out b/test/results/default/ssh_unidirectional.pcap.out index a008032b6..529211b7a 100644 --- a/test/results/default/ssh_unidirectional.pcap.out +++ b/test/results/default/ssh_unidirectional.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642020 bytes -~~ total memory freed........: 6642020 bytes +~~ total memory allocated....: 6642044 bytes +~~ total memory freed........: 6642044 bytes ~~ total allocations/frees...: 114033/114033 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 556 chars diff --git a/test/results/default/ssl-cert-name-mismatch.pcap.out b/test/results/default/ssl-cert-name-mismatch.pcap.out index 507005650..6f79c05f0 100644 --- a/test/results/default/ssl-cert-name-mismatch.pcap.out +++ b/test/results/default/ssl-cert-name-mismatch.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652517 bytes -~~ total memory freed........: 6652517 bytes +~~ total memory allocated....: 6652541 bytes +~~ total memory freed........: 6652541 bytes ~~ total allocations/frees...: 114051/114051 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 560 chars diff --git a/test/results/default/starcraft_battle.pcap.out b/test/results/default/starcraft_battle.pcap.out index d4208a9e9..8af3cdd78 100644 --- a/test/results/default/starcraft_battle.pcap.out +++ b/test/results/default/starcraft_battle.pcap.out @@ -389,8 +389,8 @@ ~~ total active/idle flows...: 52/52 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6810998 bytes -~~ total memory freed........: 6810998 bytes +~~ total memory allocated....: 6811022 bytes +~~ total memory freed........: 6811022 bytes ~~ total allocations/frees...: 115499/115499 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 310 chars diff --git a/test/results/default/steam.pcapng.out b/test/results/default/steam.pcapng.out index 02cc4ae56..7a8cdde31 100644 --- a/test/results/default/steam.pcapng.out +++ b/test/results/default/steam.pcapng.out @@ -65,8 +65,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6673397 bytes -~~ total memory freed........: 6673397 bytes +~~ total memory allocated....: 6673421 bytes +~~ total memory freed........: 6673421 bytes ~~ total allocations/frees...: 114153/114153 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 530 chars diff --git a/test/results/default/stomp.pcapng.out b/test/results/default/stomp.pcapng.out index 7077ea1cb..46a67d0c1 100644 --- a/test/results/default/stomp.pcapng.out +++ b/test/results/default/stomp.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642194 bytes -~~ total memory freed........: 6642194 bytes +~~ total memory allocated....: 6642218 bytes +~~ total memory freed........: 6642218 bytes ~~ total allocations/frees...: 114039/114039 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/stun.pcap.out b/test/results/default/stun.pcap.out index 7b31f43b8..0cdbf0981 100644 --- a/test/results/default/stun.pcap.out +++ b/test/results/default/stun.pcap.out @@ -98,8 +98,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6670057 bytes -~~ total memory freed........: 6670057 bytes +~~ total memory allocated....: 6670081 bytes +~~ total memory freed........: 6670081 bytes ~~ total allocations/frees...: 114318/114318 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 538 chars diff --git a/test/results/default/stun_classic.pcap.out b/test/results/default/stun_classic.pcap.out index 2a69266fc..7bf8ef1fa 100644 --- a/test/results/default/stun_classic.pcap.out +++ b/test/results/default/stun_classic.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642281 bytes -~~ total memory freed........: 6642281 bytes +~~ total memory allocated....: 6642305 bytes +~~ total memory freed........: 6642305 bytes ~~ total allocations/frees...: 114042/114042 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 559 chars diff --git a/test/results/default/stun_dtls_rtp.pcapng.out b/test/results/default/stun_dtls_rtp.pcapng.out index 042fb7b56..3c86ea516 100644 --- a/test/results/default/stun_dtls_rtp.pcapng.out +++ b/test/results/default/stun_dtls_rtp.pcapng.out @@ -31,8 +31,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648965 bytes -~~ total memory freed........: 6648965 bytes +~~ total memory allocated....: 6648989 bytes +~~ total memory freed........: 6648989 bytes ~~ total allocations/frees...: 114136/114136 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 538 chars diff --git a/test/results/default/stun_dtls_rtp_unidir.pcapng.out b/test/results/default/stun_dtls_rtp_unidir.pcapng.out index b98f05d9b..f366ffc02 100644 --- a/test/results/default/stun_dtls_rtp_unidir.pcapng.out +++ b/test/results/default/stun_dtls_rtp_unidir.pcapng.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645238 bytes -~~ total memory freed........: 6645238 bytes +~~ total memory allocated....: 6645262 bytes +~~ total memory freed........: 6645262 bytes ~~ total allocations/frees...: 114076/114076 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 577 chars diff --git a/test/results/default/stun_dtls_unidirectional_client.pcap.out b/test/results/default/stun_dtls_unidirectional_client.pcap.out index 6d33284b1..1073057e1 100644 --- a/test/results/default/stun_dtls_unidirectional_client.pcap.out +++ b/test/results/default/stun_dtls_unidirectional_client.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643893 bytes -~~ total memory freed........: 6643893 bytes +~~ total memory allocated....: 6643917 bytes +~~ total memory freed........: 6643917 bytes ~~ total allocations/frees...: 114028/114028 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 592 chars diff --git a/test/results/default/stun_dtls_unidirectional_server.pcap.out b/test/results/default/stun_dtls_unidirectional_server.pcap.out index df0340b55..e1c0b7b9b 100644 --- a/test/results/default/stun_dtls_unidirectional_server.pcap.out +++ b/test/results/default/stun_dtls_unidirectional_server.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646001 bytes -~~ total memory freed........: 6646001 bytes +~~ total memory allocated....: 6646025 bytes +~~ total memory freed........: 6646025 bytes ~~ total allocations/frees...: 114032/114032 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 592 chars diff --git a/test/results/default/stun_google_meet.pcapng.out b/test/results/default/stun_google_meet.pcapng.out index 895ff15f6..6a9ccafed 100644 --- a/test/results/default/stun_google_meet.pcapng.out +++ b/test/results/default/stun_google_meet.pcapng.out @@ -82,8 +82,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6665941 bytes -~~ total memory freed........: 6665941 bytes +~~ total memory allocated....: 6665965 bytes +~~ total memory freed........: 6665965 bytes ~~ total allocations/frees...: 114452/114452 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 551 chars diff --git a/test/results/default/stun_msteams_unidir.pcapng.out b/test/results/default/stun_msteams_unidir.pcapng.out index 3c267787a..2ce8d5e66 100644 --- a/test/results/default/stun_msteams_unidir.pcapng.out +++ b/test/results/default/stun_msteams_unidir.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6642019 bytes -~~ total memory freed........: 6642019 bytes +~~ total memory allocated....: 6642043 bytes +~~ total memory freed........: 6642043 bytes ~~ total allocations/frees...: 114033/114033 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 578 chars diff --git a/test/results/default/stun_signal.pcapng.out b/test/results/default/stun_signal.pcapng.out index 16875b7af..b66518a69 100644 --- a/test/results/default/stun_signal.pcapng.out +++ b/test/results/default/stun_signal.pcapng.out @@ -239,8 +239,8 @@ ~~ total active/idle flows...: 23/23 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6705989 bytes -~~ total memory freed........: 6705989 bytes +~~ total memory allocated....: 6706013 bytes +~~ total memory freed........: 6706013 bytes ~~ total allocations/frees...: 114744/114744 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/stun_tcp_multiple_msgs_same_pkt.pcap.out b/test/results/default/stun_tcp_multiple_msgs_same_pkt.pcap.out index 6103493c7..cfb0a5e31 100644 --- a/test/results/default/stun_tcp_multiple_msgs_same_pkt.pcap.out +++ b/test/results/default/stun_tcp_multiple_msgs_same_pkt.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643836 bytes -~~ total memory freed........: 6643836 bytes +~~ total memory allocated....: 6643860 bytes +~~ total memory freed........: 6643860 bytes ~~ total allocations/frees...: 114026/114026 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 583 chars diff --git a/test/results/default/stun_wa_call.pcapng.out b/test/results/default/stun_wa_call.pcapng.out index 1e52eccfa..c0b6c08b3 100644 --- a/test/results/default/stun_wa_call.pcapng.out +++ b/test/results/default/stun_wa_call.pcapng.out @@ -138,8 +138,8 @@ ~~ total active/idle flows...: 13/13 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6686623 bytes -~~ total memory freed........: 6686623 bytes +~~ total memory allocated....: 6686647 bytes +~~ total memory freed........: 6686647 bytes ~~ total allocations/frees...: 114755/114755 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 575 chars diff --git a/test/results/default/stun_zoom.pcapng.out b/test/results/default/stun_zoom.pcapng.out index 97c9b84cd..a254a5dbc 100644 --- a/test/results/default/stun_zoom.pcapng.out +++ b/test/results/default/stun_zoom.pcapng.out @@ -34,8 +34,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6657264 bytes -~~ total memory freed........: 6657264 bytes +~~ total memory allocated....: 6657288 bytes +~~ total memory freed........: 6657288 bytes ~~ total allocations/frees...: 114112/114112 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 572 chars diff --git a/test/results/default/syncthing.pcap.out b/test/results/default/syncthing.pcap.out index 4f66725ee..4a59a362e 100644 --- a/test/results/default/syncthing.pcap.out +++ b/test/results/default/syncthing.pcap.out @@ -46,8 +46,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649393 bytes -~~ total memory freed........: 6649393 bytes +~~ total memory allocated....: 6649417 bytes +~~ total memory freed........: 6649417 bytes ~~ total allocations/frees...: 114083/114083 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/synscan.pcap.out b/test/results/default/synscan.pcap.out index db5970f40..351bb9e2d 100644 --- a/test/results/default/synscan.pcap.out +++ b/test/results/default/synscan.pcap.out @@ -8002,8 +8002,8 @@ ~~ total active/idle flows...: 1994/1994 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 11268078 bytes -~~ total memory freed........: 11268078 bytes +~~ total memory allocated....: 11268102 bytes +~~ total memory freed........: 11268102 bytes ~~ total allocations/frees...: 137961/137961 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 537 chars diff --git a/test/results/default/syslog.pcap.out b/test/results/default/syslog.pcap.out index 88e83ca10..6e83e2264 100644 --- a/test/results/default/syslog.pcap.out +++ b/test/results/default/syslog.pcap.out @@ -154,8 +154,8 @@ ~~ total active/idle flows...: 19/19 ~~ total timeout flows.......: 2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6687499 bytes -~~ total memory freed........: 6687499 bytes +~~ total memory allocated....: 6687523 bytes +~~ total memory freed........: 6687523 bytes ~~ total allocations/frees...: 114307/114307 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 285 chars diff --git a/test/results/default/tailscale.pcap.out b/test/results/default/tailscale.pcap.out index b2c3523f7..d9a7a3b8f 100644 --- a/test/results/default/tailscale.pcap.out +++ b/test/results/default/tailscale.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644746 bytes -~~ total memory freed........: 6644746 bytes +~~ total memory allocated....: 6644770 bytes +~~ total memory freed........: 6644770 bytes ~~ total allocations/frees...: 114127/114127 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/targusdataspeed_false_positives.pcap.out b/test/results/default/targusdataspeed_false_positives.pcap.out index 0c73e6fe5..0278f3c67 100644 --- a/test/results/default/targusdataspeed_false_positives.pcap.out +++ b/test/results/default/targusdataspeed_false_positives.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644107 bytes -~~ total memory freed........: 6644107 bytes +~~ total memory allocated....: 6644131 bytes +~~ total memory freed........: 6644131 bytes ~~ total allocations/frees...: 114037/114037 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 592 chars diff --git a/test/results/default/tcp_scan.pcapng.out b/test/results/default/tcp_scan.pcapng.out index fe914f953..29ba015c8 100644 --- a/test/results/default/tcp_scan.pcapng.out +++ b/test/results/default/tcp_scan.pcapng.out @@ -48,8 +48,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6656080 bytes -~~ total memory freed........: 6656080 bytes +~~ total memory allocated....: 6656104 bytes +~~ total memory freed........: 6656104 bytes ~~ total allocations/frees...: 114112/114112 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/teams.pcap.out b/test/results/default/teams.pcap.out index efd00bd4b..fa1a0c6e7 100644 --- a/test/results/default/teams.pcap.out +++ b/test/results/default/teams.pcap.out @@ -688,8 +688,8 @@ ~~ total active/idle flows...: 83/83 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7785756 bytes -~~ total memory freed........: 7785756 bytes +~~ total memory allocated....: 7785780 bytes +~~ total memory freed........: 7785780 bytes ~~ total allocations/frees...: 116829/116829 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 295 chars diff --git a/test/results/default/teamspeak3.pcap.out b/test/results/default/teamspeak3.pcap.out index 12abdea2c..0e9993c7e 100644 --- a/test/results/default/teamspeak3.pcap.out +++ b/test/results/default/teamspeak3.pcap.out @@ -266,8 +266,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6661016 bytes -~~ total memory freed........: 6661016 bytes +~~ total memory allocated....: 6661040 bytes +~~ total memory freed........: 6661040 bytes ~~ total allocations/frees...: 114620/114620 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 524 chars diff --git a/test/results/default/teamviewer.pcap.out b/test/results/default/teamviewer.pcap.out index c8892f95d..f7b4b6dbb 100644 --- a/test/results/default/teamviewer.pcap.out +++ b/test/results/default/teamviewer.pcap.out @@ -29,8 +29,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6654160 bytes -~~ total memory freed........: 6654160 bytes +~~ total memory allocated....: 6654184 bytes +~~ total memory freed........: 6654184 bytes ~~ total allocations/frees...: 114384/114384 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 513 chars diff --git a/test/results/default/telegram.pcap.out b/test/results/default/telegram.pcap.out index ff9fac75f..13a4cfcc9 100644 --- a/test/results/default/telegram.pcap.out +++ b/test/results/default/telegram.pcap.out @@ -346,8 +346,8 @@ ~~ total active/idle flows...: 48/48 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6794542 bytes -~~ total memory freed........: 6794542 bytes +~~ total memory allocated....: 6794566 bytes +~~ total memory freed........: 6794566 bytes ~~ total allocations/frees...: 116093/116093 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 556 chars diff --git a/test/results/default/telegram_videocall.pcapng.out b/test/results/default/telegram_videocall.pcapng.out index d05316eb2..041eca915 100644 --- a/test/results/default/telegram_videocall.pcapng.out +++ b/test/results/default/telegram_videocall.pcapng.out @@ -264,8 +264,8 @@ ~~ total active/idle flows...: 34/34 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6761734 bytes -~~ total memory freed........: 6761734 bytes +~~ total memory allocated....: 6761758 bytes +~~ total memory freed........: 6761758 bytes ~~ total allocations/frees...: 115287/115287 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 543 chars diff --git a/test/results/default/telnet.pcap.out b/test/results/default/telnet.pcap.out index 9b0b30933..eb99e8e89 100644 --- a/test/results/default/telnet.pcap.out +++ b/test/results/default/telnet.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646359 bytes -~~ total memory freed........: 6646359 bytes +~~ total memory allocated....: 6646383 bytes +~~ total memory freed........: 6646383 bytes ~~ total allocations/frees...: 114113/114113 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 543 chars diff --git a/test/results/default/tencent_games.pcap.out b/test/results/default/tencent_games.pcap.out index 4bd3da27a..51095f571 100644 --- a/test/results/default/tencent_games.pcap.out +++ b/test/results/default/tencent_games.pcap.out @@ -43,8 +43,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6657639 bytes -~~ total memory freed........: 6657639 bytes +~~ total memory allocated....: 6657663 bytes +~~ total memory freed........: 6657663 bytes ~~ total allocations/frees...: 114089/114089 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 519 chars diff --git a/test/results/default/teredo.pcap.out b/test/results/default/teredo.pcap.out index 3c93b3493..dde6d2794 100644 --- a/test/results/default/teredo.pcap.out +++ b/test/results/default/teredo.pcap.out @@ -39,8 +39,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6651507 bytes -~~ total memory freed........: 6651507 bytes +~~ total memory allocated....: 6651531 bytes +~~ total memory freed........: 6651531 bytes ~~ total allocations/frees...: 114088/114088 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 567 chars diff --git a/test/results/default/teso.pcapng.out b/test/results/default/teso.pcapng.out index 8208f1da3..8b6264562 100644 --- a/test/results/default/teso.pcapng.out +++ b/test/results/default/teso.pcapng.out @@ -24,8 +24,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648263 bytes -~~ total memory freed........: 6648263 bytes +~~ total memory allocated....: 6648287 bytes +~~ total memory freed........: 6648287 bytes ~~ total allocations/frees...: 114041/114041 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/tftp.pcap.out b/test/results/default/tftp.pcap.out index 6223431da..e3494cd92 100644 --- a/test/results/default/tftp.pcap.out +++ b/test/results/default/tftp.pcap.out @@ -56,8 +56,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 2 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6663169 bytes -~~ total memory freed........: 6663169 bytes +~~ total memory allocated....: 6663193 bytes +~~ total memory freed........: 6663193 bytes ~~ total allocations/frees...: 114218/114218 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 517 chars diff --git a/test/results/default/threema.pcap.out b/test/results/default/threema.pcap.out index 0ca371303..ee94c55c0 100644 --- a/test/results/default/threema.pcap.out +++ b/test/results/default/threema.pcap.out @@ -60,8 +60,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6667798 bytes -~~ total memory freed........: 6667798 bytes +~~ total memory allocated....: 6667822 bytes +~~ total memory freed........: 6667822 bytes ~~ total allocations/frees...: 114164/114164 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 545 chars diff --git a/test/results/default/thrift.pcap.out b/test/results/default/thrift.pcap.out index bb8d4eb88..d45fbb3b6 100644 --- a/test/results/default/thrift.pcap.out +++ b/test/results/default/thrift.pcap.out @@ -24,8 +24,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650971 bytes -~~ total memory freed........: 6650971 bytes +~~ total memory allocated....: 6650995 bytes +~~ total memory freed........: 6650995 bytes ~~ total allocations/frees...: 114204/114204 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 530 chars diff --git a/test/results/default/tinc.pcap.out b/test/results/default/tinc.pcap.out index 010b4dc8d..8e4e0fae5 100644 --- a/test/results/default/tinc.pcap.out +++ b/test/results/default/tinc.pcap.out @@ -43,8 +43,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6662036 bytes -~~ total memory freed........: 6662036 bytes +~~ total memory allocated....: 6662060 bytes +~~ total memory freed........: 6662060 bytes ~~ total allocations/frees...: 114380/114380 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 527 chars diff --git a/test/results/default/tk.pcap.out b/test/results/default/tk.pcap.out index 152258fc7..de8fb7faa 100644 --- a/test/results/default/tk.pcap.out +++ b/test/results/default/tk.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646401 bytes -~~ total memory freed........: 6646401 bytes +~~ total memory allocated....: 6646425 bytes +~~ total memory freed........: 6646425 bytes ~~ total allocations/frees...: 114048/114048 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 547 chars diff --git a/test/results/default/tls-appdata.pcap.out b/test/results/default/tls-appdata.pcap.out index d7ee7cf88..80f55c72e 100644 --- a/test/results/default/tls-appdata.pcap.out +++ b/test/results/default/tls-appdata.pcap.out @@ -33,8 +33,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6688404 bytes -~~ total memory freed........: 6688404 bytes +~~ total memory allocated....: 6688428 bytes +~~ total memory freed........: 6688428 bytes ~~ total allocations/frees...: 114160/114160 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/tls-esni-fuzzed.pcap.out b/test/results/default/tls-esni-fuzzed.pcap.out index 7ccd16900..f27fe3da5 100644 --- a/test/results/default/tls-esni-fuzzed.pcap.out +++ b/test/results/default/tls-esni-fuzzed.pcap.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653786 bytes -~~ total memory freed........: 6653786 bytes +~~ total memory allocated....: 6653810 bytes +~~ total memory freed........: 6653810 bytes ~~ total allocations/frees...: 114058/114058 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 576 chars diff --git a/test/results/default/tls-rdn-extract.pcap.out b/test/results/default/tls-rdn-extract.pcap.out index b0cf59180..e94b6b7e6 100644 --- a/test/results/default/tls-rdn-extract.pcap.out +++ b/test/results/default/tls-rdn-extract.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6685618 bytes -~~ total memory freed........: 6685618 bytes +~~ total memory allocated....: 6685642 bytes +~~ total memory freed........: 6685642 bytes ~~ total allocations/frees...: 114079/114079 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 576 chars diff --git a/test/results/default/tls_2_reasms.pcapng.out b/test/results/default/tls_2_reasms.pcapng.out index 76eac0928..53b16637d 100644 --- a/test/results/default/tls_2_reasms.pcapng.out +++ b/test/results/default/tls_2_reasms.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646186 bytes -~~ total memory freed........: 6646186 bytes +~~ total memory allocated....: 6646210 bytes +~~ total memory freed........: 6646210 bytes ~~ total allocations/frees...: 114038/114038 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/tls_2_reasms_b.pcapng.out b/test/results/default/tls_2_reasms_b.pcapng.out index 0a9eac4ed..4fb1f89fd 100644 --- a/test/results/default/tls_2_reasms_b.pcapng.out +++ b/test/results/default/tls_2_reasms_b.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6682608 bytes -~~ total memory freed........: 6682608 bytes +~~ total memory allocated....: 6682632 bytes +~~ total memory freed........: 6682632 bytes ~~ total allocations/frees...: 114045/114045 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/tls_alert.pcap.out b/test/results/default/tls_alert.pcap.out index a483e03c5..90db66049 100644 --- a/test/results/default/tls_alert.pcap.out +++ b/test/results/default/tls_alert.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650675 bytes -~~ total memory freed........: 6650675 bytes +~~ total memory allocated....: 6650699 bytes +~~ total memory freed........: 6650699 bytes ~~ total allocations/frees...: 114055/114055 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/tls_certificate_too_long.pcap.out b/test/results/default/tls_certificate_too_long.pcap.out index 0eca5eb9f..f9e9feed9 100644 --- a/test/results/default/tls_certificate_too_long.pcap.out +++ b/test/results/default/tls_certificate_too_long.pcap.out @@ -258,8 +258,8 @@ ~~ total active/idle flows...: 35/35 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6848538 bytes -~~ total memory freed........: 6848538 bytes +~~ total memory allocated....: 6848562 bytes +~~ total memory freed........: 6848562 bytes ~~ total allocations/frees...: 114854/114854 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 537 chars diff --git a/test/results/default/tls_cipher_lens.pcap.out b/test/results/default/tls_cipher_lens.pcap.out index a93affbfb..fc0cd2165 100644 --- a/test/results/default/tls_cipher_lens.pcap.out +++ b/test/results/default/tls_cipher_lens.pcap.out @@ -29,8 +29,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6661226 bytes -~~ total memory freed........: 6661226 bytes +~~ total memory allocated....: 6661250 bytes +~~ total memory freed........: 6661250 bytes ~~ total allocations/frees...: 114079/114079 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 576 chars diff --git a/test/results/default/tls_client_certificate_with_missing_server_one.pcapng.out b/test/results/default/tls_client_certificate_with_missing_server_one.pcapng.out index f13d22dc9..97f3a8b42 100644 --- a/test/results/default/tls_client_certificate_with_missing_server_one.pcapng.out +++ b/test/results/default/tls_client_certificate_with_missing_server_one.pcapng.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650691 bytes -~~ total memory freed........: 6650691 bytes +~~ total memory allocated....: 6650715 bytes +~~ total memory freed........: 6650715 bytes ~~ total allocations/frees...: 114057/114057 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 588 chars diff --git a/test/results/default/tls_ech.pcapng.out b/test/results/default/tls_ech.pcapng.out index c79ae5899..417759db3 100644 --- a/test/results/default/tls_ech.pcapng.out +++ b/test/results/default/tls_ech.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648239 bytes -~~ total memory freed........: 6648239 bytes +~~ total memory allocated....: 6648263 bytes +~~ total memory freed........: 6648263 bytes ~~ total allocations/frees...: 114035/114035 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/tls_esni_sni_both.pcap.out b/test/results/default/tls_esni_sni_both.pcap.out index bb199d0b0..42b3a964a 100644 --- a/test/results/default/tls_esni_sni_both.pcap.out +++ b/test/results/default/tls_esni_sni_both.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6667687 bytes -~~ total memory freed........: 6667687 bytes +~~ total memory allocated....: 6667711 bytes +~~ total memory freed........: 6667711 bytes ~~ total allocations/frees...: 114085/114085 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 540 chars diff --git a/test/results/default/tls_false_positives.pcapng.out b/test/results/default/tls_false_positives.pcapng.out index eac86d4b4..36c40c71d 100644 --- a/test/results/default/tls_false_positives.pcapng.out +++ b/test/results/default/tls_false_positives.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644561 bytes -~~ total memory freed........: 6644561 bytes +~~ total memory allocated....: 6644585 bytes +~~ total memory freed........: 6644585 bytes ~~ total allocations/frees...: 114051/114051 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 560 chars diff --git a/test/results/default/tls_invalid_reads.pcap.out b/test/results/default/tls_invalid_reads.pcap.out index 9d391a106..e5c7f4059 100644 --- a/test/results/default/tls_invalid_reads.pcap.out +++ b/test/results/default/tls_invalid_reads.pcap.out @@ -31,8 +31,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6650346 bytes -~~ total memory freed........: 6650346 bytes +~~ total memory allocated....: 6650370 bytes +~~ total memory freed........: 6650370 bytes ~~ total allocations/frees...: 114044/114044 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 311 chars diff --git a/test/results/default/tls_long_cert.pcap.out b/test/results/default/tls_long_cert.pcap.out index 88fd6c509..716fa58e8 100644 --- a/test/results/default/tls_long_cert.pcap.out +++ b/test/results/default/tls_long_cert.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6689810 bytes -~~ total memory freed........: 6689810 bytes +~~ total memory allocated....: 6689834 bytes +~~ total memory freed........: 6689834 bytes ~~ total allocations/frees...: 114266/114266 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 552 chars diff --git a/test/results/default/tls_malicious_sha1.pcapng.out b/test/results/default/tls_malicious_sha1.pcapng.out index bf6da7ca3..7274fca5e 100644 --- a/test/results/default/tls_malicious_sha1.pcapng.out +++ b/test/results/default/tls_malicious_sha1.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653417 bytes -~~ total memory freed........: 6653417 bytes +~~ total memory allocated....: 6653441 bytes +~~ total memory freed........: 6653441 bytes ~~ total allocations/frees...: 114051/114051 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 581 chars diff --git a/test/results/default/tls_missing_ch_frag.pcap.out b/test/results/default/tls_missing_ch_frag.pcap.out index d70f4c6c4..bc4161e08 100644 --- a/test/results/default/tls_missing_ch_frag.pcap.out +++ b/test/results/default/tls_missing_ch_frag.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653928 bytes -~~ total memory freed........: 6653928 bytes +~~ total memory allocated....: 6653952 bytes +~~ total memory freed........: 6653952 bytes ~~ total allocations/frees...: 114039/114039 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 572 chars diff --git a/test/results/default/tls_multiple_synack_different_seq.pcapng.out b/test/results/default/tls_multiple_synack_different_seq.pcapng.out index 7713fdb4c..54d466836 100644 --- a/test/results/default/tls_multiple_synack_different_seq.pcapng.out +++ b/test/results/default/tls_multiple_synack_different_seq.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6661701 bytes -~~ total memory freed........: 6661701 bytes +~~ total memory allocated....: 6661725 bytes +~~ total memory freed........: 6661725 bytes ~~ total allocations/frees...: 114053/114053 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 575 chars diff --git a/test/results/default/tls_port_80.pcapng.out b/test/results/default/tls_port_80.pcapng.out index 23568844a..0f827774d 100644 --- a/test/results/default/tls_port_80.pcapng.out +++ b/test/results/default/tls_port_80.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646174 bytes -~~ total memory freed........: 6646174 bytes +~~ total memory allocated....: 6646198 bytes +~~ total memory freed........: 6646198 bytes ~~ total allocations/frees...: 114038/114038 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 551 chars diff --git a/test/results/default/tls_torrent.pcapng.out b/test/results/default/tls_torrent.pcapng.out index 57bc4f818..af4ea30d5 100644 --- a/test/results/default/tls_torrent.pcapng.out +++ b/test/results/default/tls_torrent.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6658428 bytes -~~ total memory freed........: 6658428 bytes +~~ total memory allocated....: 6658452 bytes +~~ total memory freed........: 6658452 bytes ~~ total allocations/frees...: 114037/114037 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 551 chars diff --git a/test/results/default/tls_unidirectional.pcap.out b/test/results/default/tls_unidirectional.pcap.out index fd090c159..800ee2518 100644 --- a/test/results/default/tls_unidirectional.pcap.out +++ b/test/results/default/tls_unidirectional.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643923 bytes -~~ total memory freed........: 6643923 bytes +~~ total memory allocated....: 6643947 bytes +~~ total memory freed........: 6643947 bytes ~~ total allocations/frees...: 114029/114029 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 556 chars diff --git a/test/results/default/tls_verylong_certificate.pcap.out b/test/results/default/tls_verylong_certificate.pcap.out index 18c4dd3c6..d128c4bd0 100644 --- a/test/results/default/tls_verylong_certificate.pcap.out +++ b/test/results/default/tls_verylong_certificate.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6817371 bytes -~~ total memory freed........: 6817371 bytes +~~ total memory allocated....: 6817395 bytes +~~ total memory freed........: 6817395 bytes ~~ total allocations/frees...: 114207/114207 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 562 chars diff --git a/test/results/default/toca-boca.pcap.out b/test/results/default/toca-boca.pcap.out index be62c79cc..6b99aa1b4 100644 --- a/test/results/default/toca-boca.pcap.out +++ b/test/results/default/toca-boca.pcap.out @@ -124,8 +124,8 @@ ~~ total active/idle flows...: 21/21 ~~ total timeout flows.......: 3 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6689803 bytes -~~ total memory freed........: 6689803 bytes +~~ total memory allocated....: 6689827 bytes +~~ total memory freed........: 6689827 bytes ~~ total allocations/frees...: 114320/114320 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 537 chars diff --git a/test/results/default/tor.pcap.out b/test/results/default/tor.pcap.out index ad6b18fe0..e4f3afc1c 100644 --- a/test/results/default/tor.pcap.out +++ b/test/results/default/tor.pcap.out @@ -172,8 +172,8 @@ ~~ total active/idle flows...: 11/11 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6703754 bytes -~~ total memory freed........: 6703754 bytes +~~ total memory allocated....: 6703778 bytes +~~ total memory freed........: 6703778 bytes ~~ total allocations/frees...: 114514/114514 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 293 chars diff --git a/test/results/default/tplink_shp.pcap.out b/test/results/default/tplink_shp.pcap.out index 425173d8e..bf46d846d 100644 --- a/test/results/default/tplink_shp.pcap.out +++ b/test/results/default/tplink_shp.pcap.out @@ -320,8 +320,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6664742 bytes -~~ total memory freed........: 6664742 bytes +~~ total memory allocated....: 6664766 bytes +~~ total memory freed........: 6664766 bytes ~~ total allocations/frees...: 114340/114340 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 571 chars diff --git a/test/results/default/trdp.pcapng.out b/test/results/default/trdp.pcapng.out index 577e3a8a8..cdcb713a0 100644 --- a/test/results/default/trdp.pcapng.out +++ b/test/results/default/trdp.pcapng.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6646633 bytes -~~ total memory freed........: 6646633 bytes +~~ total memory allocated....: 6646657 bytes +~~ total memory freed........: 6646657 bytes ~~ total allocations/frees...: 114056/114056 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/trickbot.pcap.out b/test/results/default/trickbot.pcap.out index ca4bcb927..3b92bd4a5 100644 --- a/test/results/default/trickbot.pcap.out +++ b/test/results/default/trickbot.pcap.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644030 bytes -~~ total memory freed........: 6644030 bytes +~~ total memory allocated....: 6644054 bytes +~~ total memory freed........: 6644054 bytes ~~ total allocations/frees...: 114102/114102 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 532 chars diff --git a/test/results/default/tumblr.pcap.out b/test/results/default/tumblr.pcap.out index b8fe28a42..4c96680ea 100644 --- a/test/results/default/tumblr.pcap.out +++ b/test/results/default/tumblr.pcap.out @@ -335,8 +335,8 @@ ~~ total active/idle flows...: 47/47 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7274263 bytes -~~ total memory freed........: 7274263 bytes +~~ total memory allocated....: 7274287 bytes +~~ total memory freed........: 7274287 bytes ~~ total allocations/frees...: 115412/115412 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 567 chars diff --git a/test/results/default/tunnelbear.pcap.out b/test/results/default/tunnelbear.pcap.out index fc43f7e88..166ef15ee 100644 --- a/test/results/default/tunnelbear.pcap.out +++ b/test/results/default/tunnelbear.pcap.out @@ -207,8 +207,8 @@ ~~ total active/idle flows...: 22/22 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6823498 bytes -~~ total memory freed........: 6823498 bytes +~~ total memory allocated....: 6823522 bytes +~~ total memory freed........: 6823522 bytes ~~ total allocations/frees...: 114806/114806 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/default/tuya_lp.pcap.out b/test/results/default/tuya_lp.pcap.out index bbebf8119..c0fc8a591 100644 --- a/test/results/default/tuya_lp.pcap.out +++ b/test/results/default/tuya_lp.pcap.out @@ -113,8 +113,8 @@ ~~ total active/idle flows...: 13/13 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6671625 bytes -~~ total memory freed........: 6671625 bytes +~~ total memory allocated....: 6671649 bytes +~~ total memory freed........: 6671649 bytes ~~ total allocations/frees...: 114237/114237 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/ubntac2.pcap.out b/test/results/default/ubntac2.pcap.out index d475e9582..02995bd6f 100644 --- a/test/results/default/ubntac2.pcap.out +++ b/test/results/default/ubntac2.pcap.out @@ -43,8 +43,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6657695 bytes -~~ total memory freed........: 6657695 bytes +~~ total memory allocated....: 6657719 bytes +~~ total memory freed........: 6657719 bytes ~~ total allocations/frees...: 114097/114097 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/uftp_v4_v5.pcap.out b/test/results/default/uftp_v4_v5.pcap.out index 2db0a08d4..fe168cace 100644 --- a/test/results/default/uftp_v4_v5.pcap.out +++ b/test/results/default/uftp_v4_v5.pcap.out @@ -35,8 +35,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653683 bytes -~~ total memory freed........: 6653683 bytes +~~ total memory allocated....: 6653707 bytes +~~ total memory freed........: 6653707 bytes ~~ total allocations/frees...: 114299/114299 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 548 chars diff --git a/test/results/default/ultrasurf.pcap.out b/test/results/default/ultrasurf.pcap.out index 82db5b1d7..73c6459f6 100644 --- a/test/results/default/ultrasurf.pcap.out +++ b/test/results/default/ultrasurf.pcap.out @@ -38,8 +38,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6680899 bytes -~~ total memory freed........: 6680899 bytes +~~ total memory allocated....: 6680923 bytes +~~ total memory freed........: 6680923 bytes ~~ total allocations/frees...: 114393/114393 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 558 chars diff --git a/test/results/default/umas.pcap.out b/test/results/default/umas.pcap.out index cb7e210ea..5ede2be34 100644 --- a/test/results/default/umas.pcap.out +++ b/test/results/default/umas.pcap.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6647182 bytes -~~ total memory freed........: 6647182 bytes +~~ total memory allocated....: 6647206 bytes +~~ total memory freed........: 6647206 bytes ~~ total allocations/frees...: 114211/114211 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 528 chars diff --git a/test/results/default/upnp.pcap.out b/test/results/default/upnp.pcap.out index b3234199d..8c0e129e6 100644 --- a/test/results/default/upnp.pcap.out +++ b/test/results/default/upnp.pcap.out @@ -25,8 +25,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644285 bytes -~~ total memory freed........: 6644285 bytes +~~ total memory allocated....: 6644309 bytes +~~ total memory freed........: 6644309 bytes ~~ total allocations/frees...: 114043/114043 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 565 chars diff --git a/test/results/default/viber.pcap.out b/test/results/default/viber.pcap.out index c73abe5c7..bddcaa018 100644 --- a/test/results/default/viber.pcap.out +++ b/test/results/default/viber.pcap.out @@ -238,8 +238,8 @@ ~~ total active/idle flows...: 30/30 ~~ total timeout flows.......: 3 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6881637 bytes -~~ total memory freed........: 6881637 bytes +~~ total memory allocated....: 6881661 bytes +~~ total memory freed........: 6881661 bytes ~~ total allocations/frees...: 114865/114865 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 537 chars diff --git a/test/results/default/vk.pcapng.out b/test/results/default/vk.pcapng.out index 1e3a097e4..ede1ac12f 100644 --- a/test/results/default/vk.pcapng.out +++ b/test/results/default/vk.pcapng.out @@ -90,8 +90,8 @@ ~~ total active/idle flows...: 10/10 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6709392 bytes -~~ total memory freed........: 6709392 bytes +~~ total memory allocated....: 6709416 bytes +~~ total memory freed........: 6709416 bytes ~~ total allocations/frees...: 115052/115052 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/vnc.pcap.out b/test/results/default/vnc.pcap.out index bda7b0e8f..2eaa638b9 100644 --- a/test/results/default/vnc.pcap.out +++ b/test/results/default/vnc.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6780030 bytes -~~ total memory freed........: 6780030 bytes +~~ total memory allocated....: 6780054 bytes +~~ total memory freed........: 6780054 bytes ~~ total allocations/frees...: 118586/118586 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 533 chars diff --git a/test/results/default/vrrp3.pcapng.out b/test/results/default/vrrp3.pcapng.out index 8c2911c7a..e5d304fc1 100644 --- a/test/results/default/vrrp3.pcapng.out +++ b/test/results/default/vrrp3.pcapng.out @@ -21,8 +21,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644169 bytes -~~ total memory freed........: 6644169 bytes +~~ total memory allocated....: 6644193 bytes +~~ total memory freed........: 6644193 bytes ~~ total allocations/frees...: 114039/114039 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/vxlan.pcap.out b/test/results/default/vxlan.pcap.out index 3085bd762..72362fb03 100644 --- a/test/results/default/vxlan.pcap.out +++ b/test/results/default/vxlan.pcap.out @@ -69,8 +69,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6663662 bytes -~~ total memory freed........: 6663662 bytes +~~ total memory allocated....: 6663686 bytes +~~ total memory freed........: 6663686 bytes ~~ total allocations/frees...: 114235/114235 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/default/wa_video.pcap.out b/test/results/default/wa_video.pcap.out index f03b599cb..0e20ac70b 100644 --- a/test/results/default/wa_video.pcap.out +++ b/test/results/default/wa_video.pcap.out @@ -117,8 +117,8 @@ ~~ total active/idle flows...: 14/14 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6696240 bytes -~~ total memory freed........: 6696240 bytes +~~ total memory allocated....: 6696264 bytes +~~ total memory freed........: 6696264 bytes ~~ total allocations/frees...: 114948/114948 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/wa_voice.pcap.out b/test/results/default/wa_voice.pcap.out index 8792fe175..f5ab18570 100644 --- a/test/results/default/wa_voice.pcap.out +++ b/test/results/default/wa_voice.pcap.out @@ -227,8 +227,8 @@ ~~ total active/idle flows...: 28/28 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6739217 bytes -~~ total memory freed........: 6739217 bytes +~~ total memory allocated....: 6739241 bytes +~~ total memory freed........: 6739241 bytes ~~ total allocations/frees...: 115059/115059 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 524 chars diff --git a/test/results/default/waze.pcap.out b/test/results/default/waze.pcap.out index 1d0268f77..20c21f43d 100644 --- a/test/results/default/waze.pcap.out +++ b/test/results/default/waze.pcap.out @@ -288,8 +288,8 @@ ~~ total active/idle flows...: 33/33 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7024936 bytes -~~ total memory freed........: 7024936 bytes +~~ total memory allocated....: 7024960 bytes +~~ total memory freed........: 7024960 bytes ~~ total allocations/frees...: 115121/115121 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 528 chars diff --git a/test/results/default/webdav.pcap.out b/test/results/default/webdav.pcap.out index 8561b3e77..220076e0a 100644 --- a/test/results/default/webdav.pcap.out +++ b/test/results/default/webdav.pcap.out @@ -81,8 +81,8 @@ ~~ total active/idle flows...: 8/8 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6661088 bytes -~~ total memory freed........: 6661088 bytes +~~ total memory allocated....: 6661112 bytes +~~ total memory freed........: 6661112 bytes ~~ total allocations/frees...: 114229/114229 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 528 chars diff --git a/test/results/default/webex.pcap.out b/test/results/default/webex.pcap.out index d6e6118ec..e577b2867 100644 --- a/test/results/default/webex.pcap.out +++ b/test/results/default/webex.pcap.out @@ -506,8 +506,8 @@ ~~ total active/idle flows...: 57/57 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7179825 bytes -~~ total memory freed........: 7179825 bytes +~~ total memory allocated....: 7179849 bytes +~~ total memory freed........: 7179849 bytes ~~ total allocations/frees...: 116081/116081 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 526 chars diff --git a/test/results/default/websocket.pcap.out b/test/results/default/websocket.pcap.out index bec49024f..ec96c8651 100644 --- a/test/results/default/websocket.pcap.out +++ b/test/results/default/websocket.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643836 bytes -~~ total memory freed........: 6643836 bytes +~~ total memory allocated....: 6643860 bytes +~~ total memory freed........: 6643860 bytes ~~ total allocations/frees...: 114026/114026 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 556 chars diff --git a/test/results/default/wechat.pcap.out b/test/results/default/wechat.pcap.out index 3615a3dff..639a89397 100644 --- a/test/results/default/wechat.pcap.out +++ b/test/results/default/wechat.pcap.out @@ -894,8 +894,8 @@ ~~ total active/idle flows...: 109/109 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7395700 bytes -~~ total memory freed........: 7395700 bytes +~~ total memory allocated....: 7395724 bytes +~~ total memory freed........: 7395724 bytes ~~ total allocations/frees...: 117508/117508 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 526 chars diff --git a/test/results/default/weibo.pcap.out b/test/results/default/weibo.pcap.out index 7523b8778..7de3e056a 100644 --- a/test/results/default/weibo.pcap.out +++ b/test/results/default/weibo.pcap.out @@ -273,8 +273,8 @@ ~~ total active/idle flows...: 44/44 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6759078 bytes -~~ total memory freed........: 6759078 bytes +~~ total memory allocated....: 6759102 bytes +~~ total memory freed........: 6759102 bytes ~~ total allocations/frees...: 115058/115058 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 528 chars diff --git a/test/results/default/whatsapp.pcap.out b/test/results/default/whatsapp.pcap.out index bea77dad4..1a9dfc4ab 100644 --- a/test/results/default/whatsapp.pcap.out +++ b/test/results/default/whatsapp.pcap.out @@ -757,8 +757,8 @@ ~~ total active/idle flows...: 86/86 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7032282 bytes -~~ total memory freed........: 7032282 bytes +~~ total memory allocated....: 7032306 bytes +~~ total memory freed........: 7032306 bytes ~~ total allocations/frees...: 115720/115720 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 546 chars diff --git a/test/results/default/whatsapp_login_call.pcap.out b/test/results/default/whatsapp_login_call.pcap.out index 2cb5e7875..cfa1e0b4d 100644 --- a/test/results/default/whatsapp_login_call.pcap.out +++ b/test/results/default/whatsapp_login_call.pcap.out @@ -503,8 +503,8 @@ ~~ total active/idle flows...: 57/57 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6841488 bytes -~~ total memory freed........: 6841488 bytes +~~ total memory allocated....: 6841512 bytes +~~ total memory freed........: 6841512 bytes ~~ total allocations/frees...: 115920/115920 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/whatsapp_login_chat.pcap.out b/test/results/default/whatsapp_login_chat.pcap.out index ad0f96d18..79522fd5c 100644 --- a/test/results/default/whatsapp_login_chat.pcap.out +++ b/test/results/default/whatsapp_login_chat.pcap.out @@ -67,8 +67,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6670794 bytes -~~ total memory freed........: 6670794 bytes +~~ total memory allocated....: 6670818 bytes +~~ total memory freed........: 6670818 bytes ~~ total allocations/frees...: 114202/114202 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 542 chars diff --git a/test/results/default/whatsapp_voice_and_message.pcap.out b/test/results/default/whatsapp_voice_and_message.pcap.out index 194c7742c..d4ebb6352 100644 --- a/test/results/default/whatsapp_voice_and_message.pcap.out +++ b/test/results/default/whatsapp_voice_and_message.pcap.out @@ -132,8 +132,8 @@ ~~ total active/idle flows...: 13/13 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6686956 bytes -~~ total memory freed........: 6686956 bytes +~~ total memory allocated....: 6686980 bytes +~~ total memory freed........: 6686980 bytes ~~ total allocations/frees...: 114418/114418 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 548 chars diff --git a/test/results/default/whatsappfiles.pcap.out b/test/results/default/whatsappfiles.pcap.out index 4409820ab..2d865fa98 100644 --- a/test/results/default/whatsappfiles.pcap.out +++ b/test/results/default/whatsappfiles.pcap.out @@ -30,8 +30,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6676562 bytes -~~ total memory freed........: 6676562 bytes +~~ total memory allocated....: 6676586 bytes +~~ total memory freed........: 6676586 bytes ~~ total allocations/frees...: 114669/114669 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 551 chars diff --git a/test/results/default/whois.pcapng.out b/test/results/default/whois.pcapng.out index a43117ae8..71b2eb06c 100644 --- a/test/results/default/whois.pcapng.out +++ b/test/results/default/whois.pcapng.out @@ -36,8 +36,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6653175 bytes -~~ total memory freed........: 6653175 bytes +~~ total memory allocated....: 6653199 bytes +~~ total memory freed........: 6653199 bytes ~~ total allocations/frees...: 114075/114075 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/windowsupdate_over_http.pcap.out b/test/results/default/windowsupdate_over_http.pcap.out index 2394bfffa..9b53c8432 100644 --- a/test/results/default/windowsupdate_over_http.pcap.out +++ b/test/results/default/windowsupdate_over_http.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6643125 bytes -~~ total memory freed........: 6643125 bytes +~~ total memory allocated....: 6643149 bytes +~~ total memory freed........: 6643149 bytes ~~ total allocations/frees...: 114056/114056 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 521 chars diff --git a/test/results/default/windscribe.pcapng.out b/test/results/default/windscribe.pcapng.out index 0f6164a38..99d614075 100644 --- a/test/results/default/windscribe.pcapng.out +++ b/test/results/default/windscribe.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652783 bytes -~~ total memory freed........: 6652783 bytes +~~ total memory allocated....: 6652807 bytes +~~ total memory freed........: 6652807 bytes ~~ total allocations/frees...: 114055/114055 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 550 chars diff --git a/test/results/default/wireguard.pcap.out b/test/results/default/wireguard.pcap.out index 5ae5d0fa4..7a44dff48 100644 --- a/test/results/default/wireguard.pcap.out +++ b/test/results/default/wireguard.pcap.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645510 bytes -~~ total memory freed........: 6645510 bytes +~~ total memory allocated....: 6645534 bytes +~~ total memory freed........: 6645534 bytes ~~ total allocations/frees...: 114085/114085 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 570 chars diff --git a/test/results/default/wow.pcap.out b/test/results/default/wow.pcap.out index 52e45709c..8779b4a38 100644 --- a/test/results/default/wow.pcap.out +++ b/test/results/default/wow.pcap.out @@ -51,8 +51,8 @@ ~~ total active/idle flows...: 5/5 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6659929 bytes -~~ total memory freed........: 6659929 bytes +~~ total memory allocated....: 6659953 bytes +~~ total memory freed........: 6659953 bytes ~~ total allocations/frees...: 114171/114171 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 526 chars diff --git a/test/results/default/xdmcp.pcap.out b/test/results/default/xdmcp.pcap.out index d1415e5c1..f0c69e92a 100644 --- a/test/results/default/xdmcp.pcap.out +++ b/test/results/default/xdmcp.pcap.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641817 bytes -~~ total memory freed........: 6641817 bytes +~~ total memory allocated....: 6641841 bytes +~~ total memory freed........: 6641841 bytes ~~ total allocations/frees...: 114026/114026 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 536 chars diff --git a/test/results/default/xiaomi.pcap.out b/test/results/default/xiaomi.pcap.out index 9366b27b4..3aac9a7f7 100644 --- a/test/results/default/xiaomi.pcap.out +++ b/test/results/default/xiaomi.pcap.out @@ -64,8 +64,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6670012 bytes -~~ total memory freed........: 6670012 bytes +~~ total memory allocated....: 6670036 bytes +~~ total memory freed........: 6670036 bytes ~~ total allocations/frees...: 114166/114166 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/xss.pcap.out b/test/results/default/xss.pcap.out index 0ef2ca037..34a696c4b 100644 --- a/test/results/default/xss.pcap.out +++ b/test/results/default/xss.pcap.out @@ -23,8 +23,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6644615 bytes -~~ total memory freed........: 6644615 bytes +~~ total memory allocated....: 6644639 bytes +~~ total memory freed........: 6644639 bytes ~~ total allocations/frees...: 114050/114050 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 541 chars diff --git a/test/results/default/yandex.pcapng.out b/test/results/default/yandex.pcapng.out index 29203a46e..974381323 100644 --- a/test/results/default/yandex.pcapng.out +++ b/test/results/default/yandex.pcapng.out @@ -90,8 +90,8 @@ ~~ total active/idle flows...: 9/9 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6757891 bytes -~~ total memory freed........: 6757891 bytes +~~ total memory allocated....: 6757915 bytes +~~ total memory freed........: 6757915 bytes ~~ total allocations/frees...: 114335/114335 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 547 chars diff --git a/test/results/default/yojimbo.pcap.out b/test/results/default/yojimbo.pcap.out index 0a2554fd0..8ddd08aed 100644 --- a/test/results/default/yojimbo.pcap.out +++ b/test/results/default/yojimbo.pcap.out @@ -13,8 +13,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641672 bytes -~~ total memory freed........: 6641672 bytes +~~ total memory allocated....: 6641696 bytes +~~ total memory freed........: 6641696 bytes ~~ total allocations/frees...: 114021/114021 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 568 chars diff --git a/test/results/default/youtube_quic.pcap.out b/test/results/default/youtube_quic.pcap.out index 174235c10..c2e232a12 100644 --- a/test/results/default/youtube_quic.pcap.out +++ b/test/results/default/youtube_quic.pcap.out @@ -34,8 +34,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6654752 bytes -~~ total memory freed........: 6654752 bytes +~~ total memory allocated....: 6654776 bytes +~~ total memory freed........: 6654776 bytes ~~ total allocations/frees...: 114334/114334 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 561 chars diff --git a/test/results/default/youtubeupload.pcap.out b/test/results/default/youtubeupload.pcap.out index 9acd40a46..9740bac1b 100644 --- a/test/results/default/youtubeupload.pcap.out +++ b/test/results/default/youtubeupload.pcap.out @@ -36,8 +36,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6662659 bytes -~~ total memory freed........: 6662659 bytes +~~ total memory allocated....: 6662683 bytes +~~ total memory freed........: 6662683 bytes ~~ total allocations/frees...: 114202/114202 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 537 chars diff --git a/test/results/default/z3950.pcapng.out b/test/results/default/z3950.pcapng.out index 0f453f194..21ee1b427 100644 --- a/test/results/default/z3950.pcapng.out +++ b/test/results/default/z3950.pcapng.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649075 bytes -~~ total memory freed........: 6649075 bytes +~~ total memory allocated....: 6649099 bytes +~~ total memory freed........: 6649099 bytes ~~ total allocations/frees...: 114069/114069 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 529 chars diff --git a/test/results/default/zabbix.pcap.out b/test/results/default/zabbix.pcap.out index 69e1913c4..91e318253 100644 --- a/test/results/default/zabbix.pcap.out +++ b/test/results/default/zabbix.pcap.out @@ -202,8 +202,8 @@ ~~ total active/idle flows...: 24/24 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6701203 bytes -~~ total memory freed........: 6701203 bytes +~~ total memory allocated....: 6701227 bytes +~~ total memory freed........: 6701227 bytes ~~ total allocations/frees...: 114509/114509 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 544 chars diff --git a/test/results/default/zattoo.pcap.out b/test/results/default/zattoo.pcap.out index c0ecb7d65..5f3d768f3 100644 --- a/test/results/default/zattoo.pcap.out +++ b/test/results/default/zattoo.pcap.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6649352 bytes -~~ total memory freed........: 6649352 bytes +~~ total memory allocated....: 6649376 bytes +~~ total memory freed........: 6649376 bytes ~~ total allocations/frees...: 114074/114074 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 537 chars diff --git a/test/results/default/zoom.pcap.out b/test/results/default/zoom.pcap.out index b84a47513..3ac348318 100644 --- a/test/results/default/zoom.pcap.out +++ b/test/results/default/zoom.pcap.out @@ -323,8 +323,8 @@ ~~ total active/idle flows...: 33/33 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6970650 bytes -~~ total memory freed........: 6970650 bytes +~~ total memory allocated....: 6970674 bytes +~~ total memory freed........: 6970674 bytes ~~ total allocations/frees...: 115171/115171 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 298 chars diff --git a/test/results/default/zoom2.pcap.out b/test/results/default/zoom2.pcap.out index 81e60cfce..d520ce572 100644 --- a/test/results/default/zoom2.pcap.out +++ b/test/results/default/zoom2.pcap.out @@ -52,8 +52,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6669650 bytes -~~ total memory freed........: 6669650 bytes +~~ total memory allocated....: 6669674 bytes +~~ total memory freed........: 6669674 bytes ~~ total allocations/frees...: 114407/114407 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/default/zoom_p2p.pcapng.out b/test/results/default/zoom_p2p.pcapng.out index 9378dbe41..b12a67a85 100644 --- a/test/results/default/zoom_p2p.pcapng.out +++ b/test/results/default/zoom_p2p.pcapng.out @@ -140,8 +140,8 @@ ~~ total active/idle flows...: 13/13 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6691332 bytes -~~ total memory freed........: 6691332 bytes +~~ total memory allocated....: 6691356 bytes +~~ total memory freed........: 6691356 bytes ~~ total allocations/frees...: 114917/114917 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 571 chars diff --git a/test/results/default/zug.pcap.out b/test/results/default/zug.pcap.out index 57a9fccae..a164193e8 100644 --- a/test/results/default/zug.pcap.out +++ b/test/results/default/zug.pcap.out @@ -42,8 +42,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6655636 bytes -~~ total memory freed........: 6655636 bytes +~~ total memory allocated....: 6655660 bytes +~~ total memory freed........: 6655660 bytes ~~ total allocations/frees...: 114094/114094 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 564 chars diff --git a/test/results/disable_aggressiveness/ookla.pcap.out b/test/results/disable_aggressiveness/ookla.pcap.out index dabf1f449..515257e09 100644 --- a/test/results/disable_aggressiveness/ookla.pcap.out +++ b/test/results/disable_aggressiveness/ookla.pcap.out @@ -61,8 +61,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6673819 bytes -~~ total memory freed........: 6673819 bytes +~~ total memory allocated....: 6673843 bytes +~~ total memory freed........: 6673843 bytes ~~ total allocations/frees...: 114207/114207 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/disable_metadata/tls_verylong_certificate.pcap.out b/test/results/disable_metadata/tls_verylong_certificate.pcap.out index 528f69ef2..33cbae9ca 100644 --- a/test/results/disable_metadata/tls_verylong_certificate.pcap.out +++ b/test/results/disable_metadata/tls_verylong_certificate.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6817371 bytes -~~ total memory freed........: 6817371 bytes +~~ total memory allocated....: 6817395 bytes +~~ total memory freed........: 6817395 bytes ~~ total allocations/frees...: 114207/114207 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 571 chars diff --git a/test/results/disable_protocols/dns_long_domainname.pcap.out b/test/results/disable_protocols/dns_long_domainname.pcap.out index c6acee15b..fdcbf0cb4 100644 --- a/test/results/disable_protocols/dns_long_domainname.pcap.out +++ b/test/results/disable_protocols/dns_long_domainname.pcap.out @@ -15,8 +15,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641725 bytes -~~ total memory freed........: 6641725 bytes +~~ total memory allocated....: 6641749 bytes +~~ total memory freed........: 6641749 bytes ~~ total allocations/frees...: 114023/114023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 590 chars diff --git a/test/results/disable_protocols/pluralsight.pcap.out b/test/results/disable_protocols/pluralsight.pcap.out index bba0c00ff..4711c5bd9 100644 --- a/test/results/disable_protocols/pluralsight.pcap.out +++ b/test/results/disable_protocols/pluralsight.pcap.out @@ -65,8 +65,8 @@ ~~ total active/idle flows...: 6/6 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6712725 bytes -~~ total memory freed........: 6712725 bytes +~~ total memory allocated....: 6712749 bytes +~~ total memory freed........: 6712749 bytes ~~ total allocations/frees...: 114175/114175 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 563 chars diff --git a/test/results/disable_protocols/quic-mvfst-27.pcapng.out b/test/results/disable_protocols/quic-mvfst-27.pcapng.out index 46c8f2fe0..1ff2db664 100644 --- a/test/results/disable_protocols/quic-mvfst-27.pcapng.out +++ b/test/results/disable_protocols/quic-mvfst-27.pcapng.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652334 bytes -~~ total memory freed........: 6652334 bytes +~~ total memory allocated....: 6652358 bytes +~~ total memory freed........: 6652358 bytes ~~ total allocations/frees...: 114061/114061 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 586 chars diff --git a/test/results/disable_protocols/soap.pcap.out b/test/results/disable_protocols/soap.pcap.out index 3a31c4e0c..9ff6b304d 100644 --- a/test/results/disable_protocols/soap.pcap.out +++ b/test/results/disable_protocols/soap.pcap.out @@ -30,8 +30,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 1 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6651103 bytes -~~ total memory freed........: 6651103 bytes +~~ total memory allocated....: 6651127 bytes +~~ total memory freed........: 6651127 bytes ~~ total allocations/frees...: 114072/114072 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 549 chars diff --git a/test/results/dns_process_response_disable/dns.pcap.out b/test/results/dns_process_response_disable/dns.pcap.out index 5160a71a1..08aeec543 100644 --- a/test/results/dns_process_response_disable/dns.pcap.out +++ b/test/results/dns_process_response_disable/dns.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641730 bytes -~~ total memory freed........: 6641730 bytes +~~ total memory allocated....: 6641754 bytes +~~ total memory freed........: 6641754 bytes ~~ total allocations/frees...: 114023/114023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 317 chars diff --git a/test/results/dns_subclassification_and_process_response_disable/dns.pcap.out b/test/results/dns_subclassification_and_process_response_disable/dns.pcap.out index 13fc6b9f8..82602d332 100644 --- a/test/results/dns_subclassification_and_process_response_disable/dns.pcap.out +++ b/test/results/dns_subclassification_and_process_response_disable/dns.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641730 bytes -~~ total memory freed........: 6641730 bytes +~~ total memory allocated....: 6641754 bytes +~~ total memory freed........: 6641754 bytes ~~ total allocations/frees...: 114023/114023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 339 chars diff --git a/test/results/enable_doh_heuristic/doh.pcapng.out b/test/results/enable_doh_heuristic/doh.pcapng.out index 06a2cc3e0..d99069517 100644 --- a/test/results/enable_doh_heuristic/doh.pcapng.out +++ b/test/results/enable_doh_heuristic/doh.pcapng.out @@ -19,8 +19,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6655085 bytes -~~ total memory freed........: 6655085 bytes +~~ total memory allocated....: 6655109 bytes +~~ total memory freed........: 6655109 bytes ~~ total allocations/frees...: 114148/114148 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 548 chars diff --git a/test/results/enable_payload_stat/1kxun.pcap.out b/test/results/enable_payload_stat/1kxun.pcap.out index 91e645a29..2cf54dcb2 100644 --- a/test/results/enable_payload_stat/1kxun.pcap.out +++ b/test/results/enable_payload_stat/1kxun.pcap.out @@ -1309,8 +1309,8 @@ ~~ total active/idle flows...: 197/197 ~~ total timeout flows.......: 20 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7221685 bytes -~~ total memory freed........: 7221685 bytes +~~ total memory allocated....: 7221709 bytes +~~ total memory freed........: 7221709 bytes ~~ total allocations/frees...: 118676/118676 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 541 chars diff --git a/test/results/flow_risk_lists_disable/protonvpn.pcap.out b/test/results/flow_risk_lists_disable/protonvpn.pcap.out index 7c7458490..03b8a6fc0 100644 --- a/test/results/flow_risk_lists_disable/protonvpn.pcap.out +++ b/test/results/flow_risk_lists_disable/protonvpn.pcap.out @@ -31,8 +31,8 @@ ~~ total active/idle flows...: 3/3 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 4428656 bytes -~~ total memory freed........: 4428656 bytes +~~ total memory allocated....: 4428680 bytes +~~ total memory freed........: 4428680 bytes ~~ total allocations/frees...: 68640/68640 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 526 chars diff --git a/test/results/fpc_disabled/teams.pcap.out b/test/results/fpc_disabled/teams.pcap.out index dcd5fa289..383794415 100644 --- a/test/results/fpc_disabled/teams.pcap.out +++ b/test/results/fpc_disabled/teams.pcap.out @@ -688,8 +688,8 @@ ~~ total active/idle flows...: 83/83 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7785756 bytes -~~ total memory freed........: 7785756 bytes +~~ total memory allocated....: 7785780 bytes +~~ total memory freed........: 7785780 bytes ~~ total allocations/frees...: 116829/116829 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 300 chars diff --git a/test/results/guessing_disable/webex.pcap.out b/test/results/guessing_disable/webex.pcap.out index 6c350bb82..f97e20fdc 100644 --- a/test/results/guessing_disable/webex.pcap.out +++ b/test/results/guessing_disable/webex.pcap.out @@ -506,8 +506,8 @@ ~~ total active/idle flows...: 57/57 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7179825 bytes -~~ total memory freed........: 7179825 bytes +~~ total memory allocated....: 7179849 bytes +~~ total memory freed........: 7179849 bytes ~~ total allocations/frees...: 116081/116081 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 535 chars diff --git a/test/results/http_process_response_disable/http.pcapng.out b/test/results/http_process_response_disable/http.pcapng.out index b1a2fb543..11ce20179 100644 --- a/test/results/http_process_response_disable/http.pcapng.out +++ b/test/results/http_process_response_disable/http.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641971 bytes -~~ total memory freed........: 6641971 bytes +~~ total memory allocated....: 6641995 bytes +~~ total memory freed........: 6641995 bytes ~~ total allocations/frees...: 114034/114034 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 567 chars diff --git a/test/results/http_process_response_disable/http_asymmetric.pcapng.out b/test/results/http_process_response_disable/http_asymmetric.pcapng.out index 75ae04d3c..f132dd4fd 100644 --- a/test/results/http_process_response_disable/http_asymmetric.pcapng.out +++ b/test/results/http_process_response_disable/http_asymmetric.pcapng.out @@ -26,8 +26,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645256 bytes -~~ total memory freed........: 6645256 bytes +~~ total memory allocated....: 6645280 bytes +~~ total memory freed........: 6645280 bytes ~~ total allocations/frees...: 114074/114074 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 561 chars diff --git a/test/results/ip_lists_disable/1kxun.pcap.out b/test/results/ip_lists_disable/1kxun.pcap.out index b8bc8a00f..4b072c7ed 100644 --- a/test/results/ip_lists_disable/1kxun.pcap.out +++ b/test/results/ip_lists_disable/1kxun.pcap.out @@ -1309,8 +1309,8 @@ ~~ total active/idle flows...: 197/197 ~~ total timeout flows.......: 20 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7221685 bytes -~~ total memory freed........: 7221685 bytes +~~ total memory allocated....: 7221709 bytes +~~ total memory freed........: 7221709 bytes ~~ total allocations/frees...: 118676/118676 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 538 chars diff --git a/test/results/packets_limit_per_flow/tls_verylong_certificate.pcap.out b/test/results/packets_limit_per_flow/tls_verylong_certificate.pcap.out index 0649f902a..a12910866 100644 --- a/test/results/packets_limit_per_flow/tls_verylong_certificate.pcap.out +++ b/test/results/packets_limit_per_flow/tls_verylong_certificate.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6817371 bytes -~~ total memory freed........: 6817371 bytes +~~ total memory allocated....: 6817395 bytes +~~ total memory freed........: 6817395 bytes ~~ total allocations/frees...: 114207/114207 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 577 chars diff --git a/test/results/stun_all_attributes_disabled/teams.pcap.out b/test/results/stun_all_attributes_disabled/teams.pcap.out index 2c62c6876..ad5e42820 100644 --- a/test/results/stun_all_attributes_disabled/teams.pcap.out +++ b/test/results/stun_all_attributes_disabled/teams.pcap.out @@ -688,8 +688,8 @@ ~~ total active/idle flows...: 83/83 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 7785756 bytes -~~ total memory freed........: 7785756 bytes +~~ total memory allocated....: 7785780 bytes +~~ total memory freed........: 7785780 bytes ~~ total allocations/frees...: 116829/116829 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 316 chars diff --git a/test/results/stun_extra_dissection/lru_ipv6_caches.pcapng.out b/test/results/stun_extra_dissection/lru_ipv6_caches.pcapng.out index 218ff6c94..1d85c806c 100644 --- a/test/results/stun_extra_dissection/lru_ipv6_caches.pcapng.out +++ b/test/results/stun_extra_dissection/lru_ipv6_caches.pcapng.out @@ -95,8 +95,8 @@ ~~ total active/idle flows...: 12/12 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6684384 bytes -~~ total memory freed........: 6684384 bytes +~~ total memory allocated....: 6684408 bytes +~~ total memory freed........: 6684408 bytes ~~ total allocations/frees...: 114261/114261 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 592 chars diff --git a/test/results/stun_extra_dissection/stun_dtls_rtp.pcapng.out b/test/results/stun_extra_dissection/stun_dtls_rtp.pcapng.out index fac70964a..09fb155cd 100644 --- a/test/results/stun_extra_dissection/stun_dtls_rtp.pcapng.out +++ b/test/results/stun_extra_dissection/stun_dtls_rtp.pcapng.out @@ -31,8 +31,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648965 bytes -~~ total memory freed........: 6648965 bytes +~~ total memory allocated....: 6648989 bytes +~~ total memory freed........: 6648989 bytes ~~ total allocations/frees...: 114136/114136 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 552 chars diff --git a/test/results/stun_extra_dissection/stun_dtls_rtp_unidir.pcapng.out b/test/results/stun_extra_dissection/stun_dtls_rtp_unidir.pcapng.out index 5a5bf8099..22325632a 100644 --- a/test/results/stun_extra_dissection/stun_dtls_rtp_unidir.pcapng.out +++ b/test/results/stun_extra_dissection/stun_dtls_rtp_unidir.pcapng.out @@ -27,8 +27,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6645238 bytes -~~ total memory freed........: 6645238 bytes +~~ total memory allocated....: 6645262 bytes +~~ total memory freed........: 6645262 bytes ~~ total allocations/frees...: 114076/114076 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 591 chars diff --git a/test/results/stun_extra_dissection/stun_zoom.pcapng.out b/test/results/stun_extra_dissection/stun_zoom.pcapng.out index f04c948de..ccc0def0a 100644 --- a/test/results/stun_extra_dissection/stun_zoom.pcapng.out +++ b/test/results/stun_extra_dissection/stun_zoom.pcapng.out @@ -34,8 +34,8 @@ ~~ total active/idle flows...: 2/2 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6657264 bytes -~~ total memory freed........: 6657264 bytes +~~ total memory allocated....: 6657288 bytes +~~ total memory freed........: 6657288 bytes ~~ total allocations/frees...: 114112/114112 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 586 chars diff --git a/test/results/stun_only_peer_address_enabled/stun_wa_call.pcapng.out b/test/results/stun_only_peer_address_enabled/stun_wa_call.pcapng.out index 81dd87756..e1754dc7d 100644 --- a/test/results/stun_only_peer_address_enabled/stun_wa_call.pcapng.out +++ b/test/results/stun_only_peer_address_enabled/stun_wa_call.pcapng.out @@ -138,8 +138,8 @@ ~~ total active/idle flows...: 13/13 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6686623 bytes -~~ total memory freed........: 6686623 bytes +~~ total memory allocated....: 6686647 bytes +~~ total memory freed........: 6686647 bytes ~~ total allocations/frees...: 114755/114755 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 598 chars diff --git a/test/results/stun_only_peer_address_enabled/telegram_videocall.pcapng.out b/test/results/stun_only_peer_address_enabled/telegram_videocall.pcapng.out index f7ac23540..02159f983 100644 --- a/test/results/stun_only_peer_address_enabled/telegram_videocall.pcapng.out +++ b/test/results/stun_only_peer_address_enabled/telegram_videocall.pcapng.out @@ -264,8 +264,8 @@ ~~ total active/idle flows...: 34/34 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6761734 bytes -~~ total memory freed........: 6761734 bytes +~~ total memory allocated....: 6761758 bytes +~~ total memory freed........: 6761758 bytes ~~ total allocations/frees...: 115287/115287 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 566 chars diff --git a/test/results/subclassification_disable/anydesk.pcapng.out b/test/results/subclassification_disable/anydesk.pcapng.out index 9e1798fc1..cf59106e2 100644 --- a/test/results/subclassification_disable/anydesk.pcapng.out +++ b/test/results/subclassification_disable/anydesk.pcapng.out @@ -72,8 +72,8 @@ ~~ total active/idle flows...: 7/7 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6704443 bytes -~~ total memory freed........: 6704443 bytes +~~ total memory allocated....: 6704467 bytes +~~ total memory freed........: 6704467 bytes ~~ total allocations/frees...: 114299/114299 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 550 chars diff --git a/test/results/subclassification_disable/dns.pcap.out b/test/results/subclassification_disable/dns.pcap.out index 7cb714de5..b984dc9bf 100644 --- a/test/results/subclassification_disable/dns.pcap.out +++ b/test/results/subclassification_disable/dns.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641730 bytes -~~ total memory freed........: 6641730 bytes +~~ total memory allocated....: 6641754 bytes +~~ total memory freed........: 6641754 bytes ~~ total allocations/frees...: 114023/114023 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 314 chars diff --git a/test/results/subclassification_disable/http.pcapng.out b/test/results/subclassification_disable/http.pcapng.out index e9af1717e..5657ad6ed 100644 --- a/test/results/subclassification_disable/http.pcapng.out +++ b/test/results/subclassification_disable/http.pcapng.out @@ -17,8 +17,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6641971 bytes -~~ total memory freed........: 6641971 bytes +~~ total memory allocated....: 6641995 bytes +~~ total memory freed........: 6641995 bytes ~~ total allocations/frees...: 114034/114034 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 563 chars diff --git a/test/results/subclassification_disable/quic-mvfst-27.pcapng.out b/test/results/subclassification_disable/quic-mvfst-27.pcapng.out index 67f366744..1c3502c72 100644 --- a/test/results/subclassification_disable/quic-mvfst-27.pcapng.out +++ b/test/results/subclassification_disable/quic-mvfst-27.pcapng.out @@ -16,8 +16,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6652334 bytes -~~ total memory freed........: 6652334 bytes +~~ total memory allocated....: 6652358 bytes +~~ total memory freed........: 6652358 bytes ~~ total allocations/frees...: 114061/114061 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 594 chars diff --git a/test/results/subclassification_disable/tls_ech.pcapng.out b/test/results/subclassification_disable/tls_ech.pcapng.out index 726bcfe23..b22d59c63 100644 --- a/test/results/subclassification_disable/tls_ech.pcapng.out +++ b/test/results/subclassification_disable/tls_ech.pcapng.out @@ -18,8 +18,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6648239 bytes -~~ total memory freed........: 6648239 bytes +~~ total memory allocated....: 6648263 bytes +~~ total memory freed........: 6648263 bytes ~~ total allocations/frees...: 114035/114035 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 588 chars diff --git a/test/results/tls_ja3c_disabled/tls_verylong_certificate.pcap.out b/test/results/tls_ja3c_disabled/tls_verylong_certificate.pcap.out index 49dde32e6..d6a99f69a 100644 --- a/test/results/tls_ja3c_disabled/tls_verylong_certificate.pcap.out +++ b/test/results/tls_ja3c_disabled/tls_verylong_certificate.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6817371 bytes -~~ total memory freed........: 6817371 bytes +~~ total memory allocated....: 6817395 bytes +~~ total memory freed........: 6817395 bytes ~~ total allocations/frees...: 114207/114207 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 572 chars diff --git a/test/results/tls_ja3s_disabled/tls_verylong_certificate.pcap.out b/test/results/tls_ja3s_disabled/tls_verylong_certificate.pcap.out index 09fa0ab22..b899b4710 100644 --- a/test/results/tls_ja3s_disabled/tls_verylong_certificate.pcap.out +++ b/test/results/tls_ja3s_disabled/tls_verylong_certificate.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6817371 bytes -~~ total memory freed........: 6817371 bytes +~~ total memory allocated....: 6817395 bytes +~~ total memory freed........: 6817395 bytes ~~ total allocations/frees...: 114207/114207 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 572 chars diff --git a/test/results/tls_ja4c_disabled/tls_verylong_certificate.pcap.out b/test/results/tls_ja4c_disabled/tls_verylong_certificate.pcap.out index 34339f170..015595f98 100644 --- a/test/results/tls_ja4c_disabled/tls_verylong_certificate.pcap.out +++ b/test/results/tls_ja4c_disabled/tls_verylong_certificate.pcap.out @@ -20,8 +20,8 @@ ~~ total active/idle flows...: 1/1 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6817371 bytes -~~ total memory freed........: 6817371 bytes +~~ total memory allocated....: 6817395 bytes +~~ total memory freed........: 6817395 bytes ~~ total allocations/frees...: 114207/114207 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 572 chars diff --git a/test/results/zoom_extra_dissection/zoom.pcap.out b/test/results/zoom_extra_dissection/zoom.pcap.out index 95a4d0590..4b2bb9b21 100644 --- a/test/results/zoom_extra_dissection/zoom.pcap.out +++ b/test/results/zoom_extra_dissection/zoom.pcap.out @@ -323,8 +323,8 @@ ~~ total active/idle flows...: 33/33 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6970650 bytes -~~ total memory freed........: 6970650 bytes +~~ total memory allocated....: 6970674 bytes +~~ total memory freed........: 6970674 bytes ~~ total allocations/frees...: 115171/115171 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 312 chars diff --git a/test/results/zoom_extra_dissection/zoom2.pcap.out b/test/results/zoom_extra_dissection/zoom2.pcap.out index cef1eec87..3c9487339 100644 --- a/test/results/zoom_extra_dissection/zoom2.pcap.out +++ b/test/results/zoom_extra_dissection/zoom2.pcap.out @@ -52,8 +52,8 @@ ~~ total active/idle flows...: 4/4 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6669650 bytes -~~ total memory freed........: 6669650 bytes +~~ total memory allocated....: 6669674 bytes +~~ total memory freed........: 6669674 bytes ~~ total allocations/frees...: 114407/114407 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 549 chars diff --git a/test/results/zoom_extra_dissection/zoom_p2p.pcapng.out b/test/results/zoom_extra_dissection/zoom_p2p.pcapng.out index bac42d631..49f5461c0 100644 --- a/test/results/zoom_extra_dissection/zoom_p2p.pcapng.out +++ b/test/results/zoom_extra_dissection/zoom_p2p.pcapng.out @@ -140,8 +140,8 @@ ~~ total active/idle flows...: 13/13 ~~ total timeout flows.......: 0 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -~~ total memory allocated....: 6691332 bytes -~~ total memory freed........: 6691332 bytes +~~ total memory allocated....: 6691356 bytes +~~ total memory freed........: 6691356 bytes ~~ total allocations/frees...: 114917/114917 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~ json message min len.......: 585 chars |