aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-13 03:52:14 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-13 03:52:14 +0000
commit5d2aed2d6d40f577334e5df9fcfc7277a5495787 (patch)
treec30d90fcd24175084edb8bc6c193b0d727af14e0 /include
parent894a6228fe7ecc38bcc2f4cbe349b965f29421a4 (diff)
Move timestamp around in RTP.... Gotta do iax2 eventually here...
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2413 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rwxr-xr-xinclude/asterisk/frame.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asterisk/frame.h b/include/asterisk/frame.h
index acbc26ca2..bf7844e05 100755
--- a/include/asterisk/frame.h
+++ b/include/asterisk/frame.h
@@ -21,6 +21,7 @@ extern "C" {
#endif
#include <sys/types.h>
+#include <sys/time.h>
/*
* Autodetect system endianess
@@ -73,7 +74,9 @@ struct ast_frame {
/*! Optional source of frame for debugging */
char *src;
/*! Pointer to actual data */
- void *data;
+ void *data;
+ /*! Global delivery time */
+ struct timeval delivery;
/*! Next/Prev for linking stand alone frames */
struct ast_frame *prev;
/*! Next/Prev for linking stand alone frames */