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 42672: /trunk-1.6/ /trunk-1.6/epan/dissectors/: packet-m

Date: Wed, 16 May 2012 23:57:15 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=42672

User: gerald
Date: 2012/05/16 04:57 PM

Log:
 Copy over revisions from the trunk:
 
   ------------------------------------------------------------------------
   r42123 | alagoutte | 2012-04-18 00:22:12 -0700 (Wed, 18 Apr 2012) | 14 lines
   Changed paths:
      M /trunk/wiretap/wtap.h
 
   From Colus Tang via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7134
   Unable to display the correct IEEE802.11 MCS data rates due to header definition
 
   The problem is due to the ieee_802_11_phdr.data_rate is defined as guint8,
   since this variable is counting number of 0.5Mbps units, any datarates which is
   higher than 255Mbps would get wrapped up.  In the above example, only the lower
   8bit value will be put into the ieee_802_11_phdr which is 0x04 and result in
   the incorrect 2Mbps display.
 
   There are 802.11n WLAN product is capable to transmit @450Mbps, we should fix
   this data_rate from guint8 to guint16.
 
   #BACKPORT
   ------------------------------------------------------------------------
   r42144 | guy | 2012-04-19 16:19:10 -0700 (Thu, 19 Apr 2012) | 2 lines
   Changed paths:
      M /trunk/wiretap/csids.c
 
   Don't byte-swap bytes that aren't there.
   ------------------------------------------------------------------------
   r42388 | cmaynard | 2012-05-02 13:37:59 -0700 (Wed, 02 May 2012) | 4 lines
   Changed paths:
      M /trunk/epan/dissectors/packet-radius.c
 
   Properly decrypt user-password according to http://tools.ietf.org/html/rfc2865#section-5.2
   This fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6779
   #BACKPORT
   ------------------------------------------------------------------------
 
 Copy over with manual intervention:
 
   ------------------------------------------------------------------------
   r42258 | etxrab | 2012-04-26 06:22:40 -0700 (Thu, 26 Apr 2012) | 4 lines
   Changed paths:
      M /trunk/epan/dissectors/packet-megaco.c
 
   From Bodo Petermann:
   Megaco parser problem with LF in header.
 
   https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7198
   ------------------------------------------------------------------------
   r42437 | pascal | 2012-05-04 21:57:40 -0700 (Fri, 04 May 2012) | 4 lines
   Changed paths:
      M /trunk/plugins/opcua/opcua_simpletypes.c
 
   From Nhi Nguyen:
   OPC UA bytestring node id decoding is wrong
   https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7226
   ------------------------------------------------------------------------
 
 
 Update the release notes.

Directory: /trunk-1.6/epan/dissectors/
  Changes    Path               Action
  +27 -16    packet-megaco.c    Modified
  +43 -37    packet-radius.c    Modified

Directory: /trunk-1.6/docbook/
  Changes    Path                 Action
  +31 -2     release-notes.xml    Modified

Directory: /trunk-1.6/plugins/opcua/
  Changes    Path                   Action
  +2 -2      opcua_simpletypes.c    Modified

Directory: /trunk-1.6/wiretap/
  Changes    Path          Action
  +16 -6     csids.c       Modified
  +1 -1      wtap.h        Modified