aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-netflow.c
diff options
context:
space:
mode:
authorD. Ulis <daulis0@gmail.com>2017-03-25 22:56:38 -0400
committerMichael Mann <mmann78@netscape.net>2017-07-06 13:33:46 +0000
commit564519e57a9c09bf4e45a27bf522032ba9790db6 (patch)
tree7232ff8f2971f20542a806373c945a33cb8ac37a /epan/dissectors/packet-netflow.c
parenta2fe8be60317e9ce74014fb75bf95ac5ac3968e1 (diff)
Ensure expert info fields have a summary.
It's not a requirement, but some dissectors didn't provide a static summary because expert "format" was used. While at it, fix a misleading expert info description, rename expert info variables to ei_... and remove an unused hf entry. Change-Id: Ib81a0d0a3950b3c90954d0053b8dae49dbb0cd51 Reviewed-on: https://code.wireshark.org/review/20567 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/dissectors/packet-netflow.c')
-rw-r--r--epan/dissectors/packet-netflow.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/epan/dissectors/packet-netflow.c b/epan/dissectors/packet-netflow.c
index 9ac96fab06..0ba6011d70 100644
--- a/epan/dissectors/packet-netflow.c
+++ b/epan/dissectors/packet-netflow.c
@@ -16555,7 +16555,7 @@ proto_register_netflow(void)
static ei_register_info ei[] = {
{ &ei_cflow_flowset_length,
{ "cflow.flowset_length.invalid", PI_MALFORMED, PI_WARN,
- NULL, EXPFILL }},
+ "Flow length invalid", EXPFILL }},
{ &ei_cflow_no_flow_information,
{ "cflow.no_flow_information", PI_MALFORMED, PI_WARN,
"No flow information", EXPFILL }},
@@ -16564,31 +16564,31 @@ proto_register_netflow(void)
"No scope fields", EXPFILL }},
{ &ei_cflow_template_ipfix_scope_field_count_too_many,
{ "cflow.template_ipfix_scope_field_count.too_many", PI_MALFORMED, PI_WARN,
- NULL, EXPFILL }},
+ "More IPFIX scopes than can be handled", EXPFILL }},
{ &ei_cflow_options,
{ "cflow.options.too_many", PI_UNDECODED, PI_WARN,
- NULL, EXPFILL }},
+ "More options than can be handled", EXPFILL }},
{ &ei_cflow_scopes,
{ "cflow.scopes.too_many", PI_UNDECODED, PI_WARN,
- NULL, EXPFILL }},
+ "More scopes than can be handled", EXPFILL }},
{ &ei_cflow_entries,
{ "cflow.entries.too_many", PI_UNDECODED, PI_WARN,
- NULL, EXPFILL }},
+ "More entries than can be handled", EXPFILL }},
{ &ei_cflow_mpls_label_bad_length,
{ "cflow.mpls_label.bad_length", PI_UNDECODED, PI_WARN,
- NULL, EXPFILL }},
+ "MPLS-Label bad length", EXPFILL }},
{ &ei_cflow_flowsets_impossible,
{ "cflow.flowsets.impossible", PI_MALFORMED, PI_WARN,
- NULL, EXPFILL }},
+ "FlowSets impossible", EXPFILL }},
{ &ei_cflow_no_template_found,
{ "cflow.no_template_found", PI_MALFORMED, PI_WARN,
- NULL, EXPFILL }},
+ "No template found", EXPFILL }},
{ &ei_transport_bytes_out_of_order,
{ "cflow.transport_bytes.out-of-order", PI_MALFORMED, PI_WARN,
- NULL, EXPFILL}},
+ "Transport Bytes Out of Order", EXPFILL}},
{ &ei_unexpected_sequence_number,
{ "cflow.unexpected_sequence_number", PI_SEQUENCE, PI_WARN,
- NULL, EXPFILL}},
+ "Unexpected flow sequence for domain ID", EXPFILL}},
};
module_t *netflow_module;