Release notes: Add new dissectors

Run

git diff --name-only --diff-filter=A v3.5.0rc0.. epan/dissectors/{file,packet}-*.c plugins

and add any missing dissectors to the release notes. Take the liberty of
fixing up some dissector names and clean up some whitespace.
This commit is contained in:
Gerald Combs 2021-05-24 16:28:18 -07:00 committed by Wireshark GitLab Utility
parent 88e792b376
commit bc27fe8274
5 changed files with 17 additions and 7 deletions

View File

@ -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

View File

@ -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);

View File

@ -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));
}

View File

@ -1,6 +1,3 @@
/* packet-smc.c
* SMC dissector for wireshark
* By Joe Fowler <fowlerja@us.ibm.com>

View File

@ -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));