aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/netxray.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2007-06-11 15:50:03 +0000
committerBill Meier <wmeier@newsguy.com>2007-06-11 15:50:03 +0000
commit68cdbd4e65f32e498f92cf90df5a2bad69295ae3 (patch)
treeefa785ca9dbbfd543374ce27659234779d6dbee5 /wiretap/netxray.c
parent1e2e9d4f7e7be3904ff090359f994d1fb511b397 (diff)
Note invalidity of realtick for
captypes ETH_CAPTYPE_OTHERPOD2 and ETH_CAPTYPE_GIGPOD2 in comments for the associated TpS tables. svn path=/trunk/; revision=22074
Diffstat (limited to 'wiretap/netxray.c')
-rw-r--r--wiretap/netxray.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/wiretap/netxray.c b/wiretap/netxray.c
index ec8e1e3278..c665350254 100644
--- a/wiretap/netxray.c
+++ b/wiretap/netxray.c
@@ -216,8 +216,8 @@ static double TpS[] = { 1e6, 1193000.0, 1193182.0 };
* XXX: Note that the TpS_otherpod[2] value is 1250000.0; It seems
* reasonable to suspect that the original claim might actually
* have been for a capture with a captype of 'otherpod'.
- * (Based upon captures reviewed realtick does not contain the
- * correct TpS values for 'otherpod' or 'gigpod' captypes).
+ * (Based upon captures reviewed realtick does not contain the
+ * correct TpS values for the 'gigpod' captype).
*/
static double TpS_gigpod[] = { 1e9, 0.0, 31250000.0 };
#define NUM_NETXRAY_TIMEUNITS_GIGPOD (sizeof TpS_gigpod / sizeof TpS_gigpod[0])
@@ -225,21 +225,23 @@ static double TpS_gigpod[] = { 1e9, 0.0, 31250000.0 };
/*
* Table of time units for Ethernet captures with captype ETH_CAPTYPE_OTHERPOD.
* (Based upon captures reviewed realtick does not contain the
- * correct TpS values for 'otherpod' or 'gigpod' captypes).
+ * correct TpS values for the 'otherpod' captype).
*/
static double TpS_otherpod[] = { 1e6, 0.0, 1250000.0 };
#define NUM_NETXRAY_TIMEUNITS_OTHERPOD (sizeof TpS_otherpod / sizeof TpS_otherpod[0])
/*
* Table of time units for Ethernet captures with captype ETH_CAPTYPE_OTHERPOD2.
- * XXX - does realtick contain the correct TpS values for any of these captypes?)
+ * (Based upon captures reviewed realtick does not contain the
+ * correct TpS values for the 'otherpod2' captype).
*/
static double TpS_otherpod2[] = { 1e6, 0.0, 0.0 };
#define NUM_NETXRAY_TIMEUNITS_OTHERPOD2 (sizeof TpS_otherpod2 / sizeof TpS_otherpod2[0])
/*
* Table of time units for Ethernet captures with captype ETH_CAPTYPE_GIGPOD2.
- * XXX - does realtick contain the correct TpS values for any of these captypes?)
+ * (Based upon captures reviewed realtick does not contain the
+ * correct TpS values for the 'gigpod2' captype).
*/
static double TpS_gigpod2[] = { 1e9, 0.0, 20000000.0 };
#define NUM_NETXRAY_TIMEUNITS_GIGPOD2 (sizeof TpS_gigpod2 / sizeof TpS_gigpod2[0])