summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
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
2013-11-12Redraw the diagram when needed.Gerald Combs1-12/+3
svn path=/trunk/; revision=53264
2013-11-12Sequence / flow diagram updates.Gerald Combs8-42/+340
Add "Save As..." Add a context menu and keyboard shortcuts. Add a tooltip. svn path=/trunk/; revision=53263
2013-11-11Include rohc struct inside pdcp instead of repeating all of the fieldsMartin Mathieson4-53/+35
svn path=/trunk/; revision=53262
2013-11-11replace proto_tree_add_string_format_value() with proto_tree_add_item()Martin Kaiser1-2/+4
svn path=/trunk/; revision=53261
2013-11-11Sequence / flow diagram updates.Gerald Combs7-36/+109
Plumb some controls. Adjust dialog layout. Make sure sequence information is allocated and freed correctly. Remove a debugging statement. svn path=/trunk/; revision=53260
2013-11-11Mark some parameters unused.Gerald Combs2-2/+2
svn path=/trunk/; revision=53259
2013-11-11From Michael Bean via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9384 :Pascal Quantin6-0/+107
Add support for Alcatel-Lucent 8950 AAA svn path=/trunk/; revision=53258
2013-11-11From doh via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9112 :Pascal Quantin1-3/+3
Fix incorrect "bytes missing in capture file" in "check_fragments" svn path=/trunk/; revision=53257
2013-11-11Update the list of new protocolsPascal Quantin1-0/+2
svn path=/trunk/; revision=53256
2013-11-11Export the right function name.Anders Broman1-1/+1
svn path=/trunk/; revision=53255
2013-11-11Remove tcp_tree from packet_info structure.Michael Mann2-4/+2
All dissectors that call tcp_dissect_pdus() have the same relative tree position, so it doesn't need to be specifically saved in the packet_info. svn path=/trunk/; revision=53253
2013-11-11Create separate heuristic dissectors for TCP and UDP dissection. Some of ↵Michael Mann1-152/+140
the checking for "protocol" in the old heuristic dissector can be handled automatically by being registered with TCP/UDP specifically. Also replaced ADWIN_ADD_[LE|BE] macros so check*.pl scripts aren't shirked. Didn't think the macros saved that much. svn path=/trunk/; revision=53252
2013-11-11Add -P option to allow specifying the 'callgrind-out-file' nameBill Meier1-2/+4
svn path=/trunk/; revision=53250
2013-11-11From Peter LemenkovMartin Kaiser1-1/+16
display a text description for the RTPProxy version request https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9416 svn path=/trunk/; revision=53249
2013-11-11fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9411Martin Kaiser1-0/+5
make sure we're not stuck in the while loop svn path=/trunk/; revision=53248
2013-11-11fix https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9409Martin Kaiser1-5/+2
don't call proto_item_get_len() when the argument can be NULL svn path=/trunk/; revision=53247
2013-11-11tcp_dissect_pdus can handle both desegmented and complete packets, so have ↵Michael Mann1-29/+14
the entire pdu be handled that way. svn path=/trunk/; revision=53246
2013-11-11Decode more error replies in RTPproxy dissector. Bug 9408 ↵Michael Mann1-8/+22
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9408) From Peter Lemenkov svn path=/trunk/; revision=53245
2013-11-11Do some whitespace & formatting style changes;Bill Meier2-1390/+1400
Remove some unneeded initializers; Also: packet-mq.c: Add an XXX coment. svn path=/trunk/; revision=53244
2013-11-10"productsign" should work now. Remove "codesign".Gerald Combs1-1/+0
svn path=/trunk/; revision=53243
2013-11-10Be exceedingly diligent about checking OS X package signatures.Gerald Combs1-2/+3
svn path=/trunk/; revision=53242
2013-11-10Pass "wild_card" directly to dissector instead of using private_data. ↵Michael Mann2-10/+8
"h248term" dissector is not in Wireshark source, so third-party will need to update accordingly. svn path=/trunk/; revision=53241
2013-11-10Use ASN.1 private data instead of pinfo->private_data to exchange kerberos ↵Michael Mann3-28/+10
callback functions. svn path=/trunk/; revision=53240
2013-11-10Use the correct event filter.Gerald Combs1-1/+1
From Richard Moore via bug 9410. svn path=/trunk/; revision=53239
2013-11-10Mark a parameter unused.Gerald Combs1-1/+1
svn path=/trunk/; revision=53238
2013-11-10pinfo->private_data is no longer being used, so adjust the logic accordingly.Michael Mann1-3/+4
svn path=/trunk/; revision=53237
2013-11-10context is not being passed to dissector, not through pinfo->private_data so ↵Michael Mann2-8/+4
check data parameter, not pinfo->private_data. svn path=/trunk/; revision=53236