summaryrefslogtreecommitdiff
path: root/timestats.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-08-03 20:37:28 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-08-03 20:37:28 +0000
commit32f826a7cea1a6b72d1eea03866274fc39b59580 (patch)
tree1dbe75d349faea3f8f3569d9da7b17839fe6d352 /timestats.h
parentd0811b3d350ac7c34a07c3f9b8d447b39804aa81 (diff)
downloadwireshark-32f826a7cea1a6b72d1eea03866274fc39b59580.tar.gz
From Richard van der Hoff:
Among the improvements are: - fixes to call-tracking (it's now less likely to confuse two separate calls, for instance) - improvements to Information Element dissection (clearer dissection, dissects more IE types, easier to extend) - you can now filter on the content of DTMF packets - Analysis of timestamps (calculation of absolute timestamp, and packet lateness). - fixed a couple of assertion failures in subtle corner-cases. negative relative times: - get_timedelta() - addtime() - ftype-time.c:relative_val_from_unparsed() I've also moved get_timedelta() and addtime() out of calldata.c into a new file, epan/nstime.c, as I needed to use them in a dissector I'm working on (and they therefore needed to go into libethereal). svn path=/trunk/; revision=15201
Diffstat (limited to 'timestats.h')
-rw-r--r--timestats.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/timestats.h b/timestats.h
index c4e9223baa..4a6417f6ba 100644
--- a/timestats.h
+++ b/timestats.h
@@ -43,12 +43,6 @@ typedef struct _timestat_t {
/* functions */
-/* delta = b - a */
-extern void get_timedelta(nstime_t *delta, const nstime_t *b, const nstime_t *a );
-
-/* sum += a */
-extern void addtime(nstime_t *sum, const nstime_t *a);
-
/* converts nstime to gdouble, time base is milli seconds*/
extern gdouble nstime_to_msec(const nstime_t *time);