aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/endpoint_talkers_fc.c
AgeCommit message (Collapse)AuthorFilesLines
2004-07-20renamed endpoint_talkers to conversations, as this reduces confusion in ↵Ulf Lamping1-89/+0
combination with the hostlist/endpoints table (some code refactoring still needs to be done in table.c/.h). svn path=/trunk/; revision=11439
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-1/+1
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410
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-05-02build a conversation (aka endpoint_talkers) dialog,Ulf Lamping1-1/+3
which shows all kinds of conversations in a notebook svn path=/trunk/; revision=10771
2004-02-23statistics menu redesigned, now looking more like the former menu,Ulf Lamping1-2/+2
items now again grouped by function, not by ISO layer svn path=/trunk/; revision=10202
2004-02-22Redesigned the menu structure of the former statistics stuff,Ulf Lamping1-11/+4
now sorted by ISO-layer, than alphabetically (now longer by functionality). Seperated the tap registering from the actual menu making stuff, so the seperate step of registering the tap and the menu is no longer needed. Removed all things related to this double registering. svn path=/trunk/; revision=10180
2004-02-11Most taps that now include "tap_menu.h" no longer need to includeGuy Harris1-3/+1
<stdio.h> to define FILE; get rid of the include. svn path=/trunk/; revision=10034
2004-02-11Move the declaration of "register_tap_menu_item()" into a newGuy Harris1-2/+2
"tap_menu.h" file, and have the Ethereal taps include that rather than "menu.h", so we don't have to worry about making sure we've included <stdio.h> to define FILE, etc. just because some "menu.h" functions require it. svn path=/trunk/; revision=10031
2004-01-03Make Analyze/Statistics have an accelerator of Alt+A S and moveRichard Sharpe1-2/+2
Analyze/Summary to Alt+A Y. svn path=/trunk/; revision=9537
2003-12-17From Lars Roland: have common code to handle display filter dialogs inGuy Harris1-2/+2
taps, and use that in the H.225 taps. svn path=/trunk/; revision=9327
2003-09-24Pass a pointer to a "capture_file" structure toGuy Harris1-3/+2
"set_menus_for_selected_packet()" and "set_menus_for_selected_tree_row()", and have them decide whether to enable or disable menu items based on whether that structure indicates that a packet or field is selected and, if one is, on its properties. Pass to the "selected packet enabled" routine for a menu item the "frame_data" and "edt" members of the "capture_file" structure, and pass to the "selected tree row enabled" routine the "field_info" member of that structure. Clear "cf->current_frame" if no packet is selected. svn path=/trunk/; revision=8525
2003-09-19Provide a mechanism by which a tap can arrange to have its menu enabledGuy Harris1-2/+3
or disabled based on a currently-selected packet (or lack of same) or a currently-selected protocol tree item (or lack of same). Not currently used, but necessary if we ever make the TCP graph stuff a tap. API is tentative and subject to change. Also, enable and disable taps based on whether we have any packets to process. svn path=/trunk/; revision=8498
2003-09-17Have "register_tap_menu_item()" put the item under Tools, notGuy Harris1-2/+2
Tools/Statistics; change the taps to put things under Statistics themselves. That allows taps to go elsewhere if appropriate. svn path=/trunk/; revision=8488
2003-09-15Get rid of a bunch of unnecessary #includes.Guy Harris1-8/+3
svn path=/trunk/; revision=8478
2003-09-04Update to the conversations list.Ronnie Sahlberg1-6/+6
Rename it from Endpoint Talkers to : Conversation List Change command line arguments to both tethereal and ethereal to be -z conv,<type> to reflect the new name Conversations This is the last time the tethereal cmd line arg is changed. But now it has a proper intuitive name at least. io,users was weird talkers was too close to names used in other tools svn path=/trunk/; revision=8379
2003-09-04Update to endpoint talkers. move lots of duplicated code into teh helper ↵Ronnie Sahlberg1-39/+2
endpoint_talkers_table.c svn path=/trunk/; revision=8377
2003-09-04Uglify endpoint_talkers_table.cRonnie Sahlberg1-11/+3
make it know how to build the filter strings, address and port hf_ fields properly so TCP and UDP works and is agnostic on whether ipv4 or ipv6 is used as transport svn path=/trunk/; revision=8368
2003-09-02When putting the filename in the titlebarRonnie Sahlberg1-2/+3
just put the filename there and not the full path to the file. svn path=/trunk/; revision=8329
2003-08-30Remove the individual reset functions and replace with a common one in the ↵Ronnie Sahlberg1-14/+3
helpers file. cleanup part 5? svn path=/trunk/; revision=8320
2003-08-30step 3 in endpoint talkers cleanupRonnie Sahlberg1-11/+2
get rid of the draw_packets wrapper in the individual endpoint files svn path=/trunk/; revision=8319
2003-08-30step two in endpoint talkers cleanupRonnie Sahlberg1-16/+2
move the windows destroy function to the common helpers file svn path=/trunk/; revision=8318
2003-08-30step one in endpoint talkers cleanupRonnie Sahlberg1-30/+24
svn path=/trunk/; revision=8317
2003-08-27 Updates for the endpoint talkers thingRonnie Sahlberg1-2/+10
The table now has a popup menu with Match display filter Selected EP1 <-> EP2 EP1 --> EP2 EP1 <-- EP2 EP1 --> ANY EP1 <-- ANY EP2 --> ANY EP2 <-- ANY Not Selected ... ... Prepare Display Filter ... Self explanatory. Now the bad news. I set the display filter box in the main window and i call redissect_packet which redissects the packet list but the displayfilter does not take or affect the main window until i click the apply button. Some signal needs to be raised to some object me thinks. Please feel free to fix it if you know what is missing. svn path=/trunk/; revision=8279
2003-08-26All endpoint talkers table taps use "address_to_str()" as the routine toGuy Harris1-2/+2
use to translate addresses to strings - wire that into "endpoint_talkers_table.c", don't pass the function as an argument to "init_ett_table()". svn path=/trunk/; revision=8263
2003-08-25Update to IO-Stat to put the capture filename on the titlebarRonnie Sahlberg1-3/+7
to make it easier to navigate when having multiple instances of ethereal and io-stat open at the same time. Updates to all endpoint talkers and service response time windows to do this as well. Bonus, when the user opens a new capture file when having these windows open, the title bar will be updated to reflect the name of the new capture file. svn path=/trunk/; revision=8251
2003-08-24Get rid of the wrappers around "address_to_str()".Guy Harris1-9/+2
svn path=/trunk/; revision=8245
2003-08-24Update address_to_str to handle FC and ETH addresses as well.Ronnie Sahlberg1-13/+2
Update the fc and eth and tr endpoint talker list to use the new api svn path=/trunk/; revision=8235
2003-08-23Add FibreChannel to the types of protocols we can show a conversation list forRonnie Sahlberg1-0/+191
svn path=/trunk/; revision=8223