aboutsummaryrefslogtreecommitdiffstats
path: root/summary.h
AgeCommit message (Collapse)AuthorFilesLines
2012-06-28Update Free Software Foundation address.darkjames1-1/+1
(COPYING will be updated in next commit) git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43536 f5534014-38df-0310-8fa8-9805f1628bb7
2012-06-20Use separate filters for the RTT found on a SACK and the RTT found on amorriss1-51/+47
DATA chunk: having them in both places is helpful when looking at the messages but having them separate is helpful when graphing the RTTs. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@43406 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-26Make it possible to edit capture commentsetxrab1-6/+8
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41193 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-26Suppress invalid or non-meaningful statistics - for example, withoutguy1-21/+24
time stamps on all packets in a set, you can't determine the start and end time of the packets in the set (even one timestampless packet throws the determination off - was that packet before the first time-stamped or after the last time-stamped packet, or between them?). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41187 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-23Add SHB info to Summaryetxrab1-0/+5
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41167 f5534014-38df-0310-8fa8-9805f1628bb7
2012-02-23Have the used interfaces show up if number of interfaces > 0.etxrab1-29/+29
(pcapng file). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@41163 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-15Don't show interface info when loading a capture file.tuexen1-1/+1
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@38051 f5534014-38df-0310-8fa8-9805f1628bb7
2011-07-05Add initial support for multiple interfaces. More to come aftertuexen1-3/+13
the capture options dialog box supports also multiple interfaces. This patch has been developed by Irene Ruengeler. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37904 f5534014-38df-0310-8fa8-9805f1628bb7
2009-12-17Added "Ignore Packet" menu items to the main menu.stig1-0/+1
Show ignored packages in the summary dialog. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31289 f5534014-38df-0310-8fa8-9805f1628bb7
2008-10-14Use a more accurate variable name for the wiretap file type. Add the filegerald1-1/+2
encapsulation to the summary display. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@26459 f5534014-38df-0310-8fa8-9805f1628bb7
2007-11-28Summary enhancements:stig1-0/+3
- Added traffic statistics for marked packages. - Do not show Displayed column unless using it. - Removed Marked packets line, as this info is in the marked packets column. Will add documentation changes if keeping this feature. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23633 f5534014-38df-0310-8fa8-9805f1628bb7
2006-11-05change all file offsets from long to gint64 so we can - theoretically - ↵ulfl1-1/+1
handle files > 2GB correct. Please distclean Win32 builds! git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19814 f5534014-38df-0310-8fa8-9805f1628bb7
2006-05-21name changesahlberg1-2/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@18197 f5534014-38df-0310-8fa8-9805f1628bb7
2006-02-17remove dependencies to pcap.h, so getting an idea what needs to be done by ↵ulfl1-1/+0
dumpcap in addition to the things already done now various dumpcap related code cleanup: mainly #include's and capture engine related stuff git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17327 f5534014-38df-0310-8fa8-9805f1628bb7
2005-07-08Make the counters in the summary 64-bit, so they don't overflow onguy1-3/+3
Really Big Captures. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@14875 f5534014-38df-0310-8fa8-9805f1628bb7
2005-03-07- pcap.h needs to be included before capture.hjmayer1-0/+1
- As capture.h is empty without libpcap defined, only include it in that case and don't protect the file internally against libpcap any more. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13648 f5534014-38df-0310-8fa8-9805f1628bb7
2005-02-06minor code cleanupulfl1-1/+3
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13321 f5534014-38df-0310-8fa8-9805f1628bb7
2005-02-06another two steps towards privilege seperation:ulfl1-1/+12
move another two capture related fields (iface and cfilter) from cfile to capture_opts also move the handling of capture related command line options from main.c to capture.c, that way a future privilege seperated capture program can use the same code to parse it's command line than Ethereal. It might be even possible to share this parser code even with Tethereal, didn't took a closer look at this. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13320 f5534014-38df-0310-8fa8-9805f1628bb7
2005-02-04remove #include "globals.h" from summary.c, as it's a bad idea for multiple ↵ulfl1-1/+1
capture files. If a summary user would like to get a summary, it should know the file of *which* it needs the summary. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@13291 f5534014-38df-0310-8fa8-9805f1628bb7
2004-07-18Set the svn:eol-style property on all text files to "native", so thatguy1-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. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11400 f5534014-38df-0310-8fa8-9805f1628bb7
2003-09-02From Jean-Michel Fayard: show in Tools:Summary window statistics aboutguy1-4/+6
packets that passed the current display filter, as well as about the entire capture. Document the Tools:Summary item in the man page. Update Gerald's e-mail address. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8344 f5534014-38df-0310-8fa8-9805f1628bb7
2002-02-08Have Wiretap set the snapshot length to 0 if it can't be derived fromguy1-2/+3
reading the capture file. Have callers of "wtap_snapshot_length()" treat a value of 0 as "unknown", and default to WTAP_MAX_PACKET_SIZE (so that, when writing a capture file in a format that *does* store the snapshot length, we can at least put *something* in the file). If we don't know the snapshot length of the current capture file, don't display a value in the summary window. Don't use "cfile.snap" as the snapshot length option when capturing - doing so causes Ethereal to default, when capturing, to the snapshot length of the last capture file that you read in, rather than to the snapshot length of the last capture you did (or the initial default of "no snapshot length"). Redo the "Capture Options" dialog box to group options into sections with frames around them, and add units to the snapshot length, maximum file size, and capture duration options, as per a suggestion by Ulf Lamping. Also add units to the capture count option. Make the snapshot length, capture count, maximum file size, and capture duration options into a combination of a check box and a spin button. If the check box is not checked, the limit in question is inactive (snapshot length of 65535, no max packet count, no max file size, no max capture duration); if it's checked, the spinbox specifies the limit. Default all of the check boxes to "not checked" and all of the spin boxes to small values. Use "gtk_toggle_button_get_active()" rather than directly fetching the state of a check box. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4709 f5534014-38df-0310-8fa8-9805f1628bb7
2001-02-11In Ethereal, attempt to get the packet statistics from libpcap whenguy1-2/+3
capturing; if we succeed, display the packet drops count as the "Drops" value in the status line and as the "Dropped packets" statistics in the summary dialog box, otherwise don't display it at all. In Tethereal, attempt to get the packet statistics from libpcap when capturing; if we succeed, and if there were any dropped packets, print out the count of dropped packets when the capture finishes. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@3016 f5534014-38df-0310-8fa8-9805f1628bb7
2000-08-21Add the number of marked packets in the summary window.deniel1-1/+2
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@2323 f5534014-38df-0310-8fa8-9805f1628bb7
1999-12-10Move GTK code out of summary.c and into gtk/summary_dlg.cgram1-10/+19
summary.c now provides a struct of info (see summary.h) Changed the name of the summary dialogue callback (hence the change in menu.c), and added a close button to the dialogue. Moved #include <gtk/gtk.h> out of print.c and into prefs.h where it was needed for GdkColor. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1273 f5534014-38df-0310-8fa8-9805f1628bb7
1999-07-13Since ethereal is now dependent on GTK+-1.2.x (because of proto_tree andgram1-2/+2
display filter code, which uses features in GLIB-1.2.x), I removed the vestigial code supporting old 1.0.x and 1.1.x GTK+ versions. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@360 f5534014-38df-0310-8fa8-9805f1628bb7
1999-07-07Created a new protocol tree implementation and a new display filtergram1-2/+2
mechanism that is built into ethereal. Wiretap is now used to read all file formats. Libpcap is used only for capturing. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@342 f5534014-38df-0310-8fa8-9805f1628bb7
1999-06-22Added Aaron Hillegass' summary dialogue. We're ignoring the problem withgram1-0/+46
NetMon statistic packets for now. We might fix that problem with wiretap, either filtering out those packets, and/or providing the summary information through a new wiretap API. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@326 f5534014-38df-0310-8fa8-9805f1628bb7