@ -852,6 +852,7 @@ static char *handle_cli_confbridge_show_bridge_profile(struct ast_cli_entry *e,
ast_cli ( a - > fd , " -------------------------------------------- \n " ) ;
ast_cli ( a - > fd , " -------------------------------------------- \n " ) ;
ast_cli ( a - > fd , " Name: %s \n " , b_profile . name ) ;
ast_cli ( a - > fd , " Name: %s \n " , b_profile . name ) ;
ast_cli ( a - > fd , " Language: %s \n " , b_profile . language ) ;
if ( b_profile . internal_sample_rate ) {
if ( b_profile . internal_sample_rate ) {
snprintf ( tmp , sizeof ( tmp ) , " %d " , b_profile . internal_sample_rate ) ;
snprintf ( tmp , sizeof ( tmp ) , " %d " , b_profile . internal_sample_rate ) ;
@ -1364,6 +1365,7 @@ int conf_load_config(void)
aco_option_register_custom ( & cfg_info , " video_mode " , ACO_EXACT , bridge_types , NULL , video_mode_handler , 0 ) ;
aco_option_register_custom ( & cfg_info , " video_mode " , ACO_EXACT , bridge_types , NULL , video_mode_handler , 0 ) ;
aco_option_register ( & cfg_info , " max_members " , ACO_EXACT , bridge_types , " 0 " , OPT_UINT_T , 0 , FLDSET ( struct bridge_profile , max_members ) ) ;
aco_option_register ( & cfg_info , " max_members " , ACO_EXACT , bridge_types , " 0 " , OPT_UINT_T , 0 , FLDSET ( struct bridge_profile , max_members ) ) ;
aco_option_register ( & cfg_info , " record_file " , ACO_EXACT , bridge_types , NULL , OPT_CHAR_ARRAY_T , 0 , CHARFLDSET ( struct bridge_profile , rec_file ) ) ;
aco_option_register ( & cfg_info , " record_file " , ACO_EXACT , bridge_types , NULL , OPT_CHAR_ARRAY_T , 0 , CHARFLDSET ( struct bridge_profile , rec_file ) ) ;
aco_option_register ( & cfg_info , " language " , ACO_EXACT , bridge_types , " en " , OPT_CHAR_ARRAY_T , 0 , CHARFLDSET ( struct bridge_profile , language ) ) ;
aco_option_register_custom ( & cfg_info , " ^sound_ " , ACO_REGEX , bridge_types , NULL , sound_option_handler , 0 ) ;
aco_option_register_custom ( & cfg_info , " ^sound_ " , ACO_REGEX , bridge_types , NULL , sound_option_handler , 0 ) ;
/* This option should only be used with the CONFBRIDGE dialplan function */
/* This option should only be used with the CONFBRIDGE dialplan function */
aco_option_register_custom ( & cfg_info , " template " , ACO_EXACT , bridge_types , NULL , bridge_template_handler , 0 ) ;
aco_option_register_custom ( & cfg_info , " template " , ACO_EXACT , bridge_types , NULL , bridge_template_handler , 0 ) ;