I'm trying to understand the following;
When trying tcpdump -n 'tcp[13] & 16 !=0' | wc -l
on a file, I get a different result (27833) than when I try tcpdump -n 'tcp[tcpflags] == tcp-ack' | wc -l
(16433) on that same file.
I was hoping someone could explain me the difference.