Some more dissector spellings.

This commit is contained in:
Martin Mathieson 2021-08-08 22:21:38 +01:00
parent 03c3c9a056
commit c0faa8f1da
8 changed files with 28 additions and 17 deletions

View File

@ -403,7 +403,7 @@ static proto_tree *top_tree = NULL;
static void set_message_label(asn1_ctx_t *actx, int type)
{
const char *label = val_to_str_const(type, mtype_names, "Unknkown");
const char *label = val_to_str_const(type, mtype_names, "Unknown");
col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, label);
/* N.B. would like to be able to use actx->subTree.top_tree, but not easy to set.. */
proto_item_append_text(top_tree, " (%s)", label);

View File

@ -1442,7 +1442,7 @@ proto_register_edp(void)
/* Link element */
{ &hf_edp_link,
{ "Link", "edp.link", FT_PROTOCOL, BASE_NONE, NULL,
0x0, "Link properties (pysical)", HFILL }},
0x0, "Link properties (physical)", HFILL }},
{ &hf_edp_link_flags,
{ "Flags", "edp.link.flags", FT_UINT8, BASE_HEX, NULL,

View File

@ -3132,7 +3132,7 @@ static proto_tree *top_tree = NULL;
static void set_message_label(asn1_ctx_t *actx, int type)
{
const char *label = val_to_str_const(type, mtype_names, "Unknkown");
const char *label = val_to_str_const(type, mtype_names, "Unknown");
col_append_sep_str(actx->pinfo->cinfo, COL_INFO, NULL, label);
/* N.B. would like to be able to use actx->subTree.top_tree, but not easy to set.. */
proto_item_append_text(top_tree, " (%s)", label);

View File

@ -801,7 +801,7 @@ process_body_part(proto_tree *tree, tvbuff_t *tvb,
tvbuff_t *uncompress_tvb = tvb_uncompress(tmp_tvb, 0, body_len);
if (uncompress_tvb) {
tmp_tvb = uncompress_tvb;
add_new_data_source(pinfo, tmp_tvb, "gunziped data");
add_new_data_source(pinfo, tmp_tvb, "gunzipped data");
}
}
}

View File

@ -670,7 +670,7 @@ static const value_string csi_mode_vals[] = {
static const value_string hi_dci0_pdu_type_vals[] = {
{ 0, "HI" },
{ 1, "DCI UL" },
{ 2, "EDPCCH DCI UL" },
{ 2, "EPDCCH DCI UL" },
{ 3, "MDPCCH DCI UL" },
{ 0, NULL }
};
@ -1133,7 +1133,7 @@ static int hf_prs_muting = -1;
static int hf_nfapi_csi_rs_resource_index = -1;
static int hf_nfapi_csi_rs_class = -1;
static int hf_nfapi_cdm_type = -1;
static int hf_nfapi_edpcch_prb_index = -1;
static int hf_nfapi_epdcch_prb_index = -1;
static int hf_nfapi_epdcch_resource_assignment_flag = -1;
static int hf_nfapi_epdcch_id = -1;
static int hf_nfapi_epdcch_start_symbol = -1;
@ -1778,7 +1778,7 @@ static void dissect_pnf_phy_rel11_instance_value(ptvcursor_t * ptvc, packet_info
item = ptvcursor_add_ret_uint(ptvc, hf_nfapi_epdcch_supported, 2, ENC_BIG_ENDIAN, &test_value);
if (test_value > 1)
{
expert_add_info_format(pinfo, item, &ei_invalid_range, "Invalid edpcch supported value [0..1]");
expert_add_info_format(pinfo, item, &ei_invalid_range, "Invalid epdcch supported value [0..1]");
}
// Multi ACK CSI reporting
@ -4098,13 +4098,13 @@ static void dissect_epdcch_prb_index_value(ptvcursor_t * ptvc, packet_info* pinf
guint32 test_value;
// EPDCCH PRB index
proto_item* item = ptvcursor_add_ret_uint(ptvc, hf_nfapi_edpcch_prb_index, 1, ENC_BIG_ENDIAN, &test_value);
proto_item* item = ptvcursor_add_ret_uint(ptvc, hf_nfapi_epdcch_prb_index, 1, ENC_BIG_ENDIAN, &test_value);
if (test_value > 99)
{
expert_add_info_format(pinfo, item, &ei_invalid_range, "Invalid epdcch prb_index value [0..99]");
}
}
static void dissect_dl_config_request_edpcch_params_rel11_value(ptvcursor_t * ptvc, packet_info* pinfo)
static void dissect_dl_config_request_depdcch_params_rel11_value(ptvcursor_t * ptvc, packet_info* pinfo)
{
proto_item* item;
guint32 test_value, count;
@ -4141,7 +4141,7 @@ static void dissect_dl_config_request_edpcch_params_rel11_value(ptvcursor_t * pt
dissect_bf_vector_type_value(ptvc, pinfo);
}
static void dissect_dl_config_request_edpcch_params_rel13_value(ptvcursor_t * ptvc, packet_info* pinfo)
static void dissect_dl_config_request_depdcch_params_rel13_value(ptvcursor_t * ptvc, packet_info* pinfo)
{
proto_item* item;
guint32 test_value;
@ -7903,8 +7903,8 @@ static const tlv_t p7_tags[] =
{ 0x203E, "DLSCH PDU Release 13", dissect_dl_config_request_dlsch_pdu_rel13_value },
{ 0x203F, "PCH PDU Release 13", dissect_dl_config_request_pch_pdu_rel13_value },
{ 0x2040, "CSI-RS PDU Release 13", dissect_dl_config_request_csi_rs_pdu_rel13_value },
{ 0x2041, "EDPCCH PDU Release 11 Parameters", dissect_dl_config_request_edpcch_params_rel11_value },
{ 0x2042, "EDPCCH PDU Release 13 Parameters", dissect_dl_config_request_edpcch_params_rel13_value },
{ 0x2041, "depdcch PDU Release 11 Parameters", dissect_dl_config_request_depdcch_params_rel11_value },
{ 0x2042, "depdcch PDU Release 13 Parameters", dissect_dl_config_request_depdcch_params_rel13_value },
{ 0x2043, "ULSCH PDU Release 11", dissect_ul_config_ulsch_pdu_rel11_value },
{ 0x2044, "ULSCH PDU Release 13", dissect_ul_config_ulsch_pdu_rel13_value },
{ 0x2045, "CQI RI Information Release 13", dissect_ul_config_cqi_ri_info_rel13_value },
@ -10088,8 +10088,8 @@ void proto_register_nfapi(void)
FT_UINT8, BASE_DEC, VALS(csi_rs_cdm_type_vals), 0x0,
"Indicates CDM type for CSI-RS. See [36.211] section 6.10.5.2. Valid for Class A", HFILL }
},
{ &hf_nfapi_edpcch_prb_index,
{ "EPDCCH PRB Index", "nfapi.edpcch.prb.index",
{ &hf_nfapi_epdcch_prb_index,
{ "EPDCCH PRB Index", "nfapi.epdcch.prb.index",
FT_UINT8, BASE_DEC, NULL, 0x0,
"PRB Index", HFILL }
},

View File

@ -1604,7 +1604,7 @@ static const value_string pfcp_ie_type[] = {
{ 270, "Redundant Transmission Forwarding Parameters"}, /* Extendable / Table 7.5.2.3-4 */
{ 271, "Transport Delay Reporting"}, /* Extendable / Table 7.5.2.2-6 */
{ 272, "Partial Failure Information within PFCP Session Establishment Response"}, /* Extendable / Table 7.5.3.1-2 */
{ 273, "Partial Failure Information within PFCP Session Modificaton Response"}, /* Extendable / Table 7.5.5.1-2 */
{ 273, "Partial Failure Information within PFCP Session Modification Response"}, /* Extendable / Table 7.5.5.1-2 */
{ 274, "Offending IE Information"}, /* Extendable / Clause 8.2.185 */
{ 275, "RAT Type"}, /* Extendable / Clause 8.2.186 */
{ 276, "L2TP Tunnel Information"}, /* Extendable / Table 7.5.2.1-2 */
@ -11821,7 +11821,7 @@ proto_register_pfcp(void)
{ &hf_pfcp_up_function_features_o10_b4_upber,
{ "UPBER", "pfcp.up_function_features.upber",
FT_BOOLEAN, 8, TFS(&tfs_supported_not_supported), 0x10,
"UP function supports the uplink packet bufffering during EAS relocation", HFILL }
"UP function supports the uplink packet buffering during EAS relocation", HFILL }
},
{ &hf_pfcp_up_function_features_o10_b5_resps,
{ "RESPS", "pfcp.up_function_features.resps",

View File

@ -2425,7 +2425,7 @@ static const value_string pn_io_profidrive_format_vals[] = {
{0x66, "Unsigned8+Unsigned8"},
{0x67, "OctetString2+Unsigned8"},
{0x68, "Unsigned16_S"},
{0x69, "Interger16_S"},
{0x69, "Integer16_S"},
{0x6A, "Unsigned8_S"},
{0x6B, "OctetString_S"},
{0x6E, "F message trailer with 4 octets"},

View File

@ -66,9 +66,11 @@ asynchronously
asyncmap
atheros
atomically
atsss
attendee
attrib
attrs
authen
authenticates
authenticator
authenticators
@ -283,6 +285,7 @@ demultiplexer
demultiplexers
deobfuscated
deprecated
deprotection
dequeue
dequeued
dereference
@ -367,6 +370,7 @@ entityid
entryid
enumerations
epasv
epdcch
ericsson
erldp
errinf
@ -401,6 +405,7 @@ firewall
flag1
flag2
flavored
flexray
flowid
flowmod
flowspec
@ -582,8 +587,10 @@ macaddr
macaddress
mailto
malloc
mantissa
manuf
mappable
maxlen
maybefcs
mbits
mcast
@ -621,6 +628,7 @@ modulo
motorola
mpeg4
mpsse
mptcp
mrcpv
msbuild
msgid
@ -811,6 +819,7 @@ qam16
qam64
qnet6
qosinfo
quadrature
quadro
quiescing
quintuplet
@ -1092,6 +1101,7 @@ toggling
toolbar
toolongfragment
tooltip
toshiba
touchlink
touchpad
traceroute
@ -1238,6 +1248,7 @@ v1410
v1530
v1610
validator
verifier
verizon
version2
version3