aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2013-01-18Fix some Dead Store (Dead assignement/Dead increment) Warning found by ClangAlexis La Goutte1-3/+3
svn path=/trunk/; revision=47149
2013-01-18Fix indent for Documentation (Tab => Spaces)Alexis La Goutte16-9700/+9707
svn path=/trunk/; revision=47148
2013-01-18Happy New Year also for DocumentationAlexis La Goutte2-12/+14
Also add -I option of TShark & dumpcap and the default capture type for editcap is now pcapng svn path=/trunk/; revision=47147
2013-01-18Enhance MRCPv2 dissector * Fix indent (Tab => 4 Spaces) and add Modelines ↵Alexis La Goutte1-1289/+1241
info * Replace by string_string * Replace if else if... by switch() svn path=/trunk/; revision=47146
2013-01-18Dissect 3GPP PCO option.Anders Broman1-1/+8
svn path=/trunk/; revision=47145
2013-01-18Replace SESSIONNAME with the use of an API call, just as in the code.Jaap Keuter1-9/+5
svn path=/trunk/; revision=47144
2013-01-18Generate Info.plist using CMake and enable it in QtShark.pro. Update the dates.Gerald Combs3-4/+11
svn path=/trunk/; revision=47143
2013-01-18Add more AirPcap code, disabled for now.Gerald Combs1-0/+8
svn path=/trunk/; revision=47142
2013-01-18Don't call prefs_airpcap_update() for now. Remove some debugging code.Gerald Combs2-4/+2
svn path=/trunk/; revision=47141
2013-01-18Fix compilation on Windows.Gerald Combs2-8/+8
svn path=/trunk/; revision=47140
2013-01-18Rename the "saved_val" preference element to "stashed_val" in order toGerald Combs28-367/+693
more clearly indicate that it's a copy of a preference value rather than something we've saved in the preferences file. Update prefs_pref_to_str() to handle default, stashed, and current prefs. Create ui/preference_utils.[ch] and move some common routines there. Use prefs_pref_type_name() in the GTK+ preferences dialog. Make the "OK" button in the Qt preferences dialog work. We simply write the prefs and redissect on "OK" and do nothing on "Cancel". This is intentionally different from the Apply/OK/Cancel behavior in the GTK+ version. Add a general "emitAppSignal" method to wsApp and use it for packet dissection and preference changes. Suggest that we might want to create a WsString class to make conversion between QStrings, gchar *s, and GStrings easier. svn path=/trunk/; revision=47139
2013-01-17Minor cleanup:Bill Meier1-97/+98
- Whitespace; - Long lines. svn path=/trunk/; revision=47138
2013-01-17General cleanup:Bill Meier1-1129/+1130
Indentation: Use 4 spaces; parens; unneeded initializers; whitespace. svn path=/trunk/; revision=47137
2013-01-17Fix for bug 8212.Jaap Keuter1-2/+8
Disable speed optimization which otherwise cause dissector asserts due to appending text and setting lengths. svn path=/trunk/; revision=47136
2013-01-17Use gtk_box_pack_start() instead of gtk_container_add()Bill Meier1-3/+5
when packing into a [v|h]box so that Gtk2 & Gtk3 behavior is the same. Also: Add an XXX comment: "progess" rendering doesn't seem to work for Gtk3 ?? svn path=/trunk/; revision=47135
2013-01-17Use gtk_box_pack_start() instead of gtk_container_add()Bill Meier1-17/+18
when packing into a [v|h]box so that Gtk2 & Gtk3 behavior is the same. Also: Add an XXX comment: "progess" rendering doesn't seem to work for Gtk3 ?? svn path=/trunk/; revision=47134
2013-01-17Register in the UDP heuristic table rather than the internal one.Anders Broman2-2/+4
svn path=/trunk/; revision=47133
2013-01-17From Hendrik Uhlmann via ↵Pascal Quantin1-1/+1
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8227 : Electromagnetic Emission Parser parses field Event Id as Entity Id svn path=/trunk/; revision=47132
2013-01-17Opening the capture options triggers a rescan of all the packets caused by ↵Anders Broman1-9/+15
the call to update_decryption_mode_list() for airpcap. If we don't get the airpcap_if_list, don't do anything regarding air_pcap. update_decryption_mode_list() should probably check if a change is taking place before rescaning all packets. svn path=/trunk/; revision=47131
2013-01-17Add modelinesEvan Huus1-0/+13
svn path=/trunk/; revision=47130
2013-01-16Fix Gtk3 window resize behavior to match Gtk2.Bill Meier1-67/+67
Specifically: use gtk_box_pack_start() instead of gtk_container_add() in a number of places. Also: do some whitespace cleanup. svn path=/trunk/; revision=47129
2013-01-16Remove redundant call to gtk_box_set_child_packing().Bill Meier3-3/+0
svn path=/trunk/; revision=47128
2013-01-16Remove forbidden C++ style commentsPascal Quantin2-6/+6
svn path=/trunk/; revision=47127
2013-01-16General cleanup: whitespace, parens & etc.Bill Meier1-150/+149
svn path=/trunk/; revision=47126
2013-01-16no need for if (tree)Martin Kaiser1-2/+1
svn path=/trunk/; revision=47125
2013-01-16Use gdk_cairo_set_source_rgba() and GdkRGBA.Bill Meier1-27/+27
svn path=/trunk/; revision=47124
2013-01-16don't attempt reassembly if more than 1000 consecutive fragments areMartin Kaiser1-0/+9
missing this fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8222 svn path=/trunk/; revision=47123
2013-01-16From Stephen Donnelly via ↵Pascal Quantin1-9/+9
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8215 : Several ERF types are incorrectly calling downstream dissectors under the erf_tree instead of under the top level tree svn path=/trunk/; revision=47122
2013-01-16Use gdk_cairo_set_source_rgba() and GdkRGBA.Bill Meier1-31/+31
svn path=/trunk/; revision=47121
2013-01-16Add a cast to shut up MSVC.Evan Huus1-1/+1
svn path=/trunk/; revision=47120
2013-01-16From Hendrik Uhlmann via ↵Evan Huus6-3/+309
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8185 Support for Underwater Acoustic PDUs in packet-dis.c svn path=/trunk/; revision=47119
2013-01-16Replace gtk_table...() with ws_gtk_grid...();Bill Meier1-63/+75
Also; do some whitespace cleanuyp. svn path=/trunk/; revision=47118
2013-01-16Replace gtk_table...() with ws_gtk_grid...();Bill Meier1-65/+67
Use gtk_box_pack_start() instead of gtk_container_add() in a few places so that window resize behavior is the same for Gtk2 and Gtk3. Also: do some whitespace cleanup. svn path=/trunk/; revision=47117
2013-01-16(Trivial) whitespace cleanup;Bill Meier1-6/+6
svn path=/trunk/; revision=47116
2013-01-16Fix a Gtk2 vs Gtk3 issue;Bill Meier1-1/+1
Specifically: use gtk_box_pack_start() instead of gtk_container_add() in one case so that (for Gtk3) a window component properly expands when the window is resized vertically. svn path=/trunk/; revision=47115
2013-01-16Null the finfo pointer after we free it. Reduces (but does not completely fix)Evan Huus1-0/+1
the errors from bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8197 svn path=/trunk/; revision=47114
2013-01-16Add -v for verbose valgrind output.Evan Huus1-2/+3
svn path=/trunk/; revision=47113
2013-01-16Bugfix version number in EtherIP dissector + general cleanup. Bug 8211 ↵Michael Mann1-23/+26
(https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8211) #BACKPORT svn path=/trunk/; revision=47112
2013-01-16Get rid of C++ comments from the CUPS code.Guy Harris1-7/+7
svn path=/trunk/; revision=47111
2013-01-16As suggested in comments in sl_alloc() and sl_free(): add a new environmentJeff Morriss5-7/+38
variable (WIRESHARK_DEBUG_USE_SLICES) which turns off the slab allocator and uses g_slices instead (which can themselves be turned off by setting G_SLICE=always-malloc). This makes debugging problems in slab-allocated memory easier to find (hopefully including https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8197 ). Set WIRESHARK_DEBUG_USE_SLICES when running Valgrind on *shark. Remove unused structure member: emem_chunk_t.org. svn path=/trunk/; revision=47110
2013-01-16Add some routines to wsutil to, at least on some platforms, addGuy Harris1-11/+20
information to crash dumps and the like. (Currently, we only handle OS X's CrashReporter, but we should do this on other platforms where this information can be added and would be helpful.) svn path=/trunk/; revision=47109
2013-01-16Set the crash info as early as possible in main(), so that it shows upGuy Harris1-10/+19
in crashes that happen early in the process. Clean up white space. svn path=/trunk/; revision=47108
2013-01-15Add crash_info.cGuy Harris1-0/+1
svn path=/trunk/; revision=47107
2013-01-15Use GLib "return an allocated string generated by printf-styleGuy Harris1-4/+4
formatting" routines and the corresponding deallocate routines. svn path=/trunk/; revision=47106
2013-01-15I must haz config.h (to define _U_, if nothing else).Guy Harris1-0/+2
svn path=/trunk/; revision=47105
2013-01-15Add some routines to wsutil to, at least on some platforms, addGuy Harris7-28/+269
information to crash dumps and the like. (Currently, we only handle OS X's CrashReporter, but we should do this on other platforms where this information can be added and would be helpful.) White space tweaks. svn path=/trunk/; revision=47104
2013-01-15Cleanup:Bill Meier1-194/+291
- "localize" some variables; remove some unneeded initializers; - indentation, whitespace, long lines & etc. svn path=/trunk/; revision=47103
2013-01-15Fix several window resize behavior differences between Gtk2 & Gtk3.Bill Meier1-6/+7
Specifically: replace several gtk_container_add() calls by gtk_box_pack_start() calls. svn path=/trunk/; revision=47102
2013-01-15Minor documentation tweaks. Add a hash table to the wishlist.Evan Huus1-7/+9
svn path=/trunk/; revision=47101
2013-01-15Cleanup:Bill Meier1-163/+169
- localize some vars; remove some unneeded initializers; - indentation & white space & etc. svn path=/trunk/; revision=47100