summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
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 */