aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/etherpeek.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-18 00:48:37 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-01-18 00:48:37 +0000
commitf0e61fc48d076f4ab1dfd3f6d37b2af82c461a80 (patch)
tree8d5fe5d3e27a250021364e2ad800b5da6aae6f49 /wiretap/etherpeek.c
parent947d1bfba7138671b750d887b6e0420d088a870b (diff)
It's EtherPeek, not Etherpeek, as WildPackets' Web site indicates.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@4562 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'wiretap/etherpeek.c')
-rw-r--r--wiretap/etherpeek.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/wiretap/etherpeek.c b/wiretap/etherpeek.c
index 658d22fb43..23b5b62f38 100644
--- a/wiretap/etherpeek.c
+++ b/wiretap/etherpeek.c
@@ -1,8 +1,8 @@
/* etherpeek.c
- * Routines for opening etherpeek files
+ * Routines for opening EtherPeek (and TokenPeek?) files
* Copyright (c) 2001, Daniel Thompson <d.thompson@gmx.net>
*
- * $Id: etherpeek.c,v 1.8 2002/01/18 00:25:50 guy Exp $
+ * $Id: etherpeek.c,v 1.9 2002/01/18 00:48:37 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@alumni.rice.edu>
@@ -38,7 +38,7 @@
/* CREDITS
*
* This file decoder could not have been writen without examining how
- * tcptrace (http://www.tcptrace.org/) handles etherpeek files.
+ * tcptrace (http://www.tcptrace.org/) handles EtherPeek files.
*/
/* master header */
@@ -134,14 +134,14 @@ int etherpeek_open(wtap *wth, int *err)
etherpeek_header_t ep_hdr;
struct timeval start_time;
- /* etherpeek files to not start with a magic value large enough
- * to be unique hence we use the following algorithm to determine
- * the type of an unknown file
+ /* EtherPeek files do not start with a magic value large enough
+ * to be unique; hence we use the following algorithm to determine
+ * the type of an unknown file:
* - populate the master header and reject file if there is no match
* - populate the secondary header and check that the reserved space
* is zero; there is an obvious flaw here so this algorithm will
- * probably need to be revisiting when improving etherpeek
- * support
+ * probably need to be revisiting when improving EtherPeek
+ * support.
*/
g_assert(sizeof(ep_hdr.master) == ETHERPEEK_MASTER_HDR_SIZE);