[Asterisk-cvs] asterisk/include/asterisk monitor.h,1.1,1.2

martinp at lists.digium.com martinp at lists.digium.com
Tue Feb 3 10:48:18 CST 2004


Update of /usr/cvsroot/asterisk/include/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv26567/include/asterisk

Modified Files:
	monitor.h 
Log Message:
Add recording agent's calls patch. Basically the call starts recording when the agent picks up and the file is stamped with the agent's id and the timestamp. Also optionally a URL link to that file may be inserted in the userfield of the CDR record. By default the recorded file will be mixed if soxmix is available.


Index: monitor.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/monitor.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- monitor.h	25 Mar 2003 19:51:24 -0000	1.1
+++ monitor.h	3 Feb 2004 16:57:00 -0000	1.2
@@ -15,7 +15,9 @@
 	char read_filename[ FILENAME_MAX ];
 	char write_filename[ FILENAME_MAX ];
 	char filename_base[ FILENAME_MAX ];
+	int filename_changed;
 	char *format;
+	int joinfiles;
 	int (*stop)( struct ast_channel *chan, int need_lock);
 };
 
@@ -29,5 +31,7 @@
 /* Change monitoring filename of a channel */
 int ast_monitor_change_fname(	struct ast_channel *chan,
 								const char *fname_base, int need_lock );
+
+void ast_monitor_setjoinfiles(struct ast_channel *chan, int turnon);
 
 #endif /* _MONITOR_H */




More information about the svn-commits mailing list