Clean up some strings - "UTF8" to "UTF-8", etc..

Clean up the display of addresses a bit, and the use of verbs in some
field descriptions.

Change-Id: I3d2d4fc4cd13503924abecee55adfaa899385ffb
Reviewed-on: https://code.wireshark.org/review/954
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2014-04-03 19:26:43 -07:00
parent 5bb64c00b6
commit c5e29ac9a5
3 changed files with 30 additions and 30 deletions

View File

@ -6453,7 +6453,7 @@ proto_register_afp(void)
"Message Requested", HFILL }}, "Message Requested", HFILL }},
{ &hf_afp_message_bitmap_UTF, { &hf_afp_message_bitmap_UTF,
{ "Message is UTF8", "afp.message_bitmap.utf8", { "Message is UTF-8", "afp.message_bitmap.utf8",
FT_BOOLEAN, 16, NULL, 0x02, FT_BOOLEAN, 16, NULL, 0x02,
NULL, HFILL }}, NULL, HFILL }},

View File

@ -1045,7 +1045,7 @@ dissect_asp_reply_get_status(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *
if ((flag & AFPSRVRINFO_SRVUTF8) && ofs < machine_ofs) { if ((flag & AFPSRVRINFO_SRVUTF8) && ofs < machine_ofs) {
utf_ofs = tvb_get_ntohs(tvb, ofs); utf_ofs = tvb_get_ntohs(tvb, ofs);
proto_tree_add_text(tree, tvb, ofs, 2, "UTF-8 Server name offset: %u", utf_ofs); proto_tree_add_text(tree, tvb, ofs, 2, "UTF-8 server name offset: %u", utf_ofs);
utf_ofs += offset; utf_ofs += offset;
} }
} }
@ -1105,29 +1105,29 @@ dissect_asp_reply_get_status(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *
type = tvb_get_guint8(tvb, ofs +1); type = tvb_get_guint8(tvb, ofs +1);
switch (type) { switch (type) {
case 1: /* IP */ case 1: /* IP */
ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "ip %s", tvb_ip_to_str(tvb, ofs+2)); ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "IP: %s", tvb_ip_to_str(tvb, ofs+2));
break; break;
case 2: /* IP + port */ case 2: /* IP + port */
port = tvb_get_ntohs(tvb, ofs+6); port = tvb_get_ntohs(tvb, ofs+6);
ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "ip %s:%u", ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "IP: %s:%u",
tvb_ip_to_str(tvb, ofs+2), port); tvb_ip_to_str(tvb, ofs+2), port);
break; break;
case 3: /* DDP, atalk_addr_to_str want host order not network */ case 3: /* DDP, atalk_addr_to_str want host order not network */
net = tvb_get_ntohs(tvb, ofs+2); net = tvb_get_ntohs(tvb, ofs+2);
node = tvb_get_guint8(tvb, ofs +4); node = tvb_get_guint8(tvb, ofs +4);
port = tvb_get_guint8(tvb, ofs +5); port = tvb_get_guint8(tvb, ofs +5);
ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "ddp %u.%u:%u", ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "DDP: %u.%u:%u",
net, node, port); net, node, port);
break; break;
case 5: /* IP + port ssh tunnel */ case 5: /* IP + port ssh tunnel */
port = tvb_get_ntohs(tvb, ofs+6); port = tvb_get_ntohs(tvb, ofs+6);
ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "ip (ssh tunnel) %s:%u", ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "IP (SSH tunnel): %s:%u",
tvb_ip_to_str(tvb, ofs+2), port); tvb_ip_to_str(tvb, ofs+2), port);
break; break;
case 4: /* DNS */ case 4: /* DNS */
if (len > 2) { if (len > 2) {
tmp = (gchar*)tvb_get_string(wmem_packet_scope(), tvb, ofs +2, len -2); tmp = (gchar*)tvb_get_string(wmem_packet_scope(), tvb, ofs +2, len -2);
ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "dns %s", tmp); ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "DNS: %s", tmp);
break; break;
} }
/* else fall to default malformed record */ /* else fall to default malformed record */
@ -1163,7 +1163,7 @@ dissect_asp_reply_get_status(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *
ofs = utf_ofs; ofs = utf_ofs;
ulen = tvb_get_ntohs(tvb, ofs); ulen = tvb_get_ntohs(tvb, ofs);
tmp = (gchar*)tvb_get_string(wmem_packet_scope(), tvb, ofs + 2, ulen); tmp = (gchar*)tvb_get_string(wmem_packet_scope(), tvb, ofs + 2, ulen);
ti = proto_tree_add_text(tree, tvb, ofs, ulen +2, "UTF8 server name: %s", tmp); ti = proto_tree_add_text(tree, tvb, ofs, ulen +2, "UTF-8 server name: %s", tmp);
sub_tree = proto_item_add_subtree(ti, ett_asp_utf8_name); sub_tree = proto_item_add_subtree(ti, ett_asp_utf8_name);
proto_tree_add_uint(sub_tree, hf_asp_server_utf8_name_len, tvb, ofs, 2, ulen); proto_tree_add_uint(sub_tree, hf_asp_server_utf8_name_len, tvb, ofs, 2, ulen);
ofs += 2; ofs += 2;
@ -2217,9 +2217,9 @@ proto_register_atalk(void)
FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVDIRECTORY, FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVDIRECTORY,
"Server support directory services", HFILL }}, "Server support directory services", HFILL }},
{ &hf_asp_server_flag_utf8_name, { &hf_asp_server_flag_utf8_name,
{ "Support UTF8 server name", "asp.server_flag.utf8_name", { "Support UTF-8 server name", "asp.server_flag.utf8_name",
FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVUTF8, FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVUTF8,
"Server support UTF8 server name", HFILL }}, "Server support UTF-8 server name", HFILL }},
{ &hf_asp_server_flag_fast_copy, { &hf_asp_server_flag_fast_copy,
{ "Support fast copy", "asp.server_flag.fast_copy", { "Support fast copy", "asp.server_flag.fast_copy",
FT_BOOLEAN, 16, NULL, AFPSRVRINFO_FASTBOZO, FT_BOOLEAN, 16, NULL, AFPSRVRINFO_FASTBOZO,
@ -2241,12 +2241,12 @@ proto_register_atalk(void)
"Address value", HFILL }}, "Address value", HFILL }},
{ &hf_asp_server_utf8_name_len, { &hf_asp_server_utf8_name_len,
{ "Server name length", "asp.server_utf8_name_len", { "UTF-8 server name length", "asp.server_utf8_name_len",
FT_UINT16, BASE_DEC, NULL, 0x0, FT_UINT16, BASE_DEC, NULL, 0x0,
"UTF8 server name length", HFILL }}, "UTF-8 server name length", HFILL }},
{ &hf_asp_server_utf8_name, { &hf_asp_server_utf8_name,
{ "Server name (UTF8)", "asp.server_utf8_name", { "UTF-8 server name", "asp.server_utf8_name",
FT_STRING, BASE_NONE, NULL, 0x0, FT_STRING, BASE_NONE, NULL, 0x0,
NULL, HFILL }}, NULL, HFILL }},
}; };

