ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Wireshark-bugs: [Wireshark-bugs] [Bug 12236] TCP.RST color rule always true on sparc

Date: Tue, 15 Mar 2016 10:20:39 +0000

Comment # 3 on bug 12236 from
This can be easily reproduced with tshark (sparc):
--------------------------------------------------

$ tshark -r ~/mytest.dat | wc -l
37

$ tshark -r ~/mytest.dat -Y 'tcp.flags.reset eq 1' | wc -l
34

$ tshark -r ~/mytest.dat -Y 'tcp.flags.reset eq 0' | wc -l
34

While on intel everything works:
--------------------------------

$ tshark -r ~/mytest.dat -Y 'tcp.flags.reset eq 1' | wc -l
0

$ tshark -r ~/mytest.dat -Y 'tcp.flags.reset eq 0' | wc -l
34


And it's not problem of just 'reset' bit or 'tcp.flags':
--------------------------------------------------------------

(intel:)

$ tshark -r ~/mytest.dat -Y 'ip.flags.mf == 0'  | wc -l
34

$ tshark -r ~/mytest.dat -Y 'ip.flags.mf == 1'  | wc -l
0

(sparc:)

$ tshark -r ~/mytest.dat -Y 'ip.flags.mf == 0'  | wc -l
34

$ tshark -r ~/mytest.dat -Y 'ip.flags.mf == 1'  | wc -l
34


You are receiving this mail because:
  • You are watching all bug changes.