aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-user_encap.c
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2007-02-12 19:57:41 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2007-02-12 19:57:41 +0000
commitb26c1c4ca2db08b349e65e4e5b061c35a85b2cd6 (patch)
treeb5733c57d2dcc2d6b8bad75c0f974421d91f63cc /epan/dissectors/packet-user_encap.c
parentee4cf097ada10712c9487d773238b0b96a51d282 (diff)
Add a description of UAT fields, and have it as a tooltip in the New/Edit Dialog.
svn path=/trunk/; revision=20797
Diffstat (limited to 'epan/dissectors/packet-user_encap.c')
-rw-r--r--epan/dissectors/packet-user_encap.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/epan/dissectors/packet-user_encap.c b/epan/dissectors/packet-user_encap.c
index 3aa774cf80..097e81689a 100644
--- a/epan/dissectors/packet-user_encap.c
+++ b/epan/dissectors/packet-user_encap.c
@@ -148,12 +148,12 @@ void proto_register_user_encap(void)
module_t *module;
static uat_field_t user_flds[] = {
- UAT_FLD_VS(user_encap,encap,user_dlts),
- UAT_FLD_PROTO(user_encap,payload_proto),
- UAT_FLD_DEC(user_encap,header_size),
- UAT_FLD_PROTO(user_encap,header_proto),
- UAT_FLD_DEC(user_encap,trailer_size),
- UAT_FLD_PROTO(user_encap,trailer_proto),
+ UAT_FLD_VS(user_encap,encap,user_dlts,"The DLT"),
+ UAT_FLD_PROTO(user_encap,payload_proto,"Protocol to be used for the payload of this DLT"),
+ UAT_FLD_DEC(user_encap,header_size,"Size of an eventual header that precedes the actual payload, 0 means none"),
+ UAT_FLD_PROTO(user_encap,header_proto,"Protocol to be used for the header (empty = data)"),
+ UAT_FLD_DEC(user_encap,trailer_size,"Size of an eventual trailer that follows the actual payload, 0 means none"),
+ UAT_FLD_PROTO(user_encap,trailer_proto,"Protocol to be used for the trailer (empty = data)"),
UAT_END_FIELDS
};