aboutsummaryrefslogtreecommitdiffstats
path: root/epan/tap.h
diff options
context:
space:
mode:
Diffstat (limited to 'epan/tap.h')
-rw-r--r--epan/tap.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/tap.h b/epan/tap.h
index 4b6f72e5ef..fa801c2a49 100644
--- a/epan/tap.h
+++ b/epan/tap.h
@@ -40,8 +40,9 @@ typedef void (*tap_draw_cb)(void *tapdata);
#define TL_REQUIRES_NOTHING 0x00000000 /**< nothing */
#define TL_REQUIRES_PROTO_TREE 0x00000001 /**< full protocol tree */
#define TL_REQUIRES_COLUMNS 0x00000002 /**< columns */
+#define TL_REQUIRES_ERROR_PACKETS 0x00000004 /**< include packet even if pinfo->flags.in_error_pkt is set */
/** Flags to indicate what the tap listener does */
-#define TL_IS_DISSECTOR_HELPER 0x00000004 /**< tap helps a dissector do work
+#define TL_IS_DISSECTOR_HELPER 0x00000008 /**< tap helps a dissector do work
** but does not, itself, require dissection */
#ifdef HAVE_PLUGINS