aboutsummaryrefslogtreecommitdiffstats
path: root/epan/proto.h
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-04-07 12:00:03 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2005-04-07 12:00:03 +0000
commitdf98534657baeb4e3728f051e3a355420bc538cb (patch)
tree96f992e797d8aae723a1ec998324ba8d48c0bb4d /epan/proto.h
parent412e592a120960b79086140706c07b953c3e7456 (diff)
From Didier:
optimization for COLUMNS to make ethereal faster when filtering optimization to make the slow find_protocol_by_id() fast. (idea from Didier, implementation modified by me to be less intrusive) svn path=/trunk/; revision=14026
Diffstat (limited to 'epan/proto.h')
-rw-r--r--epan/proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/proto.h b/epan/proto.h
index b91cc77b0e..db01f62935 100644
--- a/epan/proto.h
+++ b/epan/proto.h
@@ -147,7 +147,7 @@ struct _header_field_info {
char *abbrev; /**< abbreviated name of this field */
enum ftenum type; /**< field type, one of FT_ (from ftypes.h) */
int display; /**< one of BASE_, or number of field bits for FT_BOOLEAN */
- const void *strings; /**< _value_string (or true_false_string for FT_BOOLEAN), typically converted by VALS() or TFS() */
+ const void *strings; /**< _value_string (or true_false_string for FT_BOOLEAN), typically converted by VALS() or TFS() If this is an FT_PROTOCOL then it points to the associated protocol_t structure*/
guint32 bitmask; /**< FT_BOOLEAN only: bitmask of interesting bits */
char *blurb; /**< Brief description of field. */