[Asterisk-cvs] asterisk/include/asterisk config.h, 1.9, 1.10 config_pvt.h, 1.2, 1.3

markster at lists.digium.com markster at lists.digium.com
Thu Oct 7 15:56:35 CDT 2004


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

Modified Files:
	config.h config_pvt.h 
Log Message:
Oops, we have to be able to pass multiple restrictions for when we go to voicemail...


Index: config.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/config.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- config.h	5 Oct 2004 06:46:11 -0000	1.9
+++ config.h	7 Oct 2004 19:57:50 -0000	1.10
@@ -114,7 +114,7 @@
  * that unlike the variables in ast_config, the resulting list of variables
  * MUST be fred with ast_free_runtime() as there is no container.
  */
-struct ast_variable *ast_load_realtime(const char *family, const char *keyfield, const char *lookup);
+struct ast_variable *ast_load_realtime(const char *family, ...);
 
 //! Update realtime configuration
 /*!

Index: config_pvt.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/config_pvt.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- config_pvt.h	5 Oct 2004 06:46:11 -0000	1.2
+++ config_pvt.h	7 Oct 2004 19:57:50 -0000	1.3
@@ -30,7 +30,7 @@
 struct ast_config_reg {
 	char name[CONFIG_KEYWORD_STRLEN];
 	struct ast_config *(*static_func)(const char *database, const char *table, const char *, struct ast_config *,struct ast_category **,struct ast_variable **,int);
-	struct ast_variable *(*realtime_func)(const char *database, const char *table,  const char *keyfield, const char *entity);
+	struct ast_variable *(*realtime_func)(const char *database, const char *table, va_list ap);
 	int (*update_func)(const char *database, const char *table, const char *keyfield, const char *entity, va_list ap);
 	struct ast_config_reg *next;
 };




More information about the svn-commits mailing list