@ -14025,6 +14025,7 @@ static char *handle_pri_debug(struct ast_cli_entry *e, int cmd, struct ast_cli_a
}
}
# endif /* defined(HAVE_PRI) */
# endif /* defined(HAVE_PRI) */
# if defined(HAVE_PRI)
# if defined(HAVE_PRI_SERVICE_MESSAGES)
# if defined(HAVE_PRI_SERVICE_MESSAGES)
static char * handle_pri_service_generic ( struct ast_cli_entry * e , int cmd , struct ast_cli_args * a , int changestatus )
static char * handle_pri_service_generic ( struct ast_cli_entry * e , int cmd , struct ast_cli_args * a , int changestatus )
{
{
@ -14168,6 +14169,36 @@ static char *handle_pri_service_disable_channel(struct ast_cli_entry *e, int cmd
return handle_pri_service_generic ( e , cmd , a , 2 ) ;
return handle_pri_service_generic ( e , cmd , a , 2 ) ;
}
}
# endif /* defined(HAVE_PRI_SERVICE_MESSAGES) */
# endif /* defined(HAVE_PRI_SERVICE_MESSAGES) */
# endif /* defined(HAVE_PRI) */
# if defined(HAVE_PRI)
static char * handle_pri_show_channels ( struct ast_cli_entry * e , int cmd , struct ast_cli_args * a )
{
int span ;
switch ( cmd ) {
case CLI_INIT :
e - > command = " pri show channels " ;
e - > usage =
" Usage: pri show channels \n "
" Displays PRI channel information \n " ;
return NULL ;
case CLI_GENERATE :
return NULL ;
}
if ( a - > argc ! = 3 )
return CLI_SHOWUSAGE ;
sig_pri_cli_show_channels_header ( a - > fd ) ;
for ( span = 0 ; span < NUM_SPANS ; + + span ) {
if ( pris [ span ] . pri . pri ) {
sig_pri_cli_show_channels ( a - > fd , & pris [ span ] . pri ) ;
}
}
return CLI_SUCCESS ;
}
# endif /* defined(HAVE_PRI) */
# if defined(HAVE_PRI)
# if defined(HAVE_PRI)
static char * handle_pri_show_spans ( struct ast_cli_entry * e , int cmd , struct ast_cli_args * a )
static char * handle_pri_show_spans ( struct ast_cli_entry * e , int cmd , struct ast_cli_args * a )
@ -14179,7 +14210,7 @@ static char *handle_pri_show_spans(struct ast_cli_entry *e, int cmd, struct ast_
e - > command = " pri show spans " ;
e - > command = " pri show spans " ;
e - > usage =
e - > usage =
" Usage: pri show spans \n "
" Usage: pri show spans \n "
" Displays PRI I nformation\n " ;
" Displays PRI span i nformation\n " ;
return NULL ;
return NULL ;
case CLI_GENERATE :
case CLI_GENERATE :
return NULL ;
return NULL ;
@ -14300,8 +14331,9 @@ static struct ast_cli_entry dahdi_pri_cli[] = {
AST_CLI_DEFINE ( handle_pri_service_enable_channel , " Return a channel to service " ) ,
AST_CLI_DEFINE ( handle_pri_service_enable_channel , " Return a channel to service " ) ,
AST_CLI_DEFINE ( handle_pri_service_disable_channel , " Remove a channel from service " ) ,
AST_CLI_DEFINE ( handle_pri_service_disable_channel , " Remove a channel from service " ) ,
# endif /* defined(HAVE_PRI_SERVICE_MESSAGES) */
# endif /* defined(HAVE_PRI_SERVICE_MESSAGES) */
AST_CLI_DEFINE ( handle_pri_show_spans , " Displays PRI Information " ) ,
AST_CLI_DEFINE ( handle_pri_show_channels , " Displays PRI channel information " ) ,
AST_CLI_DEFINE ( handle_pri_show_span , " Displays PRI Information " ) ,
AST_CLI_DEFINE ( handle_pri_show_spans , " Displays PRI span information " ) ,
AST_CLI_DEFINE ( handle_pri_show_span , " Displays PRI span information " ) ,
AST_CLI_DEFINE ( handle_pri_show_debug , " Displays current PRI debug settings " ) ,
AST_CLI_DEFINE ( handle_pri_show_debug , " Displays current PRI debug settings " ) ,
AST_CLI_DEFINE ( handle_pri_set_debug_file , " Sends PRI debug output to the specified file " ) ,
AST_CLI_DEFINE ( handle_pri_set_debug_file , " Sends PRI debug output to the specified file " ) ,
AST_CLI_DEFINE ( handle_pri_version , " Displays libpri version " ) ,
AST_CLI_DEFINE ( handle_pri_version , " Displays libpri version " ) ,
@ -14892,7 +14924,7 @@ static char *dahdi_show_channels(struct ast_cli_entry *e, int cmd, struct ast_cl
}
}
break ;
break ;
default :
default :
;
break ;
}
}
}
}
if ( tmp - > channel > 0 ) {
if ( tmp - > channel > 0 ) {