blob: 6c9a4ec9b3e3199065a961fca81f6e1127fe2cb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh -xe
txtout="../../plugins/txtout/.libs/txtout.so"
rm -f test7.out test7.layer.out
for what in dnso1tcp.pcap-dist 1qtcpnosyn.pcap-dist do1t-nosyn-1nolen.pcap-dist dnso1tcp-midmiss.pcap-dist; do
../dnscap -r "$what" -g -T 2>>test7.out
../dnscap -r "$what" -g -T -o use_layers=yes 2>>test7.layer.out
if [ -f "$txtout" ]; then
../dnscap -r "$what" -T -P "$txtout" >>test7.out
../dnscap -r "$what" -T -o use_layers=yes -P "$txtout" >>test7.layer.out
fi
done
echo "" >>test7.out
echo "Enabling parse_ongoing_tcp and allow_reset_tcpstate" >>test7.out
echo "" >>test7.out
echo "" >>test7.layer.out
echo "Enabling parse_ongoing_tcp and allow_reset_tcpstate" >>test7.layer.out
echo "" >>test7.layer.out
for what in dnso1tcp.pcap-dist 1qtcpnosyn.pcap-dist do1t-nosyn-1nolen.pcap-dist dnso1tcp-midmiss.pcap-dist; do
../dnscap -r "$what" -g -T -o parse_ongoing_tcp=yes -o allow_reset_tcpstate=yes 2>>test7.out
../dnscap -r "$what" -g -T -o parse_ongoing_tcp=yes -o allow_reset_tcpstate=yes -o use_layers=yes 2>>test7.layer.out
if [ -f "$txtout" ]; then
../dnscap -r "$what" -T -o parse_ongoing_tcp=yes -o allow_reset_tcpstate=yes -P "$txtout" >>test7.out
../dnscap -r "$what" -T -o parse_ongoing_tcp=yes -o allow_reset_tcpstate=yes -o use_layers=yes -P "$txtout" >>test7.layer.out
fi
done
diff test7.out "$srcdir/test7.gold"
diff test7.layer.out "$srcdir/test7.gold"
|