aboutsummaryrefslogtreecommitdiffstats
path: root/asn1
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 /asn1
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 'asn1')
-rw-r--r--asn1/snmp/packet-snmp-template.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/asn1/snmp/packet-snmp-template.c b/asn1/snmp/packet-snmp-template.c
index 160b54cba3..d7114d7e58 100644
--- a/asn1/snmp/packet-snmp-template.c
+++ b/asn1/snmp/packet-snmp-template.c
@@ -2070,12 +2070,12 @@ void proto_register_snmp(void) {
};
module_t *snmp_module;
static uat_field_t fields[] = {
- UAT_FLD_BUFFER(snmp_users,engine_id),
- UAT_FLD_LSTRING(snmp_users,userName),
- UAT_FLD_VS(snmp_users,auth_model,auth_types),
- UAT_FLD_LSTRING(snmp_users,authPassword),
- UAT_FLD_VS(snmp_users,priv_proto,priv_types),
- UAT_FLD_LSTRING(snmp_users,privPassword),
+ UAT_FLD_BUFFER(snmp_users,engine_id,"Engine-id for this entry (empty = any)"),
+ UAT_FLD_LSTRING(snmp_users,userName,"The username"),
+ UAT_FLD_VS(snmp_users,auth_model,auth_types,"Algorithm to be used for authentication."),
+ UAT_FLD_LSTRING(snmp_users,authPassword,"The password used for authenticating packets for this entry"),
+ UAT_FLD_VS(snmp_users,priv_proto,priv_types,"Algorithm to be used for privacy."),
+ UAT_FLD_LSTRING(snmp_users,privPassword,"The password used for encrypting packets for this entry"),
UAT_END_FIELDS
};