search for: ast_channel_language

Displaying 3 results from an estimated 3 matches for "ast_channel_language".

2014 Jul 31
0
AGI Record File / what does randomerror mean? res_agi.c / line 2377
...nd taken to be a beep, else if it is a digit then it is a 2367 * offset */ 2368 if ((argc >6) && (sscanf(argv[6], "%30ld", &sample_offset) != 1) && (!strchr(argv[6], '='))) 2369 res = ast_streamfile(chan, "beep", ast_channel_language(chan)); 2370 2371 if ((argc > 7) && (!strchr(argv[7], '='))) 2372 res = ast_streamfile(chan, "beep", ast_channel_language(chan)); 2373 2374 if (!res) 2375 res = ast_waitstream(chan, argv[4]); 2376 if (res) { 2377...
2014 Mar 12
0
module load Crash Asterisk 11.5.1 app_confbridge.c
...ock(conf); }else{ count = 0; } if (!ast_strlen_zero(args.varname)) { snprintf(val, sizeof(val), "%d", count); pbx_builtin_setvar_helper(chan, args.varname, val); } else { if ( ast_channel_state(chan)!= AST_STATE_UP) { ast_answer(chan); } res = ast_say_number(chan, count, "",ast_channel_language(chan),(char *) NULL); } return res; } static int load_module(void) { ast_verb(3 ,"==Inside load_module=="); res |= ast_register_application_xml(app2,count_exec); return res; } static int unload_module(void) { res |= ast_unregister_application(app2); return res; } static struct ast_...
2014 Mar 13
0
Any Help ? user defined application .module load Crash Asterisk 11.5.1 app_confbridge.c
...ock(conf); }else{ count = 0; } if (!ast_strlen_zero(args.varname)) { snprintf(val, sizeof(val), "%d", count); pbx_builtin_setvar_helper(chan, args.varname, val); } else { if ( ast_channel_state(chan)!= AST_STATE_UP) { ast_answer(chan); } res = ast_say_number(chan, count, "",ast_channel_language(chan),(char *) NULL); } return res; } static int load_module(void) { ast_verb(3 ,"==Inside load_module=="); res |= ast_register_application_xml(app2,count_exec); return res; } static int unload_module(void) { res |= ast_unregister_application(app2); return res; } static struct ast_...