aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-11-14Add packet information and selection to the Follow Stream dialog.Gerald Combs15-50/+306
Collect packet numbers when following streams so that we can correlate text positions with packets. Add a FollowStreamText class so that we can track mouse events. Add a hint label that shows the packet under the cursor along with packet counts and the number of "turns". Add the packet number to the C array dump. Note that dumping to YAML might be useful for Scapy users. svn path=/trunk/; revision=53314
2013-11-14Add a cast to try and fix the OSX buildbot.Evan Huus1-1/+1
svn path=/trunk/; revision=53313
2013-11-14Fix dissection of MBIM Extended Functional Descriptor MTUPascal Quantin1-1/+1
svn path=/trunk/; revision=53312
2013-11-14Get rid of Warinings [-Wmissing-prototypes]Anders Broman37-4/+64
svn path=/trunk/; revision=53311
2013-11-14Fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9303 based on patch andEvan Huus1-6/+28
help from Matthieu Patou. If the DCE-RPC heuristic failed to identify a TVB, *but* we've already decoded a DCE-RPC layer in this packet *and* the heuristic failed because we didn't have enough data, make the reasonable assumption that it actually is another DCE-RPC packet, and ask TCP to desegment more data for us and try again. svn path=/trunk/; revision=53310
2013-11-13The kafka compression codec is only 2 bits, not 3.Evan Huus1-1/+1
svn path=/trunk/; revision=53309
2013-11-13Fix what appears to be a mistake during the conversion in r53036 fromEvan Huus1-3/+3
dissector_try_uint to dissector_try_uint_new: protocols called due to TCP port matching were not getting added to the list of protocols in the frame. The "add_proto_name" parameter should be TRUE except in unusual circumstances. svn path=/trunk/; revision=53308
2013-11-13share service type descriptions between MPEG descriptor and DVB-CIMartin Kaiser3-3/+8
svn path=/trunk/; revision=53307
2013-11-13Highlight selected sequence diagram items.Gerald Combs13-328/+428
Create a new dialog each time the user follows a stream. A lot of the follow code seems to assume one and only one dialog so there are likely outstanding bugs. Don't use the global cfile (should we deprecate its usage?). We want to move closer to multiple documents, not further away. Clean up after ourselves. Free our payload list and unlink our temp file. Make a bunch of gchar*s QStrings. Make sure our destructor gets called and use it. Make member variable and method names more consistent. svn path=/trunk/; revision=53306
2013-11-13dissect Refresh Request FlagMartin Kaiser1-1/+13
svn path=/trunk/; revision=53305
2013-11-13dissect Operator Profile's delivery system hintMartin Kaiser1-3/+29
svn path=/trunk/; revision=53304
2013-11-13(Minor cleanup): unneeded initializers, whitespace, long-lines, typosBill Meier1-190/+207
svn path=/trunk/; revision=53303
2013-11-13Add more GSM SIM Toolkit info to info columnPascal Quantin2-0/+4
svn path=/trunk/; revision=53302
2013-11-13Fix CID 1113411: close the file descriptor and free the file name even inJeff Morriss1-9/+14
error cases. svn path=/trunk/; revision=53301
2013-11-13Make subpackage Requires: more generic.Jeff Morriss1-2/+2
svn path=/trunk/; revision=53300
2013-11-13Wrap GCC pragma in an #ifdef to make it compile when we're not using GCC.Jeff Morriss2-1/+5
Again, change manually applied to the .h file. svn path=/trunk/; revision=53299
2013-11-13Use a gcc pragma to stop the (pages of) warnings coming out ofJeff Morriss2-2/+5
x11-extensions-implementation.h . This change was manually applied to the .h file as I can't currently rebuild the X11 dissector. svn path=/trunk/; revision=53298
2013-11-13Add a (wireshark-)qt package that contains the Qt-based GUI (and the necessaryJeff Morriss1-14/+87
desktop-integration files); build it by default. Use 'alternatives' to choose which GUI actually gets used; give the Gtk GUI priority over the Qt one (for now). svn path=/trunk/; revision=53297
2013-11-13Simplify the CLI preinstall script a bit and hopefully get rid of an error.Gerald Combs1-5/+1
svn path=/trunk/; revision=53296
2013-11-13Set SVN properties.Jeff Morriss0-0/+0
svn path=/trunk/; revision=53295
2013-11-12Highlight selected sequence diagram items.Gerald Combs3-15/+69
svn path=/trunk/; revision=53294
2013-11-12Now that fvalue_to_string_repr() returns NULL if the fvalue's ftype hasGuy Harris1-6/+2
no val_to_string_repr method, we don't need to check whether it has such a method, and thus don't need to include epan/ftypes/ftypes-int.h. svn path=/trunk/; revision=53293
2013-11-12tabs -> spacesPascal Quantin1-9/+9
svn path=/trunk/; revision=53292
2013-11-12Fix a typo errorPascal Quantin1-1/+1
svn path=/trunk/; revision=53291
2013-11-12Replace fvalue_ftype() with a fvalue_type_ftenum() routine that returnsGuy Harris4-19/+17
the ftenum_t for the fvalue's ftype, rather than a pointer to the ftype (which isn't all that useful except as a handle, unless you import the internal header). Have fvalue_to_string_repr() return NULL, rather than failing, if the fvalue's ftype has no val_to_string_repr method. This lets us not include the ftypes internal header in ui/cli/tap-diameter-avp.c. svn path=/trunk/; revision=53290
2013-11-12share the text description of service types between MPEG PMT and DVB-CIMartin Kaiser4-3/+37
svn path=/trunk/; revision=53289
2013-11-12Add "rtp handle protection" inside ↵Michael Mann8-79/+62
srtp_add_address/rtp_add_address/bluetooth_add_address so dissectors calling it don't need to find "rtp" just for the handle check. svn path=/trunk/; revision=53288
2013-11-12From Michal LabedzkiMartin Kaiser1-0/+3
add forward declarations https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9333 svn path=/trunk/; revision=53287
2013-11-12From Michal LabedzkiMartin Kaiser1-4/+4
change two local variables to gint16 so we can store -1 for invalid value https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9333 svn path=/trunk/; revision=53286
2013-11-12From robionekenobiMartin Kaiser1-2/+6
add expert info for invalid item length in mq pcf https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9411 svn path=/trunk/; revision=53285
2013-11-12LMP dissector can't be called by anything but UDP, so no need to check that.Michael Mann1-8/+0
svn path=/trunk/; revision=53284
2013-11-12Add "T.38 handle protection" inside t38_add_address() so dissectors calling ↵Michael Mann5-20/+12
it don't need to find "t38" just for the handle check. svn path=/trunk/; revision=53283
2013-11-12Don't do our own line wrapping of the display filter, let GTK do it for us.Jeff Morriss1-21/+2
(With this change all the right-hand columns in this dialog will wrap if necessary whereas before only the display filter would wrap lines.) svn path=/trunk/; revision=53282
2013-11-12Fix permissions for installed OS X files and directories.Gerald Combs5-5/+102
Add a cli-preinstall script that creates missing parts of the installation path and sets their permissions. Simply copy "utility-launcher" to "wireshark" instead of renaming it at install time. Explicitly set its ownership and permissions. Pretty-print some of the PackageMaker XML files via `xmllint --format --recover`. svn path=/trunk/; revision=53281
2013-11-12Fix compilation on Windows.Gerald Combs1-2/+1
svn path=/trunk/; revision=53280
2013-11-12Try to fix compilation for GLib < 2.30.Gerald Combs1-0/+5
svn path=/trunk/; revision=53279
2013-11-12Add an item for any unknown tags we come across (just as FT_BYTES).Jeff Morriss1-0/+8
svn path=/trunk/; revision=53278
2013-11-12De-duplicate some code by changing a while loop to a do-while loop.Jeff Morriss1-22/+17
svn path=/trunk/; revision=53277
2013-11-12Try using UTF8_RIGHTWARDS_ARROW to indicate direction.Gerald Combs1-1/+1
If this doesn't cause any problems we should probably move utf8_entities.h from ui to wsutil. svn path=/trunk/; revision=53276
2013-11-12When we dump a sequence diagram to text, make sure labels are truncated.Gerald Combs1-8/+12
svn path=/trunk/; revision=53275
2013-11-12Remove usb_conv_info_t from packet_info and pass the data directly into the ↵Michael Mann15-231/+159
subdissectors. Bug 9413 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9413) svn path=/trunk/; revision=53274
2013-11-12From Michal LabedskiMartin Kaiser1-4/+4
fix Logically Dead Code: allow cmd==0 https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9420 svn path=/trunk/; revision=53273
2013-11-12Fix segfault bug and show the combo-box.Irene Rüngeler1-1/+1
svn path=/trunk/; revision=53272
2013-11-12Use the right threshold.Irene Rüngeler1-1/+1
svn path=/trunk/; revision=53271
2013-11-12remove pointless if (tree) checksMartin Kaiser1-57/+39
svn path=/trunk/; revision=53270
2013-11-12Remove some #include (Found by iwyu)Alexis La Goutte3-5/+0
svn path=/trunk/; revision=53269
2013-11-12Fix typo (for generated Documentation)Alexis La Goutte1-1/+1
svn path=/trunk/; revision=53268
2013-11-12Fix Dead Store (Dead assignement/Dead increment) warning found by ClangAlexis La Goutte1-3/+1
svn path=/trunk/; revision=53267
2013-11-12Fix Dead Store (Dead assignement/Dead increment) warning found by ClangAlexis La Goutte1-1/+1
svn path=/trunk/; revision=53266
2013-11-12Fix Dead Store (Dead assignement/Dead increment) warning found by ClangAlexis La Goutte1-1/+0
svn path=/trunk/; revision=53265