aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/hostlist_table.c
AgeCommit message (Collapse)AuthorFilesLines
2005-09-14Have cf_retap_packets() take an argument that indicates whether toGuy Harris1-2/+2
generate columns; use cf_retap_packets instead of cf_redissect_packets() when running taps (the general flow graph stat uses the Info column). svn path=/trunk/; revision=15793
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-10removed tons of MSVC const related warnings.Ulf Lamping1-1/+1
This might at some places interfere with the changes for gcc4, we might have to negotiate in that case :-) Please note that a lot of these warnings were GTK1.x related only! svn path=/trunk/; revision=15286
2005-08-05have the definition of init_hostlist_table *ACTUALLY* match its declaration.Luis Ontanon1-1/+1
svn path=/trunk/; revision=15229
2005-08-05have the definition of init_hostlist_table match the declaration.Luis Ontanon1-1/+1
svn path=/trunk/; revision=15228
2005-08-05More char -> const char warning fixes.Jörg Mayer1-3/+3
Removed (very few) casts that only change the warning message but don't remove it (with gcc-4). svn path=/trunk/; revision=15227
2005-07-09MSVC: fix some guint64 related compiler warnings, could someone please ↵Ulf Lamping1-1/+3
review my comment(s), I don't think it's currently implemented correct svn path=/trunk/; revision=14887
2005-07-07make the packets/bytes counters 64bit integers to not wrap when using really ↵Ronnie Sahlberg1-15/+15
large captures. setting packet counter to 64bit is overkill but makes it consistent with the very similar bytes counter. svn path=/trunk/; revision=14872
2005-06-20From Mike Duigou:Anders Broman1-1/+12
In order to get filtering of conversations and > endpoints to work from the endpoints and conversations windows I found > it necessary to add a new AT_URI address type and a SAT_JXTA. This also > necessitated a change to to_str.c to avoid a buffer overflow problem. > Please review these changes carefully. > > Also includes some changes to the jxta dissector to fix filtering on > generated fields and some changes to the types used for ints/unsigned ints. > > Fixes a bug with the processing of messages containing namespaces. svn path=/trunk/; revision=14714
2005-02-22From Francisco Alcoba:Luis Ontanon1-6/+4
changed the behaviour of get_addr_name: - resolve to a name if the address supports it - call address_to_str if it does not, but the address is valid - return "NONE" if it is AT_NONE svn path=/trunk/; revision=13463
2005-02-04huge cleanup of capture file API (functions in file.c/file.h).Ulf Lamping1-2/+2
This includes: all functions in file.h now have a cf_ prefix, will have doxygen tags, will have the capture_file *cf as the first parameter and I tried to generalize the return values for non trivial functions. Hopefully, I didn't introduced any new bugs, as I had to change a lot of files... svn path=/trunk/; revision=13289
2005-01-20add some more online help functionality and help buttons at various dialog ↵Ulf Lamping1-5/+24
boxes, if a help page *is* available. However, the new help system needs a lot more work before completed. svn path=/trunk/; revision=13152
2005-01-01Make the signatures of functions passed to "register_tap_listener()"Guy Harris1-20/+32
match what "register_tap_listener()" expects (rather than squelching warnings about the differences by casting function pointers to "void *"). Make static some functions not used outside the module in which they're defined. svn path=/trunk/; revision=12913
2004-12-30Add a "get_addr_name()" routine that takes an "address *" and attemptsGuy Harris1-14/+8
to resolve it to a name. Fix up some const-pointer-to-non-const-pointer, and function-pointer-to-void-*, conversions. Fix some comments. svn path=/trunk/; revision=12863
2004-09-29Move the tap infrastructure to the epan directory.Guy Harris1-1/+1
svn path=/trunk/; revision=12128
2004-08-08Put the "copy" button back in the conversation and host list tables.Gerald Combs1-3/+3
svn path=/trunk/; revision=11624
2004-08-06From Albert Chin: rename resolv.{ch} to addr_resolv.{ch}, so that anGuy Harris1-1/+1
include of <resolv.h> in any system header file gets the system <resolv.h> (needed for builds on Tru64 with GTK+ 1.2[.x]). svn path=/trunk/; revision=11615
2004-08-06From Ian Schorr: fix a bug where addresses were drawn to the wrong rowsGuy Harris1-45/+6
in the clist, and get rid of some duplicated code. svn path=/trunk/; revision=11613
2004-07-27from ian schorr: some performance improvements in conversation and hostlist ↵Ulf Lamping1-14/+71
tables, by keep freezing the clist(s) most of the time svn path=/trunk/; revision=11539
2004-07-22use gtk_clipboard_get(), so the "copy to clipboard" is available in all GTK2 ↵Ulf Lamping1-24/+11
versions svn path=/trunk/; revision=11472
2004-07-21GdkDisplay is only available in gtk 2.2 and laterRonnie Sahlberg1-3/+4
it is not available in gtk 2.0 which all of us using more prooven and stable (==obsolete) versions use. svn path=/trunk/; revision=11455
2004-07-20from Thomas Palmer: copy content of hostlist table to clipboard in csv format.Ulf Lamping1-10/+71
svn path=/trunk/; revision=11450
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-07-13Conversation/Endpoint list performance patch from Ian SchorrUlf Lamping1-7/+13
svn path=/trunk/; revision=11373
2004-07-10changed column headers, don't talk of frames but of packetsUlf Lamping1-2/+2
svn path=/trunk/; revision=11361
2004-06-03Make static some routines and variables not used outside the source fileGuy Harris1-48/+48
defining them. Move declarations of some callbacks outside the source files using them into the appropriate header, and arrange that the appropriate header is included by those source files. Move the SAT_E definition into a "sat.h" file, included both by "endpoint_talkers_table.h" and "hostlist_table.h", so that both of the latter headers can be included by the same file ("menu.c" has to include both, as per the change in the previous paragraph). svn path=/trunk/; revision=11096
2004-06-02move "extern GtkWidget *main_display_filter_widget" fromUlf Lamping1-3/+1
various stats files to gtkglobals.h svn path=/trunk/; revision=11073
2004-06-01Make the definition of "add_hostlist_table_data()" match itsGuy Harris1-247/+242
declaration. Give the address and port arguments to "add_hostlist_table_data()" appropriate names and Doxygen comments (they're not a source address and port, they're just an address and port), and do the same for the address and port members of a "hostlist_talker_t". Get rid of extra unnecessary variables in "add_hostlist_table_data()". Clean up indentation. svn path=/trunk/; revision=11066
2004-06-01minor bugfix from previous check inUlf Lamping1-4/+4
svn path=/trunk/; revision=11064
2004-06-01add details for doxygen, various code cleanups as a result of thisUlf Lamping1-2/+4
svn path=/trunk/; revision=11062
2004-05-23use new functions in window API (ui_util.h),Ulf Lamping1-21/+16
use window_new instead of dlg_window_new for the statistics windows (as these are no dialog windows) do some code cleanup svn path=/trunk/; revision=10979
2004-05-07rename context menu items:Ulf Lamping1-17/+30
Match -> Apply as Filter Prepare -> Prepare a Filter and prepended a ... at appropriate submenu items svn path=/trunk/; revision=10814
2004-05-03add name resolution to both endpoint and conversation listsUlf Lamping1-9/+105
svn path=/trunk/; revision=10778
2004-05-02build a endpoints (aka hostlist) dialog,Ulf Lamping1-42/+208
which shows all kinds of endpoints in a notebook svn path=/trunk/; revision=10773
2004-05-02after retapping, immediately redraw table to avoidUlf Lamping1-1/+3
annoying redraw even on "static" capture files svn path=/trunk/; revision=10770
2004-05-01bugfix: remove all elements on "tree reset", don't keep the first entry in ↵Ulf Lamping1-2/+2
the list svn path=/trunk/; revision=10757
2004-04-12added a close button to the dialogsUlf Lamping1-15/+23
svn path=/trunk/; revision=10583
2004-03-13replaced sprintf / snprintf by g_snprintf,Ulf Lamping1-23/+23
various other string related changes svn path=/trunk/; revision=10373
2004-02-23Add a "force" argument to "filter_packets()" andGuy Harris1-2/+2
"main_filter_packets()", to force the filtering to be done even if the filter is the same as the current one; this is necessary in order to make sure "Follow TCP Stream" gets the packets processed even if you're filtering the stream that's currently filtered in. svn path=/trunk/; revision=10209
2004-02-23Make the tap names for host statistics use "hosts" instead of "conv",Guy Harris1-5/+4
and make the tap names for endpoint statistics use "endpoints" instead of "conv". Similarly, make the titles for their windows say "Hosts" or "Endpoints" rather than "Conversations". svn path=/trunk/; revision=10195
2004-02-20FN_{SRC,DST}_ADDRESS and FN_{SRC,DST}_PORT aren't used - get rid ofGuy Harris1-68/+38
them. Add support for "Find Frame" and "Colorize Host Traffic" menus, similar to what the endpoint table has. svn path=/trunk/; revision=10121
2004-02-20From Ian Schorr: taps to keep statistics of traffic by host.Guy Harris1-0/+718
svn path=/trunk/; revision=10120