aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/conversations_table.c
AgeCommit message (Collapse)AuthorFilesLines
2006-12-29Fix for bug #1278: Stephen Fisher1-2/+8
"When analysing a trace with 802.11 packages (made by airpcap) and selecting Statistics->Conversation List->WLAN all wlan conversations are listed. When after this selecting Apply as filter->Selected->A<->B a display filter is created as eth.addr==<A> && eth.addr==<B> when if should be wlan.addr==<A> && wlan.addr==<B>" svn path=/trunk/; revision=20234
2006-10-17from Stephen Fisher:Ulf Lamping1-2/+2
Here is a patch for spelling typos in comments and strings in the gtk/ directories. svn path=/trunk/; revision=19568
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2006-03-02From Greg Morris:Anders Broman1-0/+4
- Change to display NCP connection for each conversation - New NCP Endpoints. Please apply expert_comp_table - Use local variable space instead of pointer. The previous implementation utilized pointers and the values would change the table data. svn path=/trunk/; revision=17446
2006-01-20Cleaning up copy to CSV codeJaap Keuter1-13/+13
svn path=/trunk/; revision=17064
2005-10-20From Greg Morris, patch to allow proper search/filtering ofGilbert Ramirez1-1/+8
NCP conversations. svn path=/trunk/; revision=16278
2005-09-16Sort each conversation column numerically. Fix up whitespace.Gerald Combs1-55/+71
It looks like we can't put "COPYCMD=/Y" in config.nmake and expect nmake to do the right thing. Add a comment, and set COPYCMD explicitly in the root Makefile.nmake. The rest of the occurrences of xcopy will have to be taken care of at some point. svn path=/trunk/; revision=15840
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-25Fix sorting in the "Ports" columns. Add a comment about address sorting.Gerald Combs1-12/+16
Remove unused code. svn path=/trunk/; revision=15529
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-05More char -> const char warning fixes.Jörg Mayer1-9/+9
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-0/+42
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-4/+0
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-22/+31
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-31In column sort routines, make the row pointers "const" pointers, as theGuy Harris1-2/+2
arguments passed in corresponding to those pointers are gconstpointers. svn path=/trunk/; revision=12884
2004-12-30Fix some cut-and-pasteos.Guy Harris1-2/+2
svn path=/trunk/; revision=12866
2004-12-30Add a "get_addr_name()" routine that takes an "address *" and attemptsGuy Harris1-22/+11
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-73/+8
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-13/+97
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-8/+6
versions svn path=/trunk/; revision=11472
2004-07-22from Thomas Palmer: add "Copy to clipboard" button to the conversation table ↵Ulf Lamping1-19/+72
dialogs svn path=/trunk/; revision=11471
2004-07-20refactoring and renaming finishedUlf Lamping1-139/+139
svn path=/trunk/; revision=11449
2004-07-20some more renaming of the conversation tables thingsUlf Lamping1-285/+285
svn path=/trunk/; revision=11448
2004-07-20renamed endpoint_talkers to conversations, as this reduces confusion in ↵Ulf Lamping1-0/+1521
combination with the hostlist/endpoints table (some code refactoring still needs to be done in table.c/.h). svn path=/trunk/; revision=11439