Update some links.
[obnox/wireshark/wip.git] / timestats.h
index f259859bd7b27d3e633f240d6f8cc7f199c90af5..6e880d2874a8b50cc35b91709d2f4f4b3d4f0aa7 100644 (file)
@@ -4,8 +4,8 @@
  *
  * $Id$
  *
- * Ethereal - Network traffic analyzer
- * By Gerald Combs <gerald@ethereal.com>
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
  * Copyright 1998 Gerald Combs
  *
  * This program is free software; you can redistribute it and/or
@@ -42,12 +42,13 @@ typedef struct _timestat_t {
 } timestat_t;
 
 /* functions */
-extern void get_timedelta(nstime_t *delta, nstime_t *b, nstime_t *a ); /* delta = b - a */
-extern void addtime(nstime_t *sum, nstime_t *a);                       /* sum += a */
 
-extern gdouble nstime_to_msec(nstime_t *time); /* converts nstime to gdouble, time base is milli seconds*/
+/* Initialize a timestat_t struct */
+extern void time_stat_init(timestat_t *stats);
 
-extern void time_stat_update(timestat_t *stats, nstime_t *delta, packet_info *pinfo);
-extern gdouble get_average(nstime_t *sum, guint32 num);
+/* Update a timestat_t struct with a new sample */
+extern void time_stat_update(timestat_t *stats, const nstime_t *delta, packet_info *pinfo);
+
+extern gdouble get_average(const nstime_t *sum, guint32 num);
 
 #endif