aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/hostlist_table.h
AgeCommit message (Collapse)AuthorFilesLines
2005-08-06Squelch more const warnings (and fix some memory leaks that found).Guy Harris1-1/+1
_U_-ify some unused arguments, rather than assigning them to themselves. Un-constify one variable that gets assigned a mallocated pointer. Clean up indentation. svn path=/trunk/; revision=15236
2005-08-05More char -> const char warning fixes.Jörg Mayer1-2/+2
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-07make the packets/bytes counters 64bit integers to not wrap when using really ↵Ronnie Sahlberg1-4/+4
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-01-01Make the signatures of functions passed to "register_tap_listener()"Guy Harris1-3/+3
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-07-20from Thomas Palmer: copy content of hostlist table to clipboard in csv format.Ulf Lamping1-0/+2
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-06-05add more details for doxygenUlf Lamping1-2/+1
svn path=/trunk/; revision=11122
2004-06-03Make static some routines and variables not used outside the source fileGuy Harris1-9/+10
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-02fix a doxygen commentUlf Lamping1-3/+3
svn path=/trunk/; revision=11070
2004-06-01Make the definition of "add_hostlist_table_data()" match itsGuy Harris1-8/+8
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-01add details for doxygen, various code cleanups as a result of thisUlf Lamping1-28/+64
svn path=/trunk/; revision=11062
2004-05-03add name resolution to both endpoint and conversation listsUlf Lamping1-1/+2
svn path=/trunk/; revision=10778
2004-05-02build a endpoints (aka hostlist) dialog,Ulf Lamping1-2/+5
which shows all kinds of endpoints in a notebook svn path=/trunk/; revision=10773
2004-02-20From Ian Schorr: taps to keep statistics of traffic by host.Guy Harris1-0/+58
svn path=/trunk/; revision=10120