diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-04-13 20:39:38 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-04-13 20:39:38 +0000 |
commit | b218a8f5504f8bbc83f8e0ef9649cb7df9e109af (patch) | |
tree | 8a453940e94dc4accd5f61af0f2b789b4e0447a0 /summary.c | |
parent | 6a1c248625b669b42b9cedb732f5d39938cd0b74 (diff) | |
download | wireshark-b218a8f5504f8bbc83f8e0ef9649cb7df9e109af.tar.gz wireshark-b218a8f5504f8bbc83f8e0ef9649cb7df9e109af.tar.bz2 wireshark-b218a8f5504f8bbc83f8e0ef9649cb7df9e109af.zip |
Consolidate flags in struct frame_data, and add "visited" flag. Use
it in SOCKS dissector.
(Okay, how many times am I going to modify packet.h today, forcing you
to re-compile everything? :-)
svn path=/trunk/; revision=1850
Diffstat (limited to 'summary.c')
-rw-r--r-- | summary.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ /* summary.c * Routines for capture file summary info * - * $Id: summary.c,v 1.16 1999/12/29 21:30:28 guy Exp $ + * $Id: summary.c,v 1.17 2000/04/13 20:39:18 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -53,7 +53,7 @@ tally_frame_data(frame_data *cur_frame, summary_tally *sum_tally) sum_tally->stop_time = cur_time; } sum_tally->bytes += cur_frame->pkt_len; - if (cur_frame->passed_dfilter) + if (cur_frame->flags.passed_dfilter) sum_tally->filtered_count++; } |