aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/wtap.h
diff options
context:
space:
mode:
authorDavid Perry <boolean263@protonmail.com>2021-07-12 12:41:57 -0400
committerDavid Perry <boolean263@protonmail.com>2021-07-12 12:41:57 -0400
commit06ed6930dc602b5b3b1a79a176272c1846840f8f (patch)
treef56b5523b9409634357f1a3aa440dea69d3f1f5a /wiretap/wtap.h
parent86e2fda11e199b8d0e874147e60a1ba1f0ddb803 (diff)
Carry EPB flags as an option on the packet block
As requested by [this comment][1] on !2859, move `pack_flags` from a dedicated field in `wtap_rec` to a block option on the packet block in `wtap_rec.block`. [1]: https://gitlab.com/wireshark/wireshark/-/merge_requests/2859#note_615984624
Diffstat (limited to 'wiretap/wtap.h')
-rw-r--r--wiretap/wtap.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/wiretap/wtap.h b/wiretap/wtap.h
index 598d24a3f4..2a1764922b 100644
--- a/wiretap/wtap.h
+++ b/wiretap/wtap.h
@@ -1223,7 +1223,6 @@ typedef struct {
/* options */
guint64 drop_count; /* number of packets lost (by the interface and the
operating system) between this packet and the preceding one. */
- guint32 pack_flags; /* various flags, as per pcapng EPB */
guint32 interface_queue; /* queue of the interface the packet was received on. */
guint64 packet_id; /* unique packet identifier */
@@ -1379,7 +1378,6 @@ typedef struct {
#define WTAP_HAS_CAP_LEN 0x00000002 /**< captured length separate from on-the-network length */
#define WTAP_HAS_INTERFACE_ID 0x00000004 /**< interface ID */
#define WTAP_HAS_DROP_COUNT 0x00000010 /**< drop count */
-#define WTAP_HAS_PACK_FLAGS 0x00000020 /**< packet flags */
#define WTAP_HAS_PACKET_ID 0x00000040 /**< packet id */
#define WTAP_HAS_INT_QUEUE 0x00000080 /**< interface queue */