aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2008-02-03From Shane Kearns (bug 2237):stig15-4/+530
Added support for Symbian OS btsnoop. The bluetooth HCI layer in Symbian OS can be configured to log all packets to a file. The log format, "btsnoop" is based on the RFC1761 "snoop" format - but differences in the header make it incompatible. The btsnoop format supports logging of these formats: "H1" (raw HCI packets without framing) "H4" (HCI UART packets including packet type header) "H5" (HCI 3 wire UART packets including framing) "BCSP" (HCI bluecore serial protocol including framing) "H1" and "H4" are section numbers in the original v1 bluetooth specifications, but still used colloquially - wireshark's existing support for Linux bluez HCI logs uses the "H4" name. In practice, the "H1" format is used for H5,BCSP and USB HCI logs, as the HCI packet logs are mainly useful for debugging higher layers, bluetooth profiles and bluetooth applications. From me: Deleted some unused prototypes. Mark an unused parameter. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24263 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03From Shane Kearns (bug 2239):stig1-12/+103
L2CAP dissector is missing retransmission & flow control modes (these were introduces in BT 1.2 specification) Configuration commands were not fully decoded because of a bigend/littleend issue L2CAP commands had the wrong length set to the protocol tree by reading from the wrong buffer offset Also the dissect_options() function consumes all remaining data in the L2CAP packet, which prevents decoding of other commands which follow a config request/config response in the same packet. From me: Mark an unused parameter. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24262 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03Add #include <math.h>stig1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24261 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03snprintf -> g_snprintfstig1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24260 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03Ups, fix a typo from last checkin.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24259 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03More rewrite of prohibited APIs (sprintf, strcpy, strcat).stig30-86/+55
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24258 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03Removed C++ style comments.stig1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24257 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03Update asn1 files to 3GPP TS 25.433 V7.7.0 (2007-12)etxrab8-3365/+5578
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24256 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03Give it an RCS ID.guy1-0/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24255 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03One more missing file from Balint Reczey's patch for bug 2233.guy1-0/+158
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24254 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03Add the missing files from Balint Reczey's patch for bug 2233.guy2-0/+641
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24253 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03From Balint Reczey (bug 2233):sake5-550/+38
The attached patch makes the Statistics -> RTP -> Show All Streams feature of wireshark accessible via tshark. I found it helpful in dealing with tons of RTP captures. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24252 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03Get rid of some warnings.etxrab2-27/+23
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24251 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-03Update asn1 files to GPP TS 25.413 V7.8.0 (2008-01).etxrab8-94/+121
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24250 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-02Rewrote some prohibited APIs in epan/dissectors/ (sprintf, strcpy, strcat).stig24-174/+188
If we get some truncated strings we probably overwrote some buffers... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24249 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-02Fixed a possible buffer overflow in dissect_fmp_flushCmd() when cmd hasstig1-9/+10
all bits set. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24248 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-02Rewrote strcat -> strncat, and fixed to show more than the last remainingstig1-3/+4
Cmd_Argv value for Remote Command. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24247 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-02From Peter Kjellerstedt:jake1-7/+9
I was capturing an RTP stream the other day which contained JPEG images streamed according to RFC 2435. However, Wireshark reported them as malformed. After some debugging of the Wireshark code it turned out that the decoding of JPEG images which contain a quantization table was incorrect. I have attached a patch to correct the decoding. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24246 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-02From Alan McBride:jake1-2/+21
The decoding of a SubscribeCOVProperty packet is not properly decoding the Monitored Property Identifier field. It leaves a number of decoded bytes at the end as data. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24245 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-02Fix for bug 2202, when an ethernet frame with padding is encountered, thesake1-1/+1
reported length is 46, so there was a one-off error in the code. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24244 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-01Disallow ending space was not such a good idea, chop it of before save instead.stig1-13/+24
Also disallow '/' in profilename for !win32. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24243 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-01Fixed a problem with renaming a profile after hitting apply.stig1-0/+27
Profile name cannot start or end with space, and on win32 it cannot contain any of this characters: \ / : * ? " < > | Added a tooltip to the profile name text box. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24242 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-01Added tooltip description for yellow filter background.stig2-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24241 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-01Updated various misleading examples.jake1-12/+12
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24240 f5534014-38df-0310-8fa8-9805f1628bb7
2008-02-01Rewrote some prohibited APIs in gtk/ (sprintf, strcpy, strcat).stig20-81/+88
If we get some truncated strings we probably overwrote some buffers... git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24239 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-31Hmmm. Second try to fix the const problems.stig3-5/+13
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24238 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-31Removed a const to make it compile.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24237 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-31Split out the Gmb application AVP:s to at least make it simpler to handle theetxrab1-0/+1
AVP "collision". http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1494 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24236 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-31Split out the Gmb application AVP:s to at least make it simpler to handle theetxrab4-85/+119
AVP "collision". http://bugs.wireshark.org/bugzilla/show_bug.cgi?id=1494 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24235 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-31Make the "!="/"ne" change compile under Windows.gerald2-1/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24234 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-31Added missing space in front of new statusbar messages.stig1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24233 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-31If "!=" or "ne" are used in a display filter, warn the user that the resultsgerald10-39/+173
may be unexpected. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24232 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-31Hide hidden devices in "Capture Interfaces" dialog.stig5-3/+37
Added a function to check for hidden devices, which also work correctly for plumbed devices on solaris. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24231 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-31Add missing g_object_unref for treeview models;wmeier4-5/+7
Remove not needed set_tree_model (stats_tree_stat.c) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24230 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-30Add Luis' uat_get_table_by_name() to fetch SMI uat tables.stig5-14/+33
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24229 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-30Dissect the FLUTE "data".etxrab3-10/+35
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24228 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-30Move glib-2 specific code out of gsmmap.cnf (where we can't #ifdef aroundmorriss3-116/+146
it--asn2wrs doesn't understand #ifdef's) to packet-gsm-template.c git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24227 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-30Added missing space in front of some statusbar messages.stig1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24226 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-29Update my email address.bondolo1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24225 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-29cleanup initial comment. fix urls and email addresses.bondolo2-15/+17
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24224 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-29Add missing 'static int' for dissect_diameter_3gpp_tmgi(...)wmeier1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24223 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-29Dissect 3GPP AVP Code: 900 TMGIetxrab1-3/+51
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24222 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-29For Windows: Update to use Gtk+ 2.12.6; Use latest Glib 2.14.5 again;wmeier2-7/+7
Gtk 2.12.6 fixes bugzilla.gnome.org bug #503326 which thus means that Wireshark no longer needs a work-around for Wireshark bug #2066. (See svn #24219). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24221 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-29When having more than one matching item in a frame the MAX and MIN calculationstig1-18/+20
could return an invalid value. Also fixed AVG calculation. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24220 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-29Revert GTK+/GLIB to GTK+ 2.12.1 with GLib 2.14.3 for Windows installssake1-4/+4
as a workaround for bug 2066. We should stick to these versions until bug report #503326 on bugzilla.gnome.org has been fixed. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24219 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-29SSI dBm signal is signed.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24218 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-28Use the new gettext-runtime.stig1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24217 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-28Dissect Vendor id and Auth-application Id.etxrab2-0/+55
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24216 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-28cleanup code (remove some collapsed conditions)kukosa1-12/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24215 f5534014-38df-0310-8fa8-9805f1628bb7
2008-01-28Adding Thomas Morinjake1-0/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@24214 f5534014-38df-0310-8fa8-9805f1628bb7