More dissector table UI name changes (a continuation of r51904).

svn path=/trunk/; revision=51907
This commit is contained in:
Chris Maynard 2013-09-09 22:30:40 +00:00
parent bc48d52d04
commit d3f277c015
8 changed files with 12 additions and 10 deletions

View File

@ -1735,7 +1735,8 @@ proto_register_aim(void)
" To use this option, you must also enable \"Allow subdissectors to reassemble TCP streams\" in the TCP protocol settings.",
&aim_desegment);
subdissector_table = register_dissector_table("aim.family", "Family ID", FT_UINT16, BASE_HEX);
subdissector_table = register_dissector_table("aim.family",
"AIM Family ID", FT_UINT16, BASE_HEX);
}
void

View File

@ -444,7 +444,7 @@ proto_register_btavctp(void)
reassembling = wmem_tree_new_autoreset(wmem_epan_scope(), wmem_file_scope());
avctp_service_dissector_table = register_dissector_table("btavctp.service", "AVCTP Service", FT_UINT16, BASE_HEX);
avctp_service_dissector_table = register_dissector_table("btavctp.service", "BT AVCTP Service", FT_UINT16, BASE_HEX);
proto_btavctp = proto_register_protocol("Bluetooth AVCTP Protocol", "BT AVCTP", "btavctp");
register_dissector("btavctp", dissect_btavctp, proto_btavctp);

View File

@ -904,10 +904,10 @@ proto_register_dcp_etsi (void)
dcp_dissector_table = register_dissector_table("dcp-etsi.sync",
"DCP Sync", FT_STRING, BASE_NONE);
af_dissector_table = register_dissector_table("dcp-af.pt",
"AF Payload Type", FT_UINT8, BASE_DEC);
"DCP-AF Payload Type", FT_UINT8, BASE_DEC);
tpl_dissector_table = register_dissector_table("dcp-tpl.ptr",
"AF Payload Type", FT_STRING, BASE_NONE);
"DCP-TPL Protocol Type & Revision", FT_STRING, BASE_NONE);
register_init_routine(dcp_init_protocol);

View File

@ -398,7 +398,8 @@ void proto_register_ecp_oui(void)
&ett_802_1qbg_capabilities_flags,
};
ieee802a_add_oui(OUI_IEEE_802_1QBG, "ieee802a.ecp_pid", "ECP", &hf_reg);
ieee802a_add_oui(OUI_IEEE_802_1QBG, "ieee802a.ecp_pid",
"IEEE802a ECP PID", &hf_reg);
proto_ecp = proto_register_protocol("ECP Protocol", "ECP", "ecp");
proto_register_field_array(proto_ecp, hf, array_length(hf));

View File

@ -1674,6 +1674,6 @@ void
proto_reg_handoff_card_app_toolkit(void)
{
sms_dissector_table =
register_dissector_table("etsi_cat.sms_tpdu", "3GPP SMS TPDU",
FT_UINT8, BASE_DEC);
register_dissector_table("etsi_cat.sms_tpdu",
"ETSI CAT SMS TPDU", FT_UINT8, BASE_DEC);
}

View File

@ -391,7 +391,7 @@ void proto_register_1722(void)
/* Sub-dissector for 1772.1 */
avb_dissector_table = register_dissector_table("ieee1722.subtype",
"AVBTP Subtype", FT_UINT8, BASE_HEX);
"IEEE1722 AVBTP Subtype", FT_UINT8, BASE_HEX);
}
void proto_reg_handoff_1722(void)

View File

@ -474,7 +474,7 @@ proto_register_null(void)
/* subdissector code */
null_dissector_table = register_dissector_table("null.type",
"BSD AF_ type", FT_UINT32, BASE_DEC);
"Null type", FT_UINT32, BASE_DEC);
}
void

View File

@ -547,7 +547,7 @@ proto_register_ccid(void)
&sub_selected, sub_enum_vals, FALSE);
ccid_dissector_table = register_dissector_table("usbccid.payload",
"CCID Payload", FT_UINT8, BASE_DEC);
"USBCCID Payload", FT_UINT8, BASE_DEC);
register_dissector("usbccid", dissect_ccid, proto_ccid);
}