[Asterisk-cvs] asterisk/include/asterisk causes.h, 1.6,
1.7 channel.h, 1.59, 1.60
markster at lists.digium.com
markster at lists.digium.com
Tue Oct 26 18:22:19 CDT 2004
- Previous message: [Asterisk-cvs]
asterisk/apps app_chanisavail.c, 1.9, 1.10 app_dial.c,
1.97, 1.98 app_meetme.c, 1.63, 1.64 app_queue.c, 1.91, 1.92
- Next message: [Asterisk-cvs] asterisk/channels chan_agent.c, 1.87,
1.88 chan_alsa.c, 1.28, 1.29 chan_h323.c, 1.84,
1.85 chan_iax2.c, 1.212, 1.213 chan_local.c, 1.36,
1.37 chan_mgcp.c, 1.88, 1.89 chan_modem.c, 1.31,
1.32 chan_nbs.c, 1.11, 1.12 chan_oss.c, 1.36,
1.37 chan_phone.c, 1.35, 1.36 chan_sip.c, 1.543,
1.544 chan_skinny.c, 1.58, 1.59 chan_vpb.c, 1.43,
1.44 chan_zap.c, 1.365, 1.366
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk/include/asterisk
In directory mongoose.digium.com:/tmp/cvs-serv3701/include/asterisk
Modified Files:
causes.h channel.h
Log Message:
Pass concept of status back, permit "leaveempty" to work with static agents who are not loggedon (bug #2719)
Index: causes.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/causes.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- causes.h 12 Aug 2004 22:09:18 -0000 1.6
+++ causes.h 26 Oct 2004 22:25:43 -0000 1.7
@@ -66,6 +66,8 @@
#define AST_CAUSE_NORMAL AST_CAUSE_NORMAL_CLEARING
#define AST_CAUSE_NOANSWER AST_CAUSE_NO_ANSWER
#define AST_CAUSE_CONGESTION AST_CAUSE_NORMAL_CIRCUIT_CONGESTION
+#define AST_CAUSE_UNREGISTERED AST_CAUSE_NO_ROUTE_DESTINATION
#define AST_CAUSE_NOTDEFINED 0
+#define AST_CAUSE_NOSUCHDRIVER AST_CAUSE_CHAN_NOT_IMPLEMENTED
#endif
Index: channel.h
===================================================================
RCS file: /usr/cvsroot/asterisk/include/asterisk/channel.h,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -d -r1.59 -r1.60
--- channel.h 24 Oct 2004 02:53:24 -0000 1.59
+++ channel.h 26 Oct 2004 22:25:43 -0000 1.60
@@ -377,7 +377,7 @@
* by the low level module
* Returns an ast_channel on success, NULL on failure.
*/
-struct ast_channel *ast_request(const char *type, int format, void *data);
+struct ast_channel *ast_request(const char *type, int format, void *data, int *status);
//! Search the Channels by Name
/*!
@@ -427,11 +427,11 @@
* Returns 0 on success, -1 on failure.
*/
int ast_channel_register(const char *type, const char *description, int capabilities,
- struct ast_channel* (*requester)(const char *type, int format, void *data));
+ struct ast_channel* (*requester)(const char *type, int format, void *data, int *cause));
/* Same like the upper function but with support for devicestate */
int ast_channel_register_ex(const char *type, const char *description, int capabilities,
- struct ast_channel *(*requester)(const char *type, int format, void *data),
+ struct ast_channel *(*requester)(const char *type, int format, void *data, int *cause),
int (*devicestate)(void *data));
//! Unregister a channel class
- Previous message: [Asterisk-cvs]
asterisk/apps app_chanisavail.c, 1.9, 1.10 app_dial.c,
1.97, 1.98 app_meetme.c, 1.63, 1.64 app_queue.c, 1.91, 1.92
- Next message: [Asterisk-cvs] asterisk/channels chan_agent.c, 1.87,
1.88 chan_alsa.c, 1.28, 1.29 chan_h323.c, 1.84,
1.85 chan_iax2.c, 1.212, 1.213 chan_local.c, 1.36,
1.37 chan_mgcp.c, 1.88, 1.89 chan_modem.c, 1.31,
1.32 chan_nbs.c, 1.11, 1.12 chan_oss.c, 1.36,
1.37 chan_phone.c, 1.35, 1.36 chan_sip.c, 1.543,
1.544 chan_skinny.c, 1.58, 1.59 chan_vpb.c, 1.43,
1.44 chan_zap.c, 1.365, 1.366
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list