From 1e3be59fbe19416d9c84495e4e7bc1c95b1cf9f2 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Tue, 5 May 2015 15:18:38 -0700 Subject: =?UTF-8?q?WildPackets=20=E2=86=92=20Savvius.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I2494c2b1dcc9e324535b3f659b51b44059c478bd Reviewed-on: https://code.wireshark.org/review/8304 Reviewed-by: Gerald Combs --- wiretap/file_access.c | 12 ++++++------ wiretap/peekclassic.c | 10 +++++----- wiretap/peektagged.c | 12 ++++++------ 3 files changed, 17 insertions(+), 17 deletions(-) (limited to 'wiretap') diff --git a/wiretap/file_access.c b/wiretap/file_access.c index 0dfba98041..ff23cb2eb3 100644 --- a/wiretap/file_access.c +++ b/wiretap/file_access.c @@ -143,7 +143,7 @@ static const struct file_extension_info file_type_extensions_base[] = { { "Colasoft Capsa", "cscpkt" }, { "Novell LANalyzer", "tr1" }, { "Tektronix K12xx 32-bit .rf5 format", "rf5" }, - { "WildPackets *Peek", "pkt;tpc;apc;wpz" }, + { "Savvius *Peek", "pkt;tpc;apc;wpz" }, { "Catapult DCT2000 trace (.out format)", "out" }, { "MPEG files", "mpg;mp3" }, { "TamoSoft CommView", "ncf" }, @@ -340,7 +340,7 @@ static struct open_info open_info_base[] = { { "Visual Networks traffic capture", OPEN_INFO_MAGIC, visual_open, NULL, NULL, NULL }, { "InfoVista 5View capture", OPEN_INFO_MAGIC, _5views_open, NULL, NULL, NULL }, { "Network Instruments Observer", OPEN_INFO_MAGIC, network_instruments_open, NULL, NULL, NULL }, - { "WildPackets tagged", OPEN_INFO_MAGIC, peektagged_open, NULL, NULL, NULL }, + { "Savvius tagged", OPEN_INFO_MAGIC, peektagged_open, NULL, NULL, NULL }, { "Colasoft Capsa", OPEN_INFO_MAGIC, capsa_open, NULL, NULL, NULL }, { "DBS Etherwatch (VMS)", OPEN_INFO_MAGIC, dbs_etherwatch_open, NULL, NULL, NULL }, { "Tektronix K12xx 32-bit .rf5 format", OPEN_INFO_MAGIC, k12_open, NULL, NULL, NULL }, @@ -381,7 +381,7 @@ static struct open_info open_info_base[] = { { "Endace ERF capture", OPEN_INFO_HEURISTIC, erf_open, "erf", NULL, NULL }, { "IPFIX File Format", OPEN_INFO_HEURISTIC, ipfix_open, "pfx;ipfix",NULL, NULL }, { "K12 text file", OPEN_INFO_HEURISTIC, k12text_open, "txt", NULL, NULL }, - { "WildPackets classic", OPEN_INFO_HEURISTIC, peekclassic_open, "pkt;tpc;apc;wpz", NULL, NULL }, + { "Savvius classic", OPEN_INFO_HEURISTIC, peekclassic_open, "pkt;tpc;apc;wpz", NULL, NULL }, { "pppd log (pppdump format)", OPEN_INFO_HEURISTIC, pppdump_open, NULL, NULL, NULL }, { "IBM iSeries comm. trace", OPEN_INFO_HEURISTIC, iseries_open, "txt", NULL, NULL }, { "I4B ISDN trace", OPEN_INFO_HEURISTIC, i4btrace_open, NULL, NULL, NULL }, @@ -1423,17 +1423,17 @@ static const struct file_type_subtype_info dump_open_table_base[] = { visual_dump_can_write_encap, visual_dump_open, NULL }, /* WTAP_FILE_TYPE_SUBTYPE_PEEKCLASSIC_V56 */ - { "WildPackets classic (V5 and V6)", "peekclassic56", "pkt", "tpc;apc;wpz", + { "Savvius classic (V5 and V6)", "peekclassic56", "pkt", "tpc;apc;wpz", FALSE, FALSE, 0, NULL, NULL, NULL }, /* WTAP_FILE_TYPE_SUBTYPE_PEEKCLASSIC_V7 */ - { "WildPackets classic (V7)", "peekclassic7", "pkt", "tpc;apc;wpz", + { "Savvius classic (V7)", "peekclassic7", "pkt", "tpc;apc;wpz", FALSE, FALSE, 0, NULL, NULL, NULL }, /* WTAP_FILE_TYPE_SUBTYPE_PEEKTAGGED */ - { "WildPackets tagged", "peektagged", "pkt", "tpc;apc;wpz", + { "Savvius tagged", "peektagged", "pkt", "tpc;apc;wpz", FALSE, FALSE, 0, NULL, NULL, NULL }, diff --git a/wiretap/peekclassic.c b/wiretap/peekclassic.c index 613018e2dd..44a960a896 100644 --- a/wiretap/peekclassic.c +++ b/wiretap/peekclassic.c @@ -1,9 +1,9 @@ /* peekclassic.c - * Routines for opening files in what WildPackets calls the classic file - * format in the description of their "PeekRdr Sample Application" (C++ - * source code to read their capture files, downloading of which requires - * a maintenance contract, so it's not free as in beer and probably not - * as in speech, either). + * Routines for opening files in what Savvius (formerly WildPackets) calls + * the classic file format in the description of their "PeekRdr Sample + * Application" (C++ source code to read their capture files, downloading + * of which requires a maintenance contract, so it's not free as in beer + * and probably not as in speech, either). * * As that description says, it's used by AiroPeek and AiroPeek NX prior * to 2.0, EtherPeek prior to 6.0, and EtherPeek NX prior to 3.0. It diff --git a/wiretap/peektagged.c b/wiretap/peektagged.c index 51bd43af62..7b219603a0 100644 --- a/wiretap/peektagged.c +++ b/wiretap/peektagged.c @@ -1,15 +1,15 @@ /* peektagged.c - * Routines for opening files in what WildPackets calls the tagged file - * format in the description of their "PeekRdr Sample Application" (C++ - * source code to read their capture files, downloading of which requires - * a maintenance contract, so it's not free as in beer and probably not - * as in speech, either). + * Routines for opening files in what Savvius (formerly WildPackets) calls + * the tagged file format in the description of their "PeekRdr Sample + * Application" (C++ source code to read their capture files, downloading + * of which requires a maintenance contract, so it's not free as in beer + * and probably not as in speech, either). * * As that description says, it's used by AiroPeek and AiroPeek NX 2.0 * and later, EtherPeek 6.0 and later, EtherPeek NX 3.0 and later, * EtherPeek VX 1.0 and later, GigaPeek NX 1.0 and later, Omni3 1.0 * and later (both OmniPeek and the Remote Engine), and WANPeek NX - * 1.0 and later. They also say it'll be used by future WildPackets + * 1.0 and later. They also say it'll be used by future Savvius * products. * * Wiretap Library -- cgit v1.2.1