Build 1.99.6.

Change-Id: I8db40aea6c208d0badfc7d178b642328264e6c10
Reviewed-on: https://code.wireshark.org/review/8676
Reviewed-by: Gerald Combs <gerald@wireshark.org>
This commit is contained in:
Gerald Combs 2015-05-28 11:47:31 -07:00
parent c532bdc7ea
commit 51bdf499dc
4 changed files with 9869 additions and 74 deletions

9885
ChangeLog

File diff suppressed because it is too large Load Diff

46
NEWS
View File

@ -1,4 +1,4 @@
Wireshark 1.99.5 Release Notes Wireshark 1.99.6 Release Notes
This is an experimental release intended to test new features for This is an experimental release intended to test new features for
Wireshark 2.0. Wireshark 2.0.
@ -14,6 +14,17 @@ What's New
New and Updated Features New and Updated Features
The following features are new (or have been significantly updated)
since version 1.99.4 and 1.99.5:
* Qt port:
+ Capture restarts are now supported.
+ Menu items for plugins are now supported.
+ Extcap interfaces are now supported.
+ The Expert Information dialog has been added.
+ Display and capture filter completion is now supported.
+ Many bugs have been fixed.
+ Translations have been updated.
The following features are new (or have been significantly updated) The following features are new (or have been significantly updated)
since version 1.99.3: since version 1.99.3:
* Qt port: * Qt port:
@ -101,20 +112,22 @@ What's New
New Protocol Support New Protocol Support
(LISP) TCP Control Message, AllJoyn Reliable Datagram Protocol, Android (LISP) TCP Control Message, AllJoyn Reliable Datagram Protocol, Android
ADB, Android Logcat text, BGP Monitoring Prototol (BMP), ceph, ADB, Android Logcat text, Apache Tribes Heartbeat, BGP Monitoring
Prototol (BMP), C15 Call History Protocol dissection (C15ch), ceph,
corosync/totemnet corosync cluster engine ( lowest corosync/totemnet corosync cluster engine ( lowest
levelencryption/decryption protocol), corosync/totemsrp corosync levelencryption/decryption protocol), corosync/totemsrp corosync
cluster engine ( totem single ring protocol), Couchbase, CP "Cooper" cluster engine ( totem single ring protocol), Couchbase, CP "Cooper"
2179, DJI UAV Drone Control Protocol, Dynamic Source Routing (RFC 2179, DJI UAV Drone Control Protocol, Dynamic Source Routing (RFC
4728), Elasticsearch, ETSI Card Application Toolkit - Transport 4728), Elasticsearch, ETSI Card Application Toolkit - Transport
Protocol, Generic Network Virtualization Encapsulation (Geneve), GVSP Protocol, Generic Network Virtualization Encapsulation (Geneve),
GigE Vision (TM) Streaming Protocol, HCrt, HiQnet, IPMI Trace, iSER, Geospatial and Imagery Access Service (GIAS), GVSP GigE Vision (TM)
KNXnetIP, MACsec Key Agreement - EAPoL-MKA, MCPE (Minecraft Pocket Streaming Protocol, HCrt, HiQnet, IP Detail Record (IPDR), IPMI Trace,
Edition), OptoMMP, QNEX6 (QNET), RakNet games library, Remote Shared iSER, KNXnetIP, MACsec Key Agreement - EAPoL-MKA, MCPE (Minecraft
Virtual Disk - RSVD, Riemann, S7 Communication, Secure Socket Tunnel Pocket Edition), OCFS2, OptoMMP, QNEX6 (QNET), RakNet games library,
Protocol (SSTP), Shared Memory Communications - RDMA, Stateless Remote Shared Virtual Disk - RSVD, Riemann, S7 Communication, Secure
Transport Tunneling, Video Services over IP (VSIP), and ZVT Socket Tunnel Protocol (SSTP), Shared Memory Communications - RDMA,
Kassenschnittstelle Stateless Transport Tunneling, Thrift, Video Services over IP (VSIP),
and ZVT Kassenschnittstelle
Updated Protocol Support Updated Protocol Support
@ -122,8 +135,14 @@ What's New
New and Updated Capture File Support New and Updated Capture File Support
Android Logcat text files, Colasoft Capsa files, and Wireshark now 3GPP Nettrace TS 34 423, Android Logcat text files, Colasoft Capsa
supports nanosecond timestamp resolution in PCAP-NG files. files, Netscaler 3.5, and Wireshark now supports nanosecond timestamp
resolution in PCAP-NG files.
New and Updated Capture Interfaces support
and Androiddump - provide interfaces to capture (Logcat and Bluetooth)
from connected Android devices
Major API Changes Major API Changes
@ -133,6 +152,7 @@ What's New
now fully mature. now fully mature.
* The (long-since-broken) Python bindings support has been removed. * The (long-since-broken) Python bindings support has been removed.
If you want to write dissectors in something other than C, use Lua. If you want to write dissectors in something other than C, use Lua.
* Plugins can now create GUI menu items.
__________________________________________________________________ __________________________________________________________________
Getting Wireshark Getting Wireshark
@ -202,7 +222,7 @@ Frequently Asked Questions
A complete FAQ is available on the [19]Wireshark web site. A complete FAQ is available on the [19]Wireshark web site.
__________________________________________________________________ __________________________________________________________________
Last updated 2015-03-19 16:38:42 UTC Last updated 2015-05-28 18:47:50 UTC
References References

View File

@ -30,8 +30,8 @@ since version 1.99.4 and 1.99.5:
** Menu items for plugins are now supported. ** Menu items for plugins are now supported.
** Extcap interfaces are now supported. ** Extcap interfaces are now supported.
** The Expert Information dialog has been added. ** The Expert Information dialog has been added.
** Display filter completion is now supported. ** Display and capture filter completion is now supported.
** Several interface bugs have been fixed. ** Many bugs have been fixed.
** Translations have been updated. ** Translations have been updated.
The following features are new (or have been significantly updated) The following features are new (or have been significantly updated)

View File

@ -91,12 +91,12 @@ my %version_pref = (
"format" => "git %Y%m%d%H%M%S", "format" => "git %Y%m%d%H%M%S",
# Normal development builds # Normal development builds
"pkg_enable" => 1, #"pkg_enable" => 1,
"pkg_format" => "-%#", #"pkg_format" => "-%#",
# Development releases # Development releases
#"pkg_enable" => 0, "pkg_enable" => 0,
#"pkg_format" => "", "pkg_format" => "",
); );
my $srcdir = "."; my $srcdir = ".";
my $info_cmd = ""; my $info_cmd = "";