Add dot in Protocol column for H.xxx dissectors

Closes #18524
This commit is contained in:
Stig Bjørlykke 2022-10-24 09:26:14 +02:00
parent 70ebded081
commit 3353a158a9
4 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@
/* debug the mux-pdu defragmentation code. warning: verbose output! */
/* #define DEBUG_H223_FRAGMENTATION */
#define PROTO_TAG_H223 "H223"
#define PROTO_TAG_H223 "H.223"
/* Wireshark ID of the H.223 protocol */
static int proto_h223 = -1;

View File

@ -63,7 +63,7 @@ dissect_h224(tvbuff_t* tvb, packet_info* pinfo, proto_tree* tree, void* data _U_
/* Set the Protocol column to the constant string of h224 */
col_set_str(pinfo->cinfo, COL_PROTOCOL, "h224");
col_set_str(pinfo->cinfo, COL_PROTOCOL, "H.224");
ti = proto_tree_add_item(tree, proto_h224, tvb, offset, -1, ENC_NA);
h224_tree = proto_item_add_subtree(ti, ett_h224);

View File

@ -2468,7 +2468,7 @@ dissect_h264(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_
/* Make entries in Protocol column and Info column on summary display */
col_set_str(pinfo->cinfo, COL_PROTOCOL, "H264");
col_set_str(pinfo->cinfo, COL_PROTOCOL, "H.264");
type = tvb_get_guint8(tvb, offset)&0x1f;

View File

@ -2926,7 +2926,7 @@ dissect_h265(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void* data _U_
/* Make entries in Protocol column and Info column on summary display */
col_set_str(pinfo->cinfo, COL_PROTOCOL, "H265");
col_set_str(pinfo->cinfo, COL_PROTOCOL, "H.265");
guint16 h265_nalu_hextet = tvb_get_guint16(tvb, offset, ENC_BIG_ENDIAN);
type = h265_nalu_hextet >> 9 & 0x3F;