Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pcapng fix/v9 #562

Merged
merged 2 commits into from Oct 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 6 additions & 5 deletions pcapng-check.sh
@@ -1,12 +1,13 @@
#!/bin/bash

set -x
#set -x

PCAPNG=$(find tests/ -type f|xargs -L1 file|grep 'pcap-ng capture file')
PCAPNGCNT=$(echo -n $PCAPNG | wc -l)
PCAPNGCNT=$(find tests/ -type f|xargs -L1 file|grep -E "(pcap\-ng|pcapng) capture file"|wc -l)
if [ $PCAPNGCNT -ne 0 ]; then
echo "pcap-ng tests found"
echo $PCAPNG
echo "$PCAPNGCNT pcap-ng files found:"
echo
find tests/ -type f|xargs -L1 file|grep -E "(pcap\-ng|pcapng) capture file"
echo
echo "PCAP-NG files are currently not allowed for tests due to not "
echo "all platforms supporting it at this time. Please convert the "
echo "pcap file(s) to regular pcap format: "
Expand Down
Binary file modified tests/bug-2646-01/input.pcap
Binary file not shown.
Binary file modified tests/bug-2646-02/input.pcap
Binary file not shown.
Binary file modified tests/detect-dotprefix-03/input.pcap
Binary file not shown.
Binary file modified tests/dns-udp-eve-log-srv/input.pcap
Binary file not shown.
Binary file removed tests/dns-udp-null/dns-tunnel-iodine.pcap
Binary file not shown.
Binary file added tests/dns-udp-null/input.pcap
Binary file not shown.
Binary file modified tests/http2-bugfixes/input.pcap
Binary file not shown.
Binary file modified tests/output-eve-ftp-data/input.pcap
Binary file not shown.
Binary file modified tests/tcp-protodetect-bailout/input.pcap
Binary file not shown.