From 59b00b00a72a2f393be03f1e8fcfc07c8b90187b Mon Sep 17 00:00:00 2001 From: Toni Date: Sun, 3 Jul 2022 11:16:52 +0200 Subject: Fix byte-order issue during ndpiReader tcp/udp src/dst port serialization. Fixes #1608. (#1614) * fixed possible memory leak caused by an invalid call to `node_proto_guess_walker()` during serialization * execute serialization code while running regression tests Signed-off-by: Toni Uhlig --- tests/do.sh.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/do.sh.in b/tests/do.sh.in index 63d2fa591..ba16045a0 100755 --- a/tests/do.sh.in +++ b/tests/do.sh.in @@ -45,7 +45,7 @@ build_results() { #echo $f # create result files if not present if [ ! -f result/$f.out ]; then - CMD="$READER -q -t -i pcap/$f -w result/$f.out -v 2" + CMD="$READER -q -K JSON -k /dev/null -t -i pcap/$f -w result/$f.out -v 2" $CMD fi done @@ -73,7 +73,7 @@ check_results() { fi if [ -f result/$f.out ]; then - CMD="$READER -q -t -i pcap/$f -w /tmp/reader.out -v 2" + CMD="$READER -q -K JSON -k /dev/null -t -i pcap/$f -w /tmp/reader.out -v 2" $CMD CMD_RET=$? if [ $CMD_RET -eq 0 ]; then -- cgit v1.2.3