summaryrefslogtreecommitdiff
path: root/epan/frame_data.h
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-07-30 23:14:09 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-07-30 23:14:09 +0000
commit9bb17b7b2b62c56349f7893f6db4bec0b71fc9c8 (patch)
treef5aa723966ba22645160f1dbb5715d028efad449 /epan/frame_data.h
parent564c6234fca693005c975e3e70625007baeac7b0 (diff)
downloadwireshark-9bb17b7b2b62c56349f7893f6db4bec0b71fc9c8.tar.gz
Remove interface_id, pack_flags from frame_data structure.
This patch assumes that wtap_phdr interface_id, pack_flags both from initial read and seek read will contain same values. Please fix if it's not. svn path=/trunk/; revision=51041
Diffstat (limited to 'epan/frame_data.h')
-rw-r--r--epan/frame_data.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/epan/frame_data.h b/epan/frame_data.h
index 4fb31e9750..2545b7577c 100644
--- a/epan/frame_data.h
+++ b/epan/frame_data.h
@@ -58,8 +58,6 @@ typedef enum {
typedef struct _frame_data {
GSList *pfd; /**< Per frame proto data */
guint32 num; /**< Frame number */
- guint32 interface_id; /**< identifier of the interface. */
- guint32 pack_flags; /**< Packet Flags */
guint32 pkt_len; /**< Packet length */
guint32 cap_len; /**< Amount actually captured */
guint32 cum_bytes; /**< Cumulative bytes into the capture */
@@ -75,8 +73,6 @@ typedef struct _frame_data {
unsigned int ref_time : 1; /**< 1 = marked as a reference time frame, 0 = normal */
unsigned int ignored : 1; /**< 1 = ignore this frame, 0 = normal */
unsigned int has_ts : 1; /**< 1 = has time stamp, 0 = no time stamp */
- unsigned int has_if_id : 1; /**< 1 = has interface ID, 0 = no interface ID */
- unsigned int has_pack_flags : 1; /**< 1 = has packet flags, 0 = no packet flags */
} flags;
const void *color_filter; /**< Per-packet matching color_filter_t object */