aboutsummaryrefslogtreecommitdiffstats
path: root/epan/packet_info.h
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2011-11-08 18:39:11 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2011-11-08 18:39:11 +0000
commit647c5c0b27e834ea4b7972a31b357a078f93243f (patch)
tree1a4461ad4786db83858b22614f47a4e6d46c7942 /epan/packet_info.h
parent6de2561c69e7b4ec2fa50103d69f197dd3a214cf (diff)
packet_info's in_error_pkt is now a bitfield like in_gre_pkt.
svn path=/trunk/; revision=39764
Diffstat (limited to 'epan/packet_info.h')
-rw-r--r--epan/packet_info.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/packet_info.h b/epan/packet_info.h
index c0a7c3f4b0..95e1045f46 100644
--- a/epan/packet_info.h
+++ b/epan/packet_info.h
@@ -65,8 +65,8 @@ typedef struct _packet_info {
guint32 circuit_id; /* circuit ID, for protocols with a VC identifier */
const char *noreassembly_reason; /* reason why reassembly wasn't done, if any */
gboolean fragmented; /* TRUE if the protocol is only a fragment */
- gboolean in_error_pkt; /* TRUE if we're inside an {ICMP,CLNP,...} error packet */
struct {
+ guint32 in_error_pkt:1; /* TRUE if we're inside an {ICMP,CLNP,...} error packet */
guint32 in_gre_pkt:1; /* TRUE if we're encapsulated inside a GRE packet */
} flags;
port_type ptype; /* type of the following two port numbers */