summaryrefslogtreecommitdiff
path: root/plugins/opcua/opcua_security_layer.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/opcua/opcua_security_layer.c')
-rw-r--r--plugins/opcua/opcua_security_layer.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/plugins/opcua/opcua_security_layer.c b/plugins/opcua/opcua_security_layer.c
index b68f8aa36c..04a90b8a77 100644
--- a/plugins/opcua/opcua_security_layer.c
+++ b/plugins/opcua/opcua_security_layer.c
@@ -36,15 +36,10 @@ void registerSecurityLayerTypes(int proto)
{
static hf_register_info hf[] =
{
- { &hf_opcua_security_tokenid,
- { "Security Token Id", "security.tokenid", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
- },
- { &hf_opcua_security_seq,
- { "Security Sequence Number", "security.seq", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
- },
- { &hf_opcua_security_rqid,
- { "Security RequestId", "security.rqid", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL }
- }
+ /* id full name abbreviation type display strings bitmask blurb HFILL */
+ {&hf_opcua_security_tokenid, {"Security Token Id", "security.tokenid", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL}},
+ {&hf_opcua_security_seq, {"Security Sequence Number", "security.seq", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL}},
+ {&hf_opcua_security_rqid, {"Security RequestId", "security.rqid", FT_UINT32, BASE_DEC, NULL, 0x0, NULL, HFILL}}
};
proto_register_field_array(proto, hf, array_length(hf));
}