Displaying 1 result from an estimated 1 matches for "ast_get_channel_by_exten_locked".
2006 Dec 20
0
asterisk run on vxworks for hardware pbx
Hi
My hardware PBX run asterisk on vxworks,Because the vxworks not support
perl.
Now I want to add a callback function to my pbx.
now it can store Caller and Called party numbers in queue when Called party
is busy
Then I malloc a new ast_channel to call.It is should use
ast_get_channel_by_exten_locked() or ast_channel_alloc() ,
my program as follow,But it isn't work, anyone know how to do this.
{
struct ast_channel *callbk;
char *callbk_real_context;
char xferto[256],dialstr[265];
char *cid_num;
char *cid_name;
in...