diff --git a/docbook/release-notes.adoc b/docbook/release-notes.adoc index 23d29f70e6..a7ff24e2f1 100644 --- a/docbook/release-notes.adoc +++ b/docbook/release-notes.adoc @@ -85,13 +85,26 @@ They previously shipped with Npcap 1.20. // "Full protocol name (Abbreviation)" [commaize] -- +Bluetooth Link Manager Protocol (BT LMP) +Event Tracing for Windows (ETW) Kerberos SPAKE +Linux psample protocol +Microsoft Task Scheduler Service O-RAN fronthaul UC-plane (O-RAN) +Opus Interactive Audio Codec (OPUS) PDU Transport Protocol +Real-Time Publish-Subscribe Wire Protocol (processed) (RTPS-PROC) +Real-Time Publish-Subscribe Virtual Transport (RTPS-VT) +Shared Memory Communications (SMC) +Signal PDU SparkplugB State Synchronization Protocol (SSyncP) -UAVCAN\CAN +Tagged Image File Format (TIFF) +TP-Link Smart Home Protocol R09.x (R09) +UAVCAN/CAN +UAVCAN DSDL +Van Jacobson PPP compression (VJC) -- === Updated Protocol Support diff --git a/epan/dissectors/packet-btlmp.c b/epan/dissectors/packet-btlmp.c index 0fc8a0fa07..6384782533 100644 --- a/epan/dissectors/packet-btlmp.c +++ b/epan/dissectors/packet-btlmp.c @@ -2435,7 +2435,7 @@ proto_register_btlmp(void) &ett_btlmp }; - proto_btlmp = proto_register_protocol("Bluetooth LMP Protocol", "BT LMP", "btlmp"); + proto_btlmp = proto_register_protocol("Bluetooth Link Manager Protocol", "BT LMP", "btlmp"); proto_register_field_array(proto_btlmp, hf, array_length(hf)); proto_register_subtree_array(ett, array_length(ett)); btlmp_handle = register_dissector("btlmp", dissect_btlmp, proto_btlmp); diff --git a/epan/dissectors/packet-etw.c b/epan/dissectors/packet-etw.c index dfe5a3db3a..728f630d4c 100644 --- a/epan/dissectors/packet-etw.c +++ b/epan/dissectors/packet-etw.c @@ -304,7 +304,7 @@ proto_register_etw(void) &ett_etw_buffer_context }; - proto_etw = proto_register_protocol("Event Trace Windows", "ETW", "etw"); + proto_etw = proto_register_protocol("Event Tracing for Windows", "ETW", "etw"); proto_register_field_array(proto_etw, hf, array_length(hf)); proto_register_subtree_array(ett, array_length(ett)); } diff --git a/epan/dissectors/packet-smc.c b/epan/dissectors/packet-smc.c index 6ede4690db..d6df5c336f 100644 --- a/epan/dissectors/packet-smc.c +++ b/epan/dissectors/packet-smc.c @@ -1,6 +1,3 @@ - - - /* packet-smc.c * SMC dissector for wireshark * By Joe Fowler diff --git a/epan/dissectors/packet-uavcan-dsdl.c b/epan/dissectors/packet-uavcan-dsdl.c index 3343eeac14..bf8339c689 100644 --- a/epan/dissectors/packet-uavcan-dsdl.c +++ b/epan/dissectors/packet-uavcan-dsdl.c @@ -660,7 +660,7 @@ proto_register_dsdl(void) &ett_dsdl, }; - proto_dsdl = proto_register_protocol("DSDL", "DSDL", "uavcan_dsdl"); + proto_dsdl = proto_register_protocol("UAVCAN DSDL", "DSDL", "uavcan_dsdl"); proto_register_field_array(proto_dsdl, hf, array_length(hf)); proto_register_subtree_array(ett, array_length(ett));