aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-05-15 00:52:02 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-05-15 00:52:02 +0000
commit8da8e54fa673c10d47eba489ecd1b9bbeb5b436d (patch)
treea8bf0a6363e42fd2be8603bfd9cb939238f922a2 /epan
parentfbe2e42bb95ff2ef3587922ff4c21bf7a0483b1e (diff)
remove FI_LINK again,
as this info can be derived from the presence of the FT_FRAMENUM field svn path=/trunk/; revision=10901
Diffstat (limited to 'epan')
-rw-r--r--epan/proto.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/epan/proto.h b/epan/proto.h
index b02464dcc7..2cacd6139c 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -1,7 +1,7 @@
/* proto.h
* Definitions for protocol display
*
- * $Id: proto.h,v 1.67 2004/05/14 15:55:37 ulfl Exp $
+ * $Id: proto.h,v 1.68 2004/05/15 00:52:02 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -163,9 +163,6 @@ typedef struct field_info {
/** The protocol field should be displayed as "generated by Ethereal",
* used in field_info.flags. */
#define FI_GENERATED 0x0002
-/** The protocol field should be displayed as a link to another packet,
- * used in field_info.flags. */
-#define FI_LINK 0x0004
/** convenience macro to get field_info.flags */
#define FI_GET_FLAG(fi, flag) (fi->flags & flag)
@@ -209,12 +206,6 @@ typedef proto_node proto_item;
/** mark this protocol field as generated by Ethereal (and not read from the packet data) */
#define PROTO_ITEM_SET_GENERATED(proto_item) \
((proto_item) ? FI_SET_FLAG(proto_item->finfo, FI_GENERATED) : 0)
-/** is this protocol field a link to another packet? */
-#define PROTO_ITEM_IS_LINK(proto_item) \
- ((proto_item) ? FI_GET_FLAG(proto_item->finfo, FI_LINK) : 0)
-/** mark this protocol field as a link to another packet */
-#define PROTO_ITEM_SET_LINK(proto_item) \
- ((proto_item) ? FI_SET_FLAG(proto_item->finfo, FI_LINK) : 0)
typedef void (*proto_tree_foreach_func)(proto_node *, gpointer);