zigbee/isis-clv/wsdg: depreciate -> deprecate

zigbee per Document 07-5356-19
Unchanged: packet-cfm.c per ITU standard
packet-opa-mad.c - unable to confirm status
This commit is contained in:
Chuck Craft 2022-03-26 10:40:50 -05:00 committed by A Wireshark GitLab Utility
parent d2907d91c0
commit 4476db5798
4 changed files with 7 additions and 5 deletions

View File

@ -102,6 +102,8 @@ They previously shipped with Npcap 1.55.
* macOS debugging symbols are now shipped in separate packages.
* ZigBee ZCL Messaging: rename zbee_zcl_se.msg.msg_ctrl.depreciated to zbee_zcl_se.msg.msg_ctrl.deprecated
=== Removed Features and Support
* CMake: The options starting with DISABLE_something were renamed ENABLE_something for consistency.

View File

@ -42,7 +42,7 @@ https://www.itu.int/en/ITU-T/asn1/Pages/asn1_project.aspx[the ASN.1 Consortium's
The compiler needs 4 input files: an ASN.1 description of a protocol, a .cnf file, and two template files.
The ASN.1 specification may have to be edited to work, however work is in progress to at least read all ASN1 specifications.
Changing the ASN1 file is being depreciated as this creates problems when updating protocols.
Changing the ASN1 file is being deprecated as this creates problems when updating protocols.
The H.248 Binary encoding dissector is a good example of a dissector with relatively small changes.
A complete <<SimpleASN1BasedDissector,simple ASN1 UDP-based dissector>> is also available.

View File

@ -46,7 +46,7 @@
#define ISIS_CLV_EXT_IP_REACH 130 /* rfc1195, rfc2966 */
#define ISIS_CLV_IDRP_INFO 131 /* rfc1195 */
#define ISIS_CLV_IP_ADDR 132 /* rfc1195 */
#define ISIS_CLV_IP_AUTHENTICATION 133 /* rfc1195, depreciated */
#define ISIS_CLV_IP_AUTHENTICATION 133 /* rfc1195, deprecated in rfc3787 */
#define ISIS_CLV_TE_ROUTER_ID 134 /* draft-ietf-isis-traffic-05 */
#define ISIS_CLV_EXTD_IP_REACH 135 /* draft-ietf-isis-traffic-05 */
#define ISIS_CLV_HOSTNAME 137 /* rfc2763 */

View File

@ -8023,7 +8023,7 @@ static gint ett_zbee_zcl_msg = -1;
static gint ett_zbee_zcl_msg_message_control = -1;
static gint ett_zbee_zcl_msg_ext_message_control = -1;
static expert_field ei_zbee_zcl_msg_msg_ctrl_depreciated = EI_INIT;
static expert_field ei_zbee_zcl_msg_msg_ctrl_deprecated = EI_INIT;
/* Message Control Transmission */
static const value_string zbee_zcl_msg_ctrl_tx_names[] = {
@ -8221,7 +8221,7 @@ dissect_zcl_msg_cancel(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, guin
*offset += 1;
if (msg_ctrl != 0x00) {
expert_add_info(pinfo, tree, &ei_zbee_zcl_msg_msg_ctrl_depreciated);
expert_add_info(pinfo, tree, &ei_zbee_zcl_msg_msg_ctrl_deprecated);
}
} /* dissect_zcl_msg_cancel */
@ -8436,7 +8436,7 @@ proto_register_zbee_zcl_msg(void)
/* Expert Info */
expert_module_t* expert_zbee_zcl_msg;
static ei_register_info ei[] = {
{ &ei_zbee_zcl_msg_msg_ctrl_depreciated, { "zbee_zcl_se.msg.msg_ctrl.depreciated", PI_PROTOCOL, PI_WARN, "Message Control depreciated in this message, should be 0x00", EXPFILL }},
{ &ei_zbee_zcl_msg_msg_ctrl_deprecated, { "zbee_zcl_se.msg.msg_ctrl.deprecated", PI_PROTOCOL, PI_WARN, "Message Control deprecated in this message, should be 0x00", EXPFILL }},
};
/* Register the ZigBee ZCL Messaging cluster protocol name and description */