Change references to follow TCP stream to just follow stream to reflect

the multi-purpose nature of the follow_stream.c code (you can also follow
SSL and UDP streams with it.)


svn path=/trunk/; revision=25363
This commit is contained in:
Stephen Fisher 2008-05-23 02:33:24 +00:00
parent d6e94dafb3
commit 95caa8f19c
3 changed files with 5 additions and 5 deletions

View File

@ -493,9 +493,9 @@ follow_print_stream(GtkWidget * w _U_, gpointer data)
}
/*
* Keep a static pointer to the current "Save TCP Follow Stream As" window, if
* Keep a static pointer to the current "Save Follow Stream As" window, if
* any, so that if somebody tries to do "Save"
* while there's already a "Save TCP Follow Stream" window up, we just pop
* while there's already a "Save Follow Stream" window up, we just pop
* up the existing one, rather than creating a new one.
*/
void
@ -849,7 +849,7 @@ follow_stream(gchar *title, follow_info_t *follow_info,
if(topic_available(HELP_FILESET_DIALOG)) {
button = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_HELP);
g_signal_connect(button, "clicked", G_CALLBACK(topic_cb),
(gpointer)HELP_FOLLOW_TCP_STREAM_DIALOG);
(gpointer)HELP_FOLLOW_STREAM_DIALOG);
}
/* Tuck away the follow_info object into the window */

View File

@ -275,7 +275,7 @@ topic_action(topic_action_e action)
case(HELP_DECODE_AS_SHOW_DIALOG):
help_topic_html("ChCustProtocolDissectionSection.html");
break;
case(HELP_FOLLOW_TCP_STREAM_DIALOG):
case(HELP_FOLLOW_STREAM_DIALOG):
help_topic_html("ChAdvFollowTCPSection.html");
break;
case(HELP_EXPERT_INFO_DIALOG):

View File

@ -72,7 +72,7 @@ typedef enum {
HELP_ENABLED_PROTOCOLS_DIALOG,
HELP_DECODE_AS_DIALOG,
HELP_DECODE_AS_SHOW_DIALOG,
HELP_FOLLOW_TCP_STREAM_DIALOG,
HELP_FOLLOW_STREAM_DIALOG,
HELP_EXPERT_INFO_DIALOG,
HELP_STATS_SUMMARY_DIALOG,
HELP_STATS_PROTO_HIERARCHY_DIALOG,