aboutsummaryrefslogtreecommitdiffstats
path: root/epan/frame_data.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-12-17 01:18:14 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-12-17 01:18:14 +0000
commit47be3577a731492ab1667fdc39233094051c01a6 (patch)
tree8239ff427bfe4e5c475b4f8429f0fef9186cf773 /epan/frame_data.h
parentfaec4bde007d7d17da690477b7736059394c09fd (diff)
Introduce "Ignore Packet" in the packet list.
This will remove the package from the dissection functions without removing it from the capture file. svn path=/trunk/; revision=31287
Diffstat (limited to 'epan/frame_data.h')
-rw-r--r--epan/frame_data.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/frame_data.h b/epan/frame_data.h
index a9c178625f..1a4f9ff6f0 100644
--- a/epan/frame_data.h
+++ b/epan/frame_data.h
@@ -56,6 +56,7 @@ typedef struct _frame_data {
unsigned int visited : 1; /* Has this packet been visited yet? 1=Yes,0=No*/
unsigned int marked : 1; /* 1 = marked by user, 0 = normal */
unsigned int ref_time : 1; /* 1 = marked as a reference time frame, 0 = normal */
+ unsigned int ignored : 1; /* 1 = ignore this frame, 0 = normal */
} flags;
const void *color_filter; /* Per-packet matching color_filter_t object */