summaryrefslogtreecommitdiff
path: root/epan/proto.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-02-13 18:34:51 +0000
committerGuy Harris <guy@alum.mit.edu>2001-02-13 18:34:51 +0000
commitbea00e22cf3bf02eb574ec95a949de069d742b85 (patch)
tree389788fcb826e7159b8c6f0fe729f128f270f8ad /epan/proto.h
parentcb58c92d1dd69a6d72e0a60f00c3c5e248666248 (diff)
downloadwireshark-bea00e22cf3bf02eb574ec95a949de069d742b85.tar.gz
In a display filter expression, make a field name refer to any of the
fields with that name. svn path=/trunk/; revision=3030
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/epan/proto.h b/epan/proto.h
index ce6afbf284..fa07c89040 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -1,7 +1,7 @@
/* proto.h
* Definitions for protocol display
*
- * $Id: proto.h,v 1.6 2001/02/01 20:21:16 gram Exp $
+ * $Id: proto.h,v 1.7 2001/02/13 18:34:49 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -99,7 +99,8 @@ struct _header_field_info {
int id; /* Field ID */
int parent; /* parent protocol */
int bitshift; /* bits to shift */
- header_field_info *same_name; /* Link to next hfinfo with same abbrev*/
+ header_field_info *same_name_next; /* Link to next hfinfo with same abbrev*/
+ header_field_info *same_name_prev; /* Link to previous hfinfo with same abbrev*/
};