aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/iax2_analysis.c
AgeCommit message (Collapse)AuthorFilesLines
2013-10-24Make things compile again.Jörg Mayer1-2/+2
svn path=/trunk/; revision=52828
2013-09-07Fix a few more places that didn't have a semicolon after the address-macro use.Evan Huus1-4/+4
svn path=/trunk/; revision=51820
2013-08-01Move a bunch of the crypt modules and pint.h into wsutil.Jeff Morriss1-1/+1
This means wsutil now links against libcrypt. Protect a bunch of the crypt header files from multiple inclusion. svn path=/trunk/; revision=51100
2013-07-21Replace relative timestamp with reference frame number. Saves 16B per frame.Jakub Zawadzki1-2/+2
svn path=/trunk/; revision=50772
2013-07-21Some work on multi file dissectionJakub Zawadzki1-1/+1
- make init_dissection/cleanup_dissection private for libwireshark - implement epan_new(), epan_free() - pass epan_t to epan_dissect* svn path=/trunk/; revision=50761
2013-07-16Move u3.{h,c} and g711.{h,c} into wsutil.Jeff Morriss1-6/+5
Project g711.h against multiple inclusion and add C++ compatibility wrapper. svn path=/trunk/; revision=50654
2013-07-11packet dissection now takes pointer to tvb instead of guint8 dataJakub Zawadzki1-1/+3
implement frame_tvbuff, right now almost a copy of 'real' tvb. svn path=/trunk/; revision=50497
2013-06-26Move tempfile.{h,c} into wsutil.Jeff Morriss1-1/+1
svn path=/trunk/; revision=50163
2013-06-16Have the seek-read routines take a Buffer rather than a guint8 pointerGuy Harris1-1/+2
as the "where to put the packet data" argument. This lets more of the libwiretap code be common between the read and seek-read code paths, and also allows for more flexibility in the "fill in the data" path - we can expand the buffer as needed in both cases. svn path=/trunk/; revision=49949
2013-05-15gtk_file_chooser_dialog_new() makes the file chooser dialog a transientGuy Harris1-2/+0
window for the specified parent; we don't have to do that ourselves. svn path=/trunk/; revision=49309
2013-03-28Follow up on bug 8416.Jaap Keuter1-6/+6
Remove C++ incompatibilities in GTK+ 3 code. svn path=/trunk/; revision=48606
2013-03-21From beroset:Bill Meier1-28/+28
remove C++ incompatibilities https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8416 attachment #10408 Note: The following parts of the patch had been previously done: asn1/snmp/packet-snmp-template.c epan/dissectors/packet-snmp.c epan/dissectors/packet-x11.c svn path=/trunk/; revision=48448
2013-02-26Fix spelling/typos found using a list of commonly misspelled words.Bill Meier1-1/+1
The misspellings were mostly in comments but some were in text strings visible to the user. svn path=/trunk/; revision=47899
2013-02-21Don't yell at the user quite so much. Remove exclamation points fromGerald Combs1-20/+20
some error messages and rephrase some others. svn path=/trunk/; revision=47787
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-12General cleanup: whitespace, long-lines, & etc.Bill Meier1-360/+400
svn path=/trunk/; revision=47042
2013-01-11Replace gtk_table...() with ws_gtk_grid...().Bill Meier1-98/+98
Also: remove some trailing whitespace. svn path=/trunk/; revision=47038
2013-01-04Use gdk_cairo_set_source_rgbaAnders Broman1-7/+2
svn path=/trunk/; revision=46935
2013-01-04Apply 46903 to iax_analysisAnders Broman1-121/+169
svn path=/trunk/; revision=46929
2012-12-26Fix a bunch of warnings.Guy Harris1-12/+13
Cast away some implicit 64-bit-to-32-bit conversion errors due to use of sizeof. Cast away some implicit 64-bit-to-32-bit conversion errors due to use of strtol() and strtoul(). Change some data types to avoid those implicit conversion warnings. When assigning a constant to a float, make sure the constant isn't a double, by appending "f" to the constant. Constify a bunch of variables, parameters, and return values to eliminate warnings due to strings being given const qualifiers. Cast away those warnings in some cases where an API we don't control forces us to do so. Enable a bunch of additional warnings by default. Note why at least some of the other warnings aren't enabled. randpkt.c and text2pcap.c are used to build programs, so they don't need to be in EXTRA_DIST. If the user specifies --enable-warnings-as-errors, add -Werror *even if the user specified --enable-extra-gcc-flags; assume they know what they're doing and are willing to have the compile fail due to the extra GCC warnings being treated as errors. svn path=/trunk/; revision=46748
2012-10-16Add wtap_pseudo_header union to wtap_pkthdr structure.Jakub Zawadzki1-1/+1
Use pkthdr instead of pseudo_header as argument for dissecting. svn path=/trunk/; revision=45601
2012-09-28protect_thread_critical_region, unprotect_thread_critical_region are no-ops, ↵Jakub Zawadzki1-4/+0
cleanup code by removing them. svn path=/trunk/; revision=45201
2012-09-20We always HAVE_CONFIG_H so don't bother checking whether we have it or not.Jeff Morriss1-2/+0
svn path=/trunk/; revision=45016
2012-08-01Move utf8_entities.h to the "ui" directory. Separate packet informationGerald Combs1-1/+1
items with MIDDLE DOTs. svn path=/trunk/; revision=44194
2012-08-01Get rid of some GTK_CHECK_VERSION instances by using compabillity macros.Anders Broman1-4/+0
svn path=/trunk/; revision=44186
2012-07-23Align structs and code a bit, ultimatly code should be shared.Anders Broman1-16/+8
svn path=/trunk/; revision=43924
2012-07-20Fix some clang warnings: implicit conversion from enumeration type ↵Jakub Zawadzki1-1/+2
'GtkStateType' to different enumeration type 'GtkStateFlags' [-Werror,-Wconversion] GTK_STATE_NORMAL and GTK_STATE_FLAG_NORMAL are both 0. svn path=/trunk/; revision=43854
2012-07-19Pass {delayed_}create_progress_dlg a pointer the top level windowGerald Combs1-1/+1
so that we can properly associate a widget with create, update, and destroy events. Only used by Qt so far but it should be easy enough to add to GTK+. Rename ui/qt/progress_dialog.{h,cpp} to progress_bar.{h,cpp}. Show a progress bar in the status bar of the main window instead of creating a separate dialog. Note that we still need to add a "cancel" mechanism and display the task and item titles somewhere. Thus began the War Against Gratuitous Dialogs. svn path=/trunk/; revision=43833
2012-07-09From Evan Huus:Anders Broman1-8/+8
Redundant conditions in iax2_analysis.c https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7456 svn path=/trunk/; revision=43618
2012-06-28Update Free Software Foundation address.Jakub Zawadzki1-1/+1
(COPYING will be updated in next commit) svn path=/trunk/; revision=43536
2012-05-16Free memory when create_tempfile() failed.Jakub Zawadzki1-0/+3
svn path=/trunk/; revision=42654
2012-05-16Check the return value of create_tempfile. Fixes CIDs 280527 and 280528.Gerald Combs1-22/+33
svn path=/trunk/; revision=42645
2012-04-21More GTK3 adaptationsAnders Broman1-2/+2
svn path=/trunk/; revision=42187
2012-04-21Replace gtk_vbox_new() and gtk_hbox_new() with ws_gtk_box_new().Anders Broman1-14/+14
svn path=/trunk/; revision=42176
2012-02-17include "../util.h" -> include "ui/util.h"Jörg Mayer1-1/+1
svn path=/trunk/; revision=41048
2012-01-18Restructure the recent file code so that recent.c is GUI-independent;Guy Harris1-3/+6
move it to the top-level source directory for now, and move ui/gtk/recent.h to the ui directory. svn path=/trunk/; revision=40561
2012-01-16Move some headers for UI stuff, and the alert_box.c UI-specific file, toGuy Harris1-3/+3
the ui directory. (Perhaps some other files that would be used by all flavors of Wireshark, for any GUI toolkit or for someting such as ncurses, and not for any command-line tool such as TShark, should be moved there as well.) Shuffle some #includes to put the "ui/XXX.h" includes together. svn path=/trunk/; revision=40529
2012-01-15Move gtk to ui/gtk.Jörg Mayer1-0/+3745
This looses the last checkin to gtk, will add this manually back. svn path=/trunk/; revision=40518