aboutsummaryrefslogtreecommitdiffstats
path: root/timestats.h
diff options
context:
space:
mode:
Diffstat (limited to 'timestats.h')
-rw-r--r--timestats.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/timestats.h b/timestats.h
index 4a6417f6ba..90fbd61883 100644
--- a/timestats.h
+++ b/timestats.h
@@ -43,10 +43,12 @@ typedef struct _timestat_t {
/* functions */
-/* converts nstime to gdouble, time base is milli seconds*/
-extern gdouble nstime_to_msec(const nstime_t *time);
+/* Initialize a timestat_t struct */
+extern void time_stat_init(timestat_t *stats);
+/* 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