mirror of
https://github.com/the-tcpdump-group/tcpdump.git
synced 2024-12-12 03:13:29 +08:00
13 lines
182 B
Bash
13 lines
182 B
Bash
#!/bin/sh
|
|
|
|
uudecode isakmp-pointer-loop.puu
|
|
|
|
echo -n test isakmp2...
|
|
if (../tcpdump -t -n -r isakmp-pointer-loop.pcap | diff - isakmp2.out)
|
|
then
|
|
echo passed.
|
|
else
|
|
echo failed.
|
|
fi
|
|
|