summaryrefslogtreecommitdiff
path: root/net/wireshark/patches
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2006-11-01 12:59:42 +0000
committertron <tron@pkgsrc.org>2006-11-01 12:59:42 +0000
commitc9991878a0a20b54af77f0dba290698a7d205477 (patch)
tree45702c8e4649de0bef80ee44c868090f18ca513d /net/wireshark/patches
parentde1182d7167257e8cc5ec4f62e29f8df17a26715 (diff)
downloadpkgsrc-c9991878a0a20b54af77f0dba290698a7d205477.tar.gz
Update "wireshark" package to version 0.99.4.
Changes since version 0.99.3: - Bug fixes o The HTTP dissector could crash. (Bugs 1050 and 1079) Versions affected: 0.99.3. CVE-2006-5468 o The LDAP dissector (and possibly others) could crash. (Bug 1054) Versions affected: 0.99.3. o The XOT dissector could attempt to allocate a large amount of memory and crash. (Bug 1133) Versions affected: 0.9.8 to 0.99.3. CVE-2006-4805 o The WBXML dissector could crash. (Bug 1134) Versions affected: 0.10.11 to 0.99.3. CVE-2006-5469 o The MIME Multipart dissector was susceptible to an off-by-one error. (Bug 1135) Versions affected: 0.10.1 to 0.99.3. CVE-2006-4574 o If AirPcap support was enabled, parsing a WEP key could sometimes cause a crash. Versions affected: 0.99.3. o The file set dialog could grow excessively large. (Bug 331) o Trying to save flow data may crash Wireshark. (Bug 396) o The personal hosts configuration file wasn't being parsed correctly. (Bug 795) o "Save as" to an existing file wasn't allowed. (Bug 927) o The SNMP dissector was not handling 64-bit counters properly. (Bug 1047) o The HTTP content-length field was a string instead of an integer. (Bug 1109) o Invalid characters could show up in PDML output. (Bug 1110) - New and Updated Features o AirPcap, support (which provides raw mode capture under Windows) has been enhanced to allow capturing on multiple AirPcap adapters simultaneously using the Multi-Channel Aggregator. o VoIP call playback has been enhanced. If Wireshark is linked with the PortAudio library, you can play back G.711 conversations. o The capture interface dialog display has been enhanced. o The "Save" button has been removed from the "Ok" / "Apply" / "Cancel" button group in the following dialogs: o Edit/Preferences o View/Coloring Rules o Capture/Capture Filters o Analyze/Display Filters o Analyze/Enabled Protocols If you're fond of the "Save" button it can be resurrected in the User Interface preferences. o Expert analysis has been improved. o Wireshark now supports USB as a media type. If you're running a Linux distribution with version 2.6.11 of the kernel or greater and you have the usbmon module enabled and you have a recent CVS version of libpcap (post-0.9.5) installed you can also do live captures. More details can be found at the USB capture setup page on the wiki. o The number of WEP keys that the user can specify in the IEEE 802.11 protocol preferences has been increased from 4 to 64. - New Protocol Support Enea LINX, Ethernet Powerlink (v1 and v2), H.248 Q.1950 Annex A, Linux pktgen, MP2T, NEWMAIL, PNG, SCSI OSD, UDLD, UMTS FP, USB, WLCCP, WZCSVC - Updated Protocol Support 3Com NJACK, 802.11, ACSE, AH, ALCAP, ANSI MAP, ATM, ASN.1, BACapp, BER, BGP, BSSAP, Camel, Catapult DCT2000, CFlow, CLNP, Common Windows networking, DAP, DCERPC (DCERPC, ATSVC, DFS, EFS, EPM, EVENTLOG, INITSHUTDOWN, MAPI, NT, PIPE, SAMR, SPOOLSS, SRVSVC, SVCCTL, WINREG), DCOM (DCOM, CBA-ACCO, SYSACT), DIAMETER, DISP, DNS, DOP, DSP, ESP, Ethernet, FC, FCP, GSM A, GSM MAP, GSM SMS, GSSAPI, GTP, H.225, H.245, H.248, HTTP, ICQ, IKE, ISAKMP, iSCSI, ISUP, IUUP, Kerberos 4, LAP-D, LDAP, LLC, LogotypeCertExtn, MEGACO, MIME Multipart, MIP6, MMS, MSRP, MTP3, NCP, NDMP, NDPS, NFS, NTP, OSI, PER, PN-MRP, PPP, 19154Q.931, RADIUS, Redback, RPC, RTCP, RTP, SCCP, SCSI, SDP, SIP, SMB, SMRSE, SNMP, SSL, STANAG 5066, STP, TCAP, TCP, TFTP, TIPC, UDP, UMA, VLAN, VNC, VRRP, X.509ce X11, YMSG, WTLS - Removed Protocols The CISCOWL dissector has been superseded by WLCCP. - New and Updated Capture File Support Catapult DCT2000, EyeSDN, iSeries
Diffstat (limited to 'net/wireshark/patches')
-rw-r--r--net/wireshark/patches/patch-aa24
1 files changed, 11 insertions, 13 deletions
diff --git a/net/wireshark/patches/patch-aa b/net/wireshark/patches/patch-aa
index 67e2b0d4521..535dba276c5 100644
--- a/net/wireshark/patches/patch-aa
+++ b/net/wireshark/patches/patch-aa
@@ -1,22 +1,20 @@
-$NetBSD: patch-aa,v 1.3 2006/08/24 10:48:59 tron Exp $
+$NetBSD: patch-aa,v 1.4 2006/11/01 12:59:42 tron Exp $
---- epan/dissectors/packet-radiotap.c.orig 2006-08-23 23:26:24.000000000 +0100
-+++ epan/dissectors/packet-radiotap.c 2006-08-24 10:19:28.000000000 +0100
-@@ -397,7 +397,12 @@
+--- epan/dissectors/packet-radiotap.c.orig 2006-10-31 17:59:09.000000000 +0000
++++ epan/dissectors/packet-radiotap.c 2006-11-01 11:44:20.000000000 +0000
+@@ -531,6 +531,11 @@
guint8 db, rflags;
guint32 present, next_present;
int bit;
-- gboolean has_fcs = FALSE;
-+ gboolean has_fcs = FALSE;
+ gint8 align;
+#define RTALIGN(size) \
-+ align = ((offset + ((size) - 1)) & ~((size) - 1)) - offset; \
-+ offset += align; \
-+ length_remaining -= align
++ align = ((offset + ((size) - 1)) & ~((size) - 1)) - offset; \
++ offset += align; \
++ length_remaining -= align
if(check_col(pinfo->cinfo, COL_PROTOCOL))
col_set_str(pinfo->cinfo, COL_PROTOCOL, "WLAN");
-@@ -569,6 +574,7 @@
+@@ -745,6 +750,7 @@
length_remaining--;
break;
case IEEE80211_RADIOTAP_CHANNEL:
@@ -24,7 +22,7 @@ $NetBSD: patch-aa,v 1.3 2006/08/24 10:48:59 tron Exp $
if (length_remaining < 4)
break;
if (tree) {
-@@ -586,6 +592,7 @@
+@@ -762,6 +768,7 @@
case IEEE80211_RADIOTAP_FHSS:
case IEEE80211_RADIOTAP_TX_ATTENUATION:
case IEEE80211_RADIOTAP_DB_TX_ATTENUATION:
@@ -32,7 +30,7 @@ $NetBSD: patch-aa,v 1.3 2006/08/24 10:48:59 tron Exp $
if (length_remaining < 2)
break;
#if 0
-@@ -595,6 +602,9 @@
+@@ -771,6 +778,9 @@
length_remaining-=2;
break;
case IEEE80211_RADIOTAP_TSFT:
@@ -42,7 +40,7 @@ $NetBSD: patch-aa,v 1.3 2006/08/24 10:48:59 tron Exp $
if (length_remaining < 8)
break;
if (tree) {
-@@ -605,6 +615,7 @@
+@@ -781,6 +791,7 @@
length_remaining-=8;
break;
case IEEE80211_RADIOTAP_LOCK_QUALITY: