[asterisk-commits] mmichelson: branch group/CCSS r217558 - /team/group/CCSS/main/ccss.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Sep 9 17:36:04 CDT 2009
Author: mmichelson
Date: Wed Sep 9 17:36:02 2009
New Revision: 217558
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=217558
Log:
Map the parameters for the request and dial.
Next step will be to fill the function call in.
Modified:
team/group/CCSS/main/ccss.c
Modified: team/group/CCSS/main/ccss.c
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/CCSS/main/ccss.c?view=diff&rev=217558&r1=217557&r2=217558
==============================================================================
--- team/group/CCSS/main/ccss.c (original)
+++ team/group/CCSS/main/ccss.c Wed Sep 9 17:36:02 2009
@@ -767,6 +767,17 @@
{
struct ast_cc_agent *agent = data;
ast_log(LOG_NOTICE, "Now we should callback %s\n", agent->interface);
+ /* Params for request and dial
+ * tech: can be gotten by manipulating agent->interface
+ * format: Following the lead of pbx_spool, this will be SLINEAR
+ * requestor: Following the lead of ast_pbx_outgoing_exten, this will be NULL
+ * data: can be gotten by manipulating agent->interface
+ * timeout: oh, hmmm... maybe need a new config option?
+ * reason: output parameter. I'll provide it.
+ * cid_num: Good question...
+ * cid_name: Good question...
+ */
+ ast_request_and_dial();
return NULL;
}
More information about the asterisk-commits
mailing list