View File

@ -361,7 +361,7 @@ dissect_dsi_reply_get_status(tvbuff_t *tvb, proto_tree *tree, gint offset)
if ((flag & AFPSRVRINFO_SRVUTF8)) { if ((flag & AFPSRVRINFO_SRVUTF8)) {
ofs += 2; ofs += 2;
utf_ofs = tvb_get_ntohs(tvb, ofs); utf_ofs = tvb_get_ntohs(tvb, ofs);
proto_tree_add_text(tree, tvb, ofs, 2, "UTF8 server name offset: %d", utf_ofs); proto_tree_add_text(tree, tvb, ofs, 2, "UTF-8 server name offset: %d", utf_ofs);
utf_ofs += offset; utf_ofs += offset;
} }
} }
@ -433,13 +433,13 @@ dissect_dsi_reply_get_status(tvbuff_t *tvb, proto_tree *tree, gint offset)
break; break;
case 2: /* IP + port */ case 2: /* IP + port */
port = tvb_get_ntohs(tvb, ofs+6); port = tvb_get_ntohs(tvb, ofs+6);
ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "ip %s:%d", tvb_ip_to_str(tvb, ofs+2), port); ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "IP: %s:%d", tvb_ip_to_str(tvb, ofs+2), port);
break; break;
case 3: /* DDP, atalk_addr_to_str want host order not network */ case 3: /* DDP, atalk_addr_to_str want host order not network */
net = tvb_get_ntohs(tvb, ofs+2); net = tvb_get_ntohs(tvb, ofs+2);
node = tvb_get_guint8(tvb, ofs +4); node = tvb_get_guint8(tvb, ofs +4);
port = tvb_get_guint8(tvb, ofs +5); port = tvb_get_guint8(tvb, ofs +5);
ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "ddp: %u.%u:%u", ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "DDP: %u.%u:%u",
net, node, port); net, node, port);
break; break;
case 4: /* DNS */ case 4: /* DNS */
@ -447,7 +447,7 @@ dissect_dsi_reply_get_status(tvbuff_t *tvb, proto_tree *tree, gint offset)
if (len > 2) { if (len > 2) {
tmp = tvb_get_string(wmem_packet_scope(), tvb, ofs +2, len -2); tmp = tvb_get_string(wmem_packet_scope(), tvb, ofs +2, len -2);
ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "%s: %s", ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "%s: %s",
(type==4)?"dns":"ssh tunnel", tmp); (type==4)?"DNS":"IP (SSH tunnel)", tmp);
break; break;
} }
else { else {
@ -455,12 +455,12 @@ dissect_dsi_reply_get_status(tvbuff_t *tvb, proto_tree *tree, gint offset)
} }
break; break;
case 6: /* IP6 */ case 6: /* IP6 */
ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "ip6: %s", ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "IPv6: %s",
tvb_ip6_to_str(tvb, ofs+2)); tvb_ip6_to_str(tvb, ofs+2));
break; break;
case 7: /* IP6 + 2bytes port */ case 7: /* IP6 + 2bytes port */
port = tvb_get_ntohs(tvb, ofs+ 2+INET6_ADDRLEN); port = tvb_get_ntohs(tvb, ofs+ 2+INET6_ADDRLEN);
ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "ip6 %s:%d", ti = proto_tree_add_text(adr_tree, tvb, ofs, len, "IPv6: %s:%d",
tvb_ip6_to_str(tvb, ofs+2), port); tvb_ip6_to_str(tvb, ofs+2), port);
break; break;
default: default:
@ -497,7 +497,7 @@ dissect_dsi_reply_get_status(tvbuff_t *tvb, proto_tree *tree, gint offset)
ofs = utf_ofs; ofs = utf_ofs;
ulen = tvb_get_ntohs(tvb, ofs); ulen = tvb_get_ntohs(tvb, ofs);
tmp = tvb_get_string(wmem_packet_scope(), tvb, ofs + 2, ulen); tmp = tvb_get_string(wmem_packet_scope(), tvb, ofs + 2, ulen);
ti = proto_tree_add_text(tree, tvb, ofs, ulen + 2, "UTF8 server name: %s", tmp); ti = proto_tree_add_text(tree, tvb, ofs, ulen + 2, "UTF-8 server name: %s", tmp);
sub_tree = proto_item_add_subtree(ti, ett_dsi_utf8_name); sub_tree = proto_item_add_subtree(ti, ett_dsi_utf8_name);
proto_tree_add_uint(sub_tree, hf_dsi_utf8_server_name_len, tvb, ofs, 2, ulen); proto_tree_add_uint(sub_tree, hf_dsi_utf8_server_name_len, tvb, ofs, 2, ulen);
ofs += 2; ofs += 2;
@ -685,11 +685,11 @@ proto_register_dsi(void)
"Reserved for future use. Should be set to zero.", HFILL }}, "Reserved for future use. Should be set to zero.", HFILL }},
/* asp , afp */ /* asp , afp */
{ &hf_dsi_utf8_server_name_len, { &hf_dsi_utf8_server_name_len,
{ "Length", "dsi.utf8_server_name_len", { "UTF-8 server name length", "dsi.utf8_server_name_len",
FT_UINT16, BASE_DEC, NULL, 0x0, FT_UINT16, BASE_DEC, NULL, 0x0,
"UTF8 server name length.", HFILL }}, "UTF-8 server name length.", HFILL }},
{ &hf_dsi_utf8_server_name, { &hf_dsi_utf8_server_name,
{ "UTF8 Server name", "dsi.utf8_server_name", { "UTF-8 server name", "dsi.utf8_server_name",
FT_STRING, BASE_NONE, NULL, 0x0, FT_STRING, BASE_NONE, NULL, 0x0,
NULL, HFILL }}, NULL, HFILL }},
@ -755,23 +755,23 @@ proto_register_dsi(void)
{ &hf_dsi_server_flag_tcpip, { &hf_dsi_server_flag_tcpip,
{ "Support TCP/IP", "dsi.server_flag.tcpip", { "Support TCP/IP", "dsi.server_flag.tcpip",
FT_BOOLEAN, 16, NULL, AFPSRVRINFO_TCPIP, FT_BOOLEAN, 16, NULL, AFPSRVRINFO_TCPIP,
"Server support TCP/IP", HFILL }}, "Server supports TCP/IP", HFILL }},
{ &hf_dsi_server_flag_notify, { &hf_dsi_server_flag_notify,
{ "Support server notifications", "dsi.server_flag.notify", { "Support server notifications", "dsi.server_flag.notify",
FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVNOTIFY, FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVNOTIFY,
"Server support notifications", HFILL }}, "Server supports notifications", HFILL }},
{ &hf_dsi_server_flag_reconnect, { &hf_dsi_server_flag_reconnect,
{ "Support server reconnect", "dsi.server_flag.reconnect", { "Support server reconnect", "dsi.server_flag.reconnect",
FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVRECONNECT, FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVRECONNECT,
"Server support reconnect", HFILL }}, "Server supports reconnect", HFILL }},
{ &hf_dsi_server_flag_directory, { &hf_dsi_server_flag_directory,
{ "Support directory services", "dsi.server_flag.directory", { "Support directory services", "dsi.server_flag.directory",
FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVDIRECTORY, FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVDIRECTORY,
"Server support directory services", HFILL }}, "Server supports directory services", HFILL }},
{ &hf_dsi_server_flag_utf8_name, { &hf_dsi_server_flag_utf8_name,
{ "Support UTF8 server name", "dsi.server_flag.utf8_name", { "Support UTF-8 server name", "dsi.server_flag.utf8_name",
FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVUTF8, FT_BOOLEAN, 16, NULL, AFPSRVRINFO_SRVUTF8,
"Server support UTF8 server name", HFILL }}, "Server supports UTF-8 server name", HFILL }},
{ &hf_dsi_server_flag_uuid, { &hf_dsi_server_flag_uuid,
{ "Support UUIDs", "dsi.server_flag.uuids", { "Support UUIDs", "dsi.server_flag.uuids",
FT_BOOLEAN, 16, NULL, AFPSRVRINFO_UUID, FT_BOOLEAN, 16, NULL, AFPSRVRINFO_UUID,
@ -783,7 +783,7 @@ proto_register_dsi(void)
{ &hf_dsi_server_flag_fast_copy, { &hf_dsi_server_flag_fast_copy,
{ "Support fast copy", "dsi.server_flag.fast_copy", { "Support fast copy", "dsi.server_flag.fast_copy",
FT_BOOLEAN, 16, NULL, AFPSRVRINFO_FASTBOZO, FT_BOOLEAN, 16, NULL, AFPSRVRINFO_FASTBOZO,
"Server support fast copy", HFILL }}, "Server supports fast copy", HFILL }},
{ &hf_dsi_server_addr_len, { &hf_dsi_server_addr_len,