Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-commits: [Wireshark-commits] rev 40249: /trunk-1.4/ /trunk-1.4/epan/dissectors/: packet-b

Date: Tue, 20 Dec 2011 15:43:44 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=40249

User: jake
Date: 2011/12/20 07:43 AM

Log:
 ------------------------------------------------------------------------
 r39961 | cmaynard | 2011-11-20 16:47:14 +0100 (Sun, 20 Nov 2011) | 3 lines
 
 Fix bug 6561: IPv4 UDP/TCP Checksum incorrect if routing header present.
 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6561
 
 ------------------------------------------------------------------------
 r39963 | cmaynard | 2011-11-21 03:01:59 +0100 (Mon, 21 Nov 2011) | 2 lines
 
 Fix potential infinite loop introduced with r39961 and find by the buildbot.  
 Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6599
 
 ------------------------------------------------------------------------
 r39986 | cmaynard | 2011-11-22 16:18:20 +0100 (Tue, 22 Nov 2011) | 2 lines
 
 For now, display the protocol in hexadecimal again so displaying it in decimal 
 doesn't get backported to the 1.6 and 1.4 trunks at the request of Joerg.
 
 ------------------------------------------------------------------------
 r40075 | guy | 2011-12-03 04:01:08 +0100 (Sat, 03 Dec 2011) | 6 lines
 
 The TCP Packet Mood Option was a cute April 1 RFC, but TCP option 25 is
 officially listed as "Unassigned", and people might use it for their own
 purposes (and, in fact, one bug-submitter was doing so; they probably
 should have used 253 or 254, but...).  Get rid of the code to dissect
 it.
 
 ------------------------------------------------------------------------
 r40076 | cmaynard | 2011-12-03 05:07:20 +0100 (Sat, 03 Dec 2011) | 2 lines
 
 If a type 2 Mobile IP routing header is present, only set pinfo->dst if seg_left
 is non-zero.  Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6560
 
 ------------------------------------------------------------------------
 r40097 | guy | 2011-12-06 02:57:52 +0100 (Tue, 06 Dec 2011) | 10 lines
 
 If capture_get_if_capabilities() fails, pop up a message, just as we
 print a message in tshark.  That doesn't fix the problem seen on Linux
 distributions, such as recent versions of Debian and derivatives, that
 have libpcap 1.1.0 or later built without libnl, where the monitor mode
 checkbox doesn't work - that's a libpcap bug, fixed in the 1.2 branch
 and trunk, so a future 1.2.1 or 1.3.0 release should fix it, and perhaps
 a future Debian release will build libpcap with libnl - but at least it
 means you get a dialog box rather than just getting mysterious behavior
 when you try to check the "monitor mode" checkbox.
 
 ------------------------------------------------------------------------
 r40099 | guy | 2011-12-06 05:02:22 +0100 (Tue, 06 Dec 2011) | 7 lines
 
 Add a blank line between the error message and the "try using airmon-ng"
 suggestion. 
 
 Fix typo.
 
 Clean up indentation.
 
 ------------------------------------------------------------------------
 r40130 | jake | 2011-12-09 17:34:02 +0100 (Fri, 09 Dec 2011) | 3 lines
 
 From astramax57:
 After r38723, some BGP AS_PATH packets were no longer dissected.
 
 ------------------------------------------------------------------------
 r40133 | alagoutte | 2011-12-09 18:00:28 +0100 (Fri, 09 Dec 2011) | 8 lines
 
 From report of Arasch Honarbacht via 
 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6649
 ZigBee ZCL Dissector reports invalid status
 
 The status code 0x8d contained in an attriute status record in a configure 
 reporting response frame is incorrectly displayed as "Write only" 
 (where WRITE_ONLY = 0x8f). According to the ZigBee Cluster Library Specification,
 Document 075123r03ZB, April 26, 2010 a status of 0x8d should display as 
 "INVALID_DATA_TYPE"
 
 From me :
 Fix this issue (Wrong value define) based on Specs available in ZigBee.org
 
 ------------------------------------------------------------------------
 r40138 | guy | 2011-12-09 22:15:48 +0100 (Fri, 09 Dec 2011) | 7 lines
 
 Referring to pcap_version[] doesn't do what you want on at least some
 UN*Xes (Fedora 16 and probably other Linux distributions, probably at
 least some if not all other ELF-based systems, and perhaps also Mac OS
 X), and causes problems if pcap_version[] has a different length in the
 libpcap with which the executable was built and the libpcap with which
 it's run, so we avoid using it for now.
 
 ------------------------------------------------------------------------
 r40153 | cmaynard | 2011-12-12 00:43:03 +0100 (Mon, 12 Dec 2011) | 2 lines
 
 If the object to export doesn't have a filename, use a generic "object" name 
 instead.  This fixes the crash reported in 
 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6250
 
 ------------------------------------------------------------------------
 r40154 | cmaynard | 2011-12-12 01:27:32 +0100 (Mon, 12 Dec 2011) | 2 lines
 
 If no filename, include the packet number in the generic name.  
 TODO: Implement the ct2ext() function.
 
 ------------------------------------------------------------------------
 r40155 | cmaynard | 2011-12-12 01:35:51 +0100 (Mon, 12 Dec 2011) | 2 lines
 
 Well, until someone has the time to write ct2ext(), just return the content 
 type, which is better than nothing.
 
 ------------------------------------------------------------------------
 r40158 | jake | 2011-12-12 08:56:45 +0100 (Mon, 12 Dec 2011) | 3 lines
 
 Allow for true error reporing.
 Move the comment to where it's intended.
 
 ------------------------------------------------------------------------
 r40162 | cmaynard | 2011-12-12 20:24:49 +0100 (Mon, 12 Dec 2011) | 2 lines
 
 Add missing </field> for data tree.  
 Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=3809
 
 ------------------------------------------------------------------------
 r40184 | cmaynard | 2011-12-13 21:07:21 +0100 (Tue, 13 Dec 2011) | 2 lines
 
 Don't close the field tag here; it's now closed with </field>.
 
 ------------------------------------------------------------------------

Directory: /trunk-1.4/epan/dissectors/
  Changes    Path                 Action
  +2 -2      packet-bgp.c         Modified
  +119 -19   packet-ip.c          Modified
  +2 -1      packet-ipv6.c        Modified
  +0 -58     packet-tcp.c         Modified
  +2 -3      packet-zbee-zcl.c    Modified
  +15 -16    packet-zbee-zcl.h    Modified

Directory: /trunk-1.4/gtk/
  Changes    Path               Action
  +44 -1     capture_dlg.c      Modified
  +25 -6     export_object.c    Modified

Directory: /trunk-1.4/tools/
  Changes    Path            Action
  +18 -18    win-setup.sh    Modified

Directory: /trunk-1.4/
  Changes    Path                        Action
  +0 -18     acinclude.m4                Modified
  +20 -6     capture-pcap-util-unix.c    Modified


(1 file not shown)