aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/Makefile.am
AgeCommit message (Collapse)AuthorFilesLines
2004-01-22Move the list of headers to "Makefile.am" (it's not used byGuy Harris1-3/+50
"Makefile.nmake"), and rename it to "noinst_HEADERS", as that's what automake requires. svn path=/trunk/; revision=9780
2004-01-22added new Makefile.common just like in root,Ulf Lamping1-212/+7
including sources common in Makefile.am and Makefile.nmake svn path=/trunk/; revision=9776
2004-01-21display_opts.c / .h no longer needed, all items moved to menuitemsUlf Lamping1-5/+1
svn path=/trunk/; revision=9770
2004-01-19added some menuitems "View->Show" including show/hide of all main widgets,Ulf Lamping1-1/+5
saving the states in the recent file svn path=/trunk/; revision=9726
2004-01-09Turn the GTK+ 1.2.10 clist code into our own widget; that lets us modify itGuy Harris1-3/+5
to add functionality or improve performance, although, until we make it work on GTK+ 1.3[.x] and 2.x, we shouldn't count on the performance improvements, or make its API different from that of the GtkClist API (other than names). Move all the code that knows about the packet list into gtk/packet_list.c, so that the GtkClist vs. EthClist stuff is encapsulated inside it. svn path=/trunk/; revision=9608
2003-12-29Nothing in "range.c" is GTK+-specific, so move it to the top-levelGuy Harris1-3/+1
directory. svn path=/trunk/; revision=9487
2003-12-29range.h moved from gtk to .Jörg Mayer1-2/+1
svn path=/trunk/; revision=9484
2003-12-29From Dick Gooris (and me :-)Ulf Lamping1-1/+4
more ways to choose which packets can be saved, in the save(as) dialog box svn path=/trunk/; revision=9476
2003-12-17From Lars Roland: have common code to handle display filter dialogs inGuy Harris1-1/+5
taps, and use that in the H.225 taps. svn path=/trunk/; revision=9327
2003-12-12From Michael Lum:Guy Harris1-1/+3
Fix point code display. Add taps for ANSI MAP and ISUP statistics. svn path=/trunk/; revision=9247
2003-12-09From Michael Lum:Guy Harris1-1/+2
new taps for GSM A-interface; fixes for ANSI A-interface taps. svn path=/trunk/; revision=9220
2003-12-03From Michael Lum: Ethereal tap for ANSI A-interface.Guy Harris1-2/+3
Tweak some Makefile.nmake whitespace. svn path=/trunk/; revision=9159
2003-11-20From Lars Roland:Guy Harris1-2/+3
- added a pointer to raw rtp data to _rtp_info that can be used by taps; - RTP packets are passed to the tap queue only if they are not error packets (so that you don't need to filter out ICMP packets) - use that pointer in rtp_stream, so it handles packets with padding, and should handle RTP packets fragmented across lower-level packets - moved rtp_stream from tap sources to normal files (prevents on-start-up registration of the rtp_stream tap listener) - rtp_stream tap gets registered/unregistered with the "RTP Streams" dialog box i.e. the tap is registered as long as the dialog box is open. Alternatively, it is de-/registered on demand if RTP Analysis is called directly on a packet. - rtp_stream tap listener no longer uses a filter in dissection ` and does not need to have a proto tree being built. (performance increase) - fixed: RTP Streams list will get updated in real time if the dialog box is open while a redissection takes place. svn path=/trunk/; revision=9051
2003-11-19added supported_protos_dlgUlf Lamping1-1/+5
svn path=/trunk/; revision=9020
2003-11-16From Lars Roland Service Response times for H225 RASRonnie Sahlberg1-1/+2
svn path=/trunk/; revision=8978
2003-11-15seperated capture dialog from capture.c and put into new gtk/capture_info_dlg.cUlf Lamping1-1/+3
svn path=/trunk/; revision=8968
2003-11-05update for LDAPRonnie Sahlberg1-1/+2
measure the response time for some LDAP commands and add a service response time dialog for it svn path=/trunk/; revision=8885
2003-10-28From Lars Roland: H.225 message and reason tag counter taps.Guy Harris1-1/+2
svn path=/trunk/; revision=8794
2003-10-15From Ulf Lamping: toolbar.Guy Harris1-1/+5
svn path=/trunk/; revision=8707
2003-09-24From Lars Ruoff: rewritten RTP analysis module.Guy Harris1-3/+11
svn path=/trunk/; revision=8529
2003-09-24Renamed gktclist.[ch] to gtkclist_v12.[ch] to avoid conflicts with theOlivier Abad1-3/+3
real gtkclist.h file when building the gtk+ v2 gui. svn path=/trunk/; revision=8527
2003-09-10Albert Chin:Jörg Mayer1-1/+4
- AM_PROC_LIBTOOL is just an alias for AC_PROG_LIBTOOL, which is called earlier. - Use AM_CPPFLAGS instead of CFLAGS and CPPFLAGS to add inlude directories svn path=/trunk/; revision=8445
2003-09-10Have "get_interface_list()" return a list of "if_info_t" structuresGuy Harris1-1/+5
containing a pointer to an interface name and possibly a pointer to an interface description (although that pointer might be null if no description is available), rather than having the Windows version glue together the name and description into a single string. Supply for the Linux "any" device the same description that libpcap's "pcap_findalldevs()" returns. svn path=/trunk/; revision=8440
2003-09-02From Jean-Michel Fayard: BOOTP/DHCP, HTTP, and WSP statistics taps.Guy Harris1-2/+5
svn path=/trunk/; revision=8345
2003-08-29Add endpoint talkers support for FDDI to ethereal and tetherealRonnie Sahlberg1-1/+2
Welcome FDDI into the endpoint talkers family. Nobody gets left behind! svn path=/trunk/; revision=8310
2003-08-24Add endpoint talker support for IPXRonnie Sahlberg1-1/+2
svn path=/trunk/; revision=8240
2003-08-23Add FibreChannel to the types of protocols we can show a conversation list forRonnie Sahlberg1-1/+2
svn path=/trunk/; revision=8223
2003-08-23New feature. Statistics/EndpointTalkjers can now present a sortable table ↵Ronnie Sahlberg1-6/+14
with a list of all seen conversations of a certain type. Supported types are Ethernet/TokenRing/IP/UDP and TCP. Will add FibreChannel soon. The framework for this feature needs to be enhanced in the future so that by selecting one entry and click the right mousebutton, this will bring up a menu with Prepare/Match options with suboptions for AnyDirection, ForwardOnly or ReverseOnly which updates the display filter accordingly. Had to update some of the taps as well to change them to use a proper address structure for the address fields. We should now be able to to these stats correctly even for ip tunneled over ip tunnelled over ip ... svn path=/trunk/; revision=8222
2003-06-25Service Response Time measurements and statistics for Fibre ChannelRonnie Sahlberg1-1/+2
svn path=/trunk/; revision=7932
2003-06-21Break out the code for the ahndling of the Service Response Time (formerly ↵Ronnie Sahlberg1-1/+5
known as RoundTripTime) table and change the table into a scrollable CList. As a first conversion to use the helper routines, convert DCERPC SRT statistics to use the new interface. This prevents some interfaces (SAMR/LSA) that contains a huge number of procedures from creating a huge table that does not fir on the screen. Later changes to the helpers may be to make the different columns sortable or to hide those procedures that has not been seen in the capture. svn path=/trunk/; revision=7903
2003-04-25From Lars Roland:Guy Harris1-1/+5
Filter dialog for the MGCP statistics tap. Routines for building GUI table displays for statistics taps. Use the timestats.c routines in the SMB statistics tap. svn path=/trunk/; revision=7561
2003-04-24From Didier Gautheron: the files being processed by make-tapreg-dotc areGuy Harris1-2/+2
in srcdir, not top_srcdir. svn path=/trunk/; revision=7551
2003-04-23Have "register_tap_menu_item()" create submenus as necessary for a menuGuy Harris1-7/+1
item. Convert all Ethereal (GUI) taps to use "register_tap_menu_item()" rather than having hardcoded menu items in "gtk/menu.c". svn path=/trunk/; revision=7541
2003-04-23Allow taps to have menu item registration routines; the menu itemGuy Harris1-3/+2
registration routines, for taps with menu items (taps that can be run from the "Tools->Statistics" menu), create the menu item for the tap. "make-tapreg-dotc" constructs a "register_all_tap_menus()" function that calls all the tap menu item registration routines it finds, and Ethereal calls that routine after the main window has been constructed (so that the main menu exists, as the menu items are added to it). (Tethereal doesn't call it.) Get rid of the "menu" and "menu_init" arguments to "register_ethereal_tap"; the menu item is registered in the tap's menu item registration routine, not in its main registration routine. Have the RTP GUI tap register its menu item that way, rather than by having it compiled into "gtk/menu.c". (We're not ready yet to have taps whose menu items are under a submenu register themselves in that fashion, as "register_tap_menu_item()" can't yet create submenus.) svn path=/trunk/; revision=7540
2003-04-16From Lars Roland:Guy Harris1-1/+3
Add Response-Time statistics for each known mgcp message-type. Fix a few bugs and remove trailing whitespace. Use "gdouble" for printing time-values and calculating the average. It is easier to use and shouldn't overflow on big trace files like "guint32". Move some functions for time statistics into the new file timestats.c in the main directory. This code may be useful in the rpc and smb rtt-taps as well. svn path=/trunk/; revision=7469
2003-03-06From Miha Jemec :Ronnie Sahlberg1-2/+4
Functionality to reassemble a RTP stream and save it as a file. Support for G.711 coded svn path=/trunk/; revision=7297
2003-01-22SMB RTT statistics for tethereal and ethereal.Ronnie Sahlberg1-2/+4
SMB RTT statistics are similar to the RTT statistics already supported by ONC-RPC and DCE-RPC. It will present a table with all seen SMB commands and present the Min/Max and Avg response time in ms. Transaction2 and NT-Transaction commands are broken out and presented in its own subtables. tethereal feature is activated with -z smb,rtt switch and in ethereal it is activated either through -0z smb,rtt switch or through the Menu. svn path=/trunk/; revision=6966
2003-01-08Sort the filenames a bit more.Guy Harris1-3/+3
svn path=/trunk/; revision=6873
2003-01-08Separate the routines to allocate colors from the routines to handleGuy Harris1-3/+7
color filters. svn path=/trunk/; revision=6872
2002-12-03Add compat_macros.h to the tarballJörg Mayer1-1/+2
svn path=/trunk/; revision=6732
2002-11-14Feature for Gtk2: GUI version of IO-STAT. Looks reasonable with one graph. ↵Ronnie Sahlberg1-1/+3
Looks "sub-optimal" with multiple graphs overwriting eachothers. We can just delete it later if it cant be improved visually. svn path=/trunk/; revision=6629
2002-11-14From Didier Gautheron: make the rule to build "ethereal-tap-register.c"Guy Harris1-3/+3
work when a build is done outside the source tree, and make "ethereal-tap-register.c" depend on the script that builds it. svn path=/trunk/; revision=6626
2002-11-09Helper macros fro gtk1.2/gtk2 compatibility.Olivier Abad1-1/+2
It should reduce the number of #ifdefs in gtk source code. svn path=/trunk/; revision=6596
2002-11-07Fix the message printed when making "ethereal-tap-register.c".Guy Harris1-2/+2
svn path=/trunk/; revision=6573
2002-11-06First step in creating an API to register TAPs for use with ethereal instead ↵Ronnie Sahlberg1-15/+20
of hardcoding them in main.c/menu.c This adds functions to register the command line arguments to use the API in the same way as is done for tethereal. Later it may be extended to also register the GUI/Menu entry point to ethereal using this api but that iwll be later since the changes required to menu.c are not as intrusive as the main.c command line parsing ones were. Some of the latest changes (before this checkin) has made ethereal to produce lots of GTK errors when starting up the extension windows. They were there before this checking but will be investigated. svn path=/trunk/; revision=6566
2002-11-03Merge gtk and gtk2 directories.Olivier Abad1-1/+78
svn path=/trunk/; revision=6552
2002-10-25From Ronnie Sahlberg: Ethereal support for DCERPCSTAT.Guy Harris1-1/+3
svn path=/trunk/; revision=6499
2002-09-21Removed all gtk calls in file.c :Olivier Abad1-1/+2
- created a few packet_list_xxx functions (ui_util.h gtk/packet_list.c gtk2/packet_list.c) ; - removed almost all "gtk/xxx" and "gtk2/xxx" includes in file.c The only remaining includes are related to color filters. We have to make color_filter_t GUI independent by replacing GdkColor with color_t. I'll work on this later. svn path=/trunk/; revision=6311
2002-09-07Tap system supprot for Gtk1 and both rpc_stat and rpc_progsRonnie Sahlberg1-1/+5
Gtk1 is still single threaded so if the tap extensions need to do something time consuming or cpu intensive, then the main application will suffer. It is better than nothing. svn path=/trunk/; revision=6215
2002-08-31Remove trailing whitespaces.Jörg Mayer1-5/+5
svn path=/trunk/; revision=6155