aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/sctp_graph_dlg.c
AgeCommit message (Collapse)AuthorFilesLines
2010-01-29Fix various gcc -Wshadow warnings.Bill Meier1-2/+2
svn path=/trunk/; revision=31731
2009-09-04Cleanup whitespaces.Michael Tüxen1-10/+10
svn path=/trunk/; revision=29698
2009-09-04Fix handling of multiple duplicate TSNs.Michael Tüxen1-4/+2
svn path=/trunk/; revision=29697
2009-09-04Fix compilation.Michael Tüxen1-4/+4
svn path=/trunk/; revision=29696
2009-09-04From Irene Ruengeler: Show duplicate TSNs in SACKs.Michael Tüxen1-8/+43
svn path=/trunk/; revision=29695
2009-08-21From Irene Ruengeler: Fix two bugs regarding plotted TSNs reported byMichael Tüxen1-5/+5
Christian Constantin. svn path=/trunk/; revision=29498
2009-06-22Change window_new() to dlg_window_new() and destroy the window with the top ↵Anders Broman1-4/+2
level window. svn path=/trunk/; revision=28810
2009-06-15Trivial warning fixes:Jörg Mayer1-1/+1
- Might be used uninitialized - not a prototype - comma at end of enum svn path=/trunk/; revision=28730
2009-06-05* Fix name of Irene in AUTHORS.Michael Tüxen1-7/+234
* Add Varun Notibala to AUTHORS. * Add support for NR-SACK and fix stability problems. svn path=/trunk/; revision=28642
2009-03-19As suggested by Jakub Zawadzki: actually use sizeof(...) rather than a ↵Bill Meier1-13/+13
numeric constant in various places; svn path=/trunk/; revision=27800
2008-07-08Fix some simple cases of GTK2 deprecated API usage by using a renamed or ↵Bill Meier1-1/+1
equivalent API gtk_button_box_set_spacing() ==> gtk_box_set_spacing() svn path=/trunk/; revision=25673
2008-06-29Fix some simple cases of GTK2 deprecated API usage by using a renamed or ↵Bill Meier1-3/+3
equivalent API gtk_container_border_width() ==> gtk_container_set_border_width() gtk_container_children() ==> gtk_container_get_children() gtk_entry_new_with_max_length() ==> gtk_entry_new(); gtk_entry_set_max_length() gtk_menu_append() ==> gtk_menu_shell_append() gtk_menu_prepend() ==> gtk_menu_shell_prepend() gtk_notebook_set_page() ==> gtk_notebook_set_current_page() gtk_paned_gutter_size() ==> gtk_paned_set_gutter_size() gtk_radio_button_group() ==> gtk_radio_button_get_group() gtk_signal_connect() ==> g_signal_connect() gtk_signal_disconnect() ==> g_signal_handler_disconnect() gtk_signal_emit_by_name() ==> g_signal_emit_by_name() gtk_signal_handler_block_by_data() ==> g_signal_handlers_block_matched() gtk_signal_handler_block_by_func() ==> g_signal_handlers_block_by_func() gtk_signal_handler_unblock_by_data() ==> g_signal-handlers_unblock_matched() gtk_signal_handler_unblock_by_func() ==> g_signal-handlers_unblock_by_func() gtk_spin_button_get_value_as_float() ==> gtk_spin_button_get_value() gtk_toggle_button_set_state() ==> gtk_toggle_button_set_active() svn path=/trunk/; revision=25634
2008-04-13sort #includes by directoriesUlf Lamping1-11/+13
svn path=/trunk/; revision=24969
2008-04-12where it's not necessary, remove #include "compat_macros.h"Ulf Lamping1-1/+0
svn path=/trunk/; revision=24922
2008-04-11last round to replace SIGNAL_CONNECT with g_signal_connectUlf Lamping1-8/+8
svn path=/trunk/; revision=24918
2008-04-11replace WIDGET_SET_SIZE with gtk_widget_set_size_requestUlf Lamping1-1/+1
svn path=/trunk/; revision=24910
2008-04-11replace all appearances of BUTTON_NEW_FROM_STOCK with GTK2's ↵Ulf Lamping1-1/+1
gtk_button_new_from_stock svn path=/trunk/; revision=24904
2008-04-11OBJECT_..._DATA --> g_object_..._dataBill Meier1-6/+6
svn path=/trunk/; revision=24896
2008-04-07Cleanup whitespaces.Michael Tüxen1-46/+43
svn path=/trunk/; revision=24831
2008-04-07remove GTK1 codeUlf Lamping1-103/+0
svn path=/trunk/; revision=24823
2008-03-01Include epan/strutil.h for gtk-1.2 builds.Michael Tüxen1-0/+1
svn path=/trunk/; revision=24513
2008-02-29Next attempt to cleanup some string functions, including:Stig Bjørlykke1-1/+1
strncpy -> g_strlcpy, strncat -> g_strlcat svn path=/trunk/; revision=24504
2008-02-01Rewrote some prohibited APIs in gtk/ (sprintf, strcpy, strcat).Stig Bjørlykke1-1/+1
If we get some truncated strings we probably overwrote some buffers... svn path=/trunk/; revision=24239
2008-01-10Use glib equivalent of ntohsBill Meier1-3/+3
svn path=/trunk/; revision=24056
2007-05-24Use the same workaround for the absence of rint() in MSVC++ that's usedGuy Harris1-9/+19
by the TCP graph code. svn path=/trunk/; revision=21915
2007-05-23Put in some more, hopfully correct casts.Anders Broman1-2/+2
svn path=/trunk/; revision=21903
2007-05-23Put back some more missing casts.Guy Harris1-2/+2
svn path=/trunk/; revision=21901
2007-05-22Put back some casts, and don't use rint() on Windows, in the hopes ofGuy Harris1-2/+11
clearing up at least some buildbot errors on Windows. svn path=/trunk/; revision=21900
2007-05-22From Irene Ruengeler: Fix TSN handling in graphs.Michael Tüxen1-98/+47
svn path=/trunk/; revision=21894
2007-04-23Restore the casts from svn 21080 (presumably) inadvertantly removed in svn ↵Bill Meier1-10/+10
21495. so windows build doesn't get warnings. svn path=/trunk/; revision=21517
2007-04-22"struct sack_chunk_header" is presumably just a SACK chunk headerGuy Harris1-7/+7
followed by zero or more gap start/end pairs; fix up the previous fix to handle that correctly. svn path=/trunk/; revision=21510
2007-04-22Don't play type-punning games - they cause compiler warnings (not thatGuy Harris1-2/+2
anybody appears to ever *set* sack_header->gaps). svn path=/trunk/; revision=21509
2007-04-22From Irene Ruengeler: Fix a bug regading the handling of ABORT chunks.Michael Tüxen1-24/+138
svn path=/trunk/; revision=21495
2007-04-03Fix warnings on Linux/gcc 4.1.1Stephen Fisher1-1/+1
svn path=/trunk/; revision=21330
2007-03-21fix all warnings in gtk dir & set the "treat all warnings as errors" MSVC flagUlf Lamping1-20/+20
svn path=/trunk/; revision=21080
2007-02-09A fix from Irene Ruengeler to keep assocs selected whenMichael Tüxen1-11/+11
setting/applying filters. Remove some warnings. svn path=/trunk/; revision=20759
2006-11-07From Albert Chin:Jaap Keuter1-2/+2
Patch attached to convert usage of ntohl() -> g_ntohl(). On HP-UX, ntohl() isn't available unless you -D_XOPEN_SOURCE_EXTENDED but there are other uses of g_ntohl(). svn path=/trunk/; revision=19844
2006-05-31Fixes the handling of long term captures from a simulation tool.Michael Tüxen1-50/+127
svn path=/trunk/; revision=18267
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-05-09From Irene: Fix wrong display of SACKs.Michael Tüxen1-12/+25
svn path=/trunk/; revision=18114
2006-03-30From Irene: Fix problems with off screen drawingsMichael Tüxen1-11/+61
Make rectangle clickable. svn path=/trunk/; revision=17778
2006-03-09Remove MIN and MAX defines, which GLib provides.Gerald Combs1-20/+18
svn path=/trunk/; revision=17551
2006-02-22From Irene Ruengler:Michael Tüxen1-19/+29
Fix bug regarding the lower left edge and the handling of points outside the displayed region. svn path=/trunk/; revision=17373
2006-01-24Replace round() with floor(), I don't know if it's the right thing to do but ↵Anders Broman1-1/+1
at least it compiles on Windows again. svn path=/trunk/; revision=17094
2006-01-23From Irene: Add support for showing TSN and time in the graphical analysis.Michael Tüxen1-12/+91
svn path=/trunk/; revision=17082
2005-08-21Add a "register_dfilter_stat()", to register stats that take a displayGuy Harris1-1/+0
filter as an argument on the command line and have a dialog box to enter the display filter through the GUI. Use it for all stats using "gtk_tap_dfilter_dlg_cb()". Add a top-level "stat_menu.h" file to declare "REGISTER_STAT_GROUP_E" for the benefit of the declaration of "register_dfilter_stat()" in the top-level "tap_dfilter_dlg.h". Rename the "stat_menu.h" in the gtk directory to "gtk_stat_menu.h", so as not to have two headers with the same name. Get rid of headers not declaring any functions not being used in the module. svn path=/trunk/; revision=15493
2005-08-20renamed ui_util.c/.h to gui_utils.c/.h to prevent confusion with identical ↵Ulf Lamping1-1/+1
named ui_util.h in / dir svn path=/trunk/; revision=15465
2005-08-19Move the APIs for registering and processing "-z" command-line argumentsGuy Harris1-1/+1
and "Statistics" menu items into "stat.h" and "stat.c", to separate them from the core tapping APIs. A tap could conceivably not register as a "-z" command-line argument or "Statistics" menu item, and a stat could conceivably not be implemented as a tap, and dissectors that implement tapping points don't need the UI-related stuff from "stat.h", they just want the tap-related stuff in <epan/tap.h>. svn path=/trunk/; revision=15427
2005-07-12From Irene Ruengeler: Handle multiple gap reports correctly and use correct ↵Michael Tüxen1-10/+8
name of a button. svn path=/trunk/; revision=14908
2005-07-08Fix a crash reported by Jeff Morris.Michael Tüxen1-1/+2
svn path=/trunk/; revision=14876