Updated to use new PI_RECEIVE and PI_INTERFACE extert Info categories

This commit is contained in:
Stephen Donnelly 2024-02-02 16:31:06 +13:00 committed by AndersBroman
parent 1e0e261b23
commit 15c4bccee1
1 changed files with 10 additions and 10 deletions

View File

@ -3866,16 +3866,16 @@ proto_register_erf(void)
static ei_register_info ei[] = {
{ &ei_erf_mc_hdlc_checksum_error, { "erf.mchdlc.checksum.error", PI_CHECKSUM, PI_ERROR, "ERF MC HDLC FCS Error", EXPFILL }},
{ &ei_erf_mc_hdlc_short_error, { "erf.mchdlc.short.error", PI_PROTOCOL, PI_ERROR, "ERF MC HDLC Short Record Error, <5 bytes", EXPFILL }},
{ &ei_erf_mc_hdlc_long_error, { "erf.mchdlc.long.error", PI_PROTOCOL, PI_ERROR, "ERF MC HDLC Long Record Error, >2047 bytes", EXPFILL }},
{ &ei_erf_mc_hdlc_abort_error, { "erf.mchdlc.abort.error", PI_PROTOCOL, PI_ERROR, "ERF MC HDLC Aborted Frame Error", EXPFILL }},
{ &ei_erf_mc_hdlc_octet_error, { "erf.mchdlc.octet.error", PI_PROTOCOL, PI_ERROR, "ERF MC HDLC Octet Error, the closing flag was not octet aligned after bit unstuffing", EXPFILL }},
{ &ei_erf_mc_hdlc_lost_byte_error, { "erf.mchdlc.lost_byte.error", PI_PROTOCOL, PI_ERROR, "ERF MC HDLC Lost Byte Error", EXPFILL }},
{ &ei_erf_rx_error, { "erf.rx.error", PI_CHECKSUM, PI_ERROR, "ERF RX Error", EXPFILL }},
{ &ei_erf_ds_error, { "erf.ds.error", PI_PROTOCOL, PI_ERROR, "ERF DS Error", EXPFILL }},
{ &ei_erf_truncation_error, { "erf.truncation.error", PI_PROTOCOL, PI_ERROR, "ERF Truncation Error", EXPFILL }},
{ &ei_erf_packet_loss, { "erf.packet_loss", PI_SEQUENCE, PI_WARN, "Packet loss occurred between previous and current packet", EXPFILL }},
{ &ei_erf_extension_headers_not_shown, { "erf.ehdr.more_not_shown", PI_SEQUENCE, PI_WARN, "More extension headers were present, not shown", EXPFILL }},
{ &ei_erf_mc_hdlc_short_error, { "erf.mchdlc.short.error", PI_RECEIVE, PI_ERROR, "ERF MC HDLC Short Record Error, <5 bytes", EXPFILL }},
{ &ei_erf_mc_hdlc_long_error, { "erf.mchdlc.long.error", PI_RECEIVE, PI_ERROR, "ERF MC HDLC Long Record Error, >2047 bytes", EXPFILL }},
{ &ei_erf_mc_hdlc_abort_error, { "erf.mchdlc.abort.error", PI_RECEIVE, PI_ERROR, "ERF MC HDLC Aborted Frame Error", EXPFILL }},
{ &ei_erf_mc_hdlc_octet_error, { "erf.mchdlc.octet.error", PI_RECEIVE, PI_ERROR, "ERF MC HDLC Octet Error, the closing flag was not octet aligned after bit unstuffing", EXPFILL }},
{ &ei_erf_mc_hdlc_lost_byte_error, { "erf.mchdlc.lost_byte.error", PI_RECEIVE, PI_ERROR, "ERF MC HDLC Lost Byte Error", EXPFILL }},
{ &ei_erf_rx_error, { "erf.rx.error", PI_INTERFACE, PI_ERROR, "ERF RX Error", EXPFILL }},
{ &ei_erf_ds_error, { "erf.ds.error", PI_INTERFACE, PI_ERROR, "ERF DS Error", EXPFILL }},
{ &ei_erf_truncation_error, { "erf.truncation.error", PI_INTERFACE, PI_ERROR, "ERF Truncation Error", EXPFILL }},
{ &ei_erf_packet_loss, { "erf.packet_loss", PI_INTERFACE, PI_WARN, "Packet loss occurred between previous and current packet", EXPFILL }},
{ &ei_erf_extension_headers_not_shown, { "erf.ehdr.more_not_shown", PI_INTERFACE, PI_WARN, "More extension headers were present, not shown", EXPFILL }},
{ &ei_erf_meta_section_len_error, { "erf.meta.section_len.error", PI_PROTOCOL, PI_ERROR, "Provenance Section Length incorrect", EXPFILL }},
{ &ei_erf_meta_truncated_record, { "erf.meta.truncated_record", PI_MALFORMED, PI_ERROR, "Provenance truncated record", EXPFILL }},
{ &ei_erf_meta_truncated_tag, { "erf.meta.truncated_tag", PI_PROTOCOL, PI_ERROR, "Provenance truncated tag", EXPFILL }},