ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
April 17th, 2024 | 14:30-16:00 SGT (UTC+8) | Online

Wireshark-commits: [Wireshark-commits] rev 31229: /trunk/epan/dissectors/ /trunk/epan/dissectors/:

Date: Thu, 10 Dec 2009 22:35:11 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=31229

User: sfisher
Date: 2009/12/10 02:35 PM

Log:
 Generated fields should not highlight any bytes in the packet bytes pane.
 This is especially true in this case because the indication that an arp
 packet is gratuitous is determined with the following code, which checks
 multiple fields:
 
   if (((ar_op == ARPOP_REQUEST) || (ar_op == ARPOP_REPLY)) && (memcmp(spa_val, tpa_val, ar_pln) == 0))
     is_gratuitous = TRUE;
   else
     is_gratuitous = FALSE;

Directory: /trunk/epan/dissectors/
  Changes    Path            Action
  +1 -1      packet-arp.c    Modified