summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorJason Parker <jparker@digium.com>2007-10-19 18:29:40 +0000
committerJason Parker <jparker@digium.com>2007-10-19 18:29:40 +0000
commitb0f3e6097e7e40affba1f893c42be66a8d26bd23 (patch)
tree449c79f9794d0470ca27cb420554eb128bee9d9e /channels
parent65761cbd7a322352fdb834fedee8d4bbb62be61c (diff)
Convert NEW_CLI to AST_CLI.
Closes issue #11039, as suggested by seanbright. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@86536 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_agent.c6
-rw-r--r--channels/chan_alsa.c10
-rw-r--r--channels/chan_features.c2
-rw-r--r--channels/chan_gtalk.c4
-rw-r--r--channels/chan_h323.c12
-rw-r--r--channels/chan_iax2.c50
-rw-r--r--channels/chan_jingle.c4
-rw-r--r--channels/chan_local.c2
-rw-r--r--channels/chan_mgcp.c10
-rw-r--r--channels/chan_misdn.c42
-rw-r--r--channels/chan_oss.c20
-rw-r--r--channels/chan_sip.c38
-rw-r--r--channels/chan_skinny.c16
-rw-r--r--channels/chan_usbradio.c8
-rw-r--r--channels/chan_zap.c40
-rw-r--r--channels/iax2-provision.c2
16 files changed, 133 insertions, 133 deletions
diff --git a/channels/chan_agent.c b/channels/chan_agent.c
index f3fdd19f0..97f0c46be 100644
--- a/channels/chan_agent.c
+++ b/channels/chan_agent.c
@@ -1765,9 +1765,9 @@ static const char agent_logoff_usage[] =
" If 'soft' is specified, do not hangup existing calls.\n";
static struct ast_cli_entry cli_agents[] = {
- NEW_CLI(agents_show, "Show status of agents"),
- NEW_CLI(agents_show_online, "Show all online agents"),
- NEW_CLI(agent_logoff_cmd, "Sets an agent offline"),
+ AST_CLI(agents_show, "Show status of agents"),
+ AST_CLI(agents_show_online, "Show all online agents"),
+ AST_CLI(agent_logoff_cmd, "Sets an agent offline"),
};
/*!
diff --git a/channels/chan_alsa.c b/channels/chan_alsa.c
index 6bc838e79..a257bffcc 100644
--- a/channels/chan_alsa.c
+++ b/channels/chan_alsa.c
@@ -1096,11 +1096,11 @@ static char *console_dial(struct ast_cli_entry *e, int cmd, struct ast_cli_args
}
static struct ast_cli_entry cli_alsa[] = {
- NEW_CLI(console_answer, "Answer an incoming console call"),
- NEW_CLI(console_hangup, "Hangup a call on the console"),
- NEW_CLI(console_dial, "Dial an extension on the console"),
- NEW_CLI(console_sendtext, "Send text to the remote device"),
- NEW_CLI(console_autoanswer, "Sets/displays autoanswer"),
+ AST_CLI(console_answer, "Answer an incoming console call"),
+ AST_CLI(console_hangup, "Hangup a call on the console"),
+ AST_CLI(console_dial, "Dial an extension on the console"),
+ AST_CLI(console_sendtext, "Send text to the remote device"),
+ AST_CLI(console_autoanswer, "Sets/displays autoanswer"),
};
static int load_module(void)
diff --git a/channels/chan_features.c b/channels/chan_features.c
index 719de09ed..8a563290b 100644
--- a/channels/chan_features.c
+++ b/channels/chan_features.c
@@ -543,7 +543,7 @@ static char *features_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args
}
static struct ast_cli_entry cli_features[] = {
- NEW_CLI(features_show, "List status of feature channels"),
+ AST_CLI(features_show, "List status of feature channels"),
};
static int load_module(void)
diff --git a/channels/chan_gtalk.c b/channels/chan_gtalk.c
index 9536d06d8..ae5cdb74d 100644
--- a/channels/chan_gtalk.c
+++ b/channels/chan_gtalk.c
@@ -235,8 +235,8 @@ static struct ast_rtp_protocol gtalk_rtp = {
};
static struct ast_cli_entry gtalk_cli[] = {
- NEW_CLI(gtalk_do_reload, "Reload GoogleTalk configuration"),
- NEW_CLI(gtalk_show_channels, "Show GoogleTalk channels"),
+ AST_CLI(gtalk_do_reload, "Reload GoogleTalk configuration"),
+ AST_CLI(gtalk_show_channels, "Show GoogleTalk channels"),
};
static char externip[16];
diff --git a/channels/chan_h323.c b/channels/chan_h323.c
index 7e50afc12..a0f7c961d 100644
--- a/channels/chan_h323.c
+++ b/channels/chan_h323.c
@@ -2744,11 +2744,11 @@ static char *handle_cli_h323_show_tokens(struct ast_cli_entry *e, int cmd, struc
}
static struct ast_cli_entry cli_h323[] = {
- NEW_CLI(handle_cli_h323_set_trace, "Enable/Disable H.323 Stack Tracing"),
- NEW_CLI(handle_cli_h323_set_debug, "Enable/Disable H.323 Debugging"),
- NEW_CLI(handle_cli_h323_cycle_gk, "Manually re-register with the Gatekeper"),
- NEW_CLI(handle_cli_h323_hangup, "Manually try to hang up a call"),
- NEW_CLI(handle_cli_h323_show_tokens, "Show all active call tokens"),
+ AST_CLI(handle_cli_h323_set_trace, "Enable/Disable H.323 Stack Tracing"),
+ AST_CLI(handle_cli_h323_set_debug, "Enable/Disable H.323 Debugging"),
+ AST_CLI(handle_cli_h323_cycle_gk, "Manually re-register with the Gatekeper"),
+ AST_CLI(handle_cli_h323_hangup, "Manually try to hang up a call"),
+ AST_CLI(handle_cli_h323_show_tokens, "Show all active call tokens"),
};
static int reload_config(int is_reload)
@@ -3078,7 +3078,7 @@ static int reload(void)
}
static struct ast_cli_entry cli_h323_reload =
- NEW_CLI(handle_cli_h323_reload, "Reload H.323 configuration");
+ AST_CLI(handle_cli_h323_reload, "Reload H.323 configuration");
static enum ast_rtp_get_result oh323_get_rtp_peer(struct ast_channel *chan, struct ast_rtp **rtp)
{
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index 30af97a9d..d0b68f13b 100644
--- a/channels/chan_iax2.c
+++ b/channels/chan_iax2.c
@@ -11305,32 +11305,32 @@ static struct ast_switch iax2_switch =
*/
static struct ast_cli_entry cli_iax2[] = {
- NEW_CLI(handle_cli_iax2_provision, "Provision an IAX device"),
- NEW_CLI(handle_cli_iax2_prune_realtime, "Prune a cached realtime lookup"),
- NEW_CLI(handle_cli_iax2_reload, "Reload IAX configuration"),
- NEW_CLI(handle_cli_iax2_set_mtu, "Set the IAX systemwide trunking MTU"),
- NEW_CLI(handle_cli_iax2_set_debug, "Enable IAX debugging"),
- NEW_CLI(handle_cli_iax2_set_debug_trunk, "Enable IAX trunk debugging"),
- NEW_CLI(handle_cli_iax2_set_debug_jb, "Enable IAX jitterbuffer debugging"),
- NEW_CLI(handle_cli_iax2_set_debug_off, "Disable IAX debugging"),
- NEW_CLI(handle_cli_iax2_set_debug_trunk_off, "Disable IAX trunk debugging"),
- NEW_CLI(handle_cli_iax2_set_debug_jb_off, "Disable IAX jitterbuffer debugging"),
- NEW_CLI(handle_cli_iax2_show_cache, "Display IAX cached dialplan"),
- NEW_CLI(handle_cli_iax2_show_channels, "List active IAX channels"),
- NEW_CLI(handle_cli_iax2_show_firmware, "List available IAX firmware"),
- NEW_CLI(handle_cli_iax2_show_netstats, "List active IAX channel netstats"),
- NEW_CLI(handle_cli_iax2_show_peer, "Show details on specific IAX peer"),
- NEW_CLI(handle_cli_iax2_show_peers, "List defined IAX peers"),
- NEW_CLI(handle_cli_iax2_show_registry, "Display IAX registration status"),
- NEW_CLI(handle_cli_iax2_show_stats, "Display IAX statistics"),
- NEW_CLI(handle_cli_iax2_show_threads, "Display IAX helper thread info"),
- NEW_CLI(handle_cli_iax2_show_users, "List defined IAX users"),
- NEW_CLI(handle_cli_iax2_test_losspct, "Set IAX2 incoming frame loss percentage"),
- NEW_CLI(handle_cli_iax2_unregister, "Unregister (force expiration) an IAX2 peer from the registry"),
+ AST_CLI(handle_cli_iax2_provision, "Provision an IAX device"),
+ AST_CLI(handle_cli_iax2_prune_realtime, "Prune a cached realtime lookup"),
+ AST_CLI(handle_cli_iax2_reload, "Reload IAX configuration"),
+ AST_CLI(handle_cli_iax2_set_mtu, "Set the IAX systemwide trunking MTU"),
+ AST_CLI(handle_cli_iax2_set_debug, "Enable IAX debugging"),
+ AST_CLI(handle_cli_iax2_set_debug_trunk, "Enable IAX trunk debugging"),
+ AST_CLI(handle_cli_iax2_set_debug_jb, "Enable IAX jitterbuffer debugging"),
+ AST_CLI(handle_cli_iax2_set_debug_off, "Disable IAX debugging"),
+ AST_CLI(handle_cli_iax2_set_debug_trunk_off, "Disable IAX trunk debugging"),
+ AST_CLI(handle_cli_iax2_set_debug_jb_off, "Disable IAX jitterbuffer debugging"),
+ AST_CLI(handle_cli_iax2_show_cache, "Display IAX cached dialplan"),
+ AST_CLI(handle_cli_iax2_show_channels, "List active IAX channels"),
+ AST_CLI(handle_cli_iax2_show_firmware, "List available IAX firmware"),
+ AST_CLI(handle_cli_iax2_show_netstats, "List active IAX channel netstats"),
+ AST_CLI(handle_cli_iax2_show_peer, "Show details on specific IAX peer"),
+ AST_CLI(handle_cli_iax2_show_peers, "List defined IAX peers"),
+ AST_CLI(handle_cli_iax2_show_registry, "Display IAX registration status"),
+ AST_CLI(handle_cli_iax2_show_stats, "Display IAX statistics"),
+ AST_CLI(handle_cli_iax2_show_threads, "Display IAX helper thread info"),
+ AST_CLI(handle_cli_iax2_show_users, "List defined IAX users"),
+ AST_CLI(handle_cli_iax2_test_losspct, "Set IAX2 incoming frame loss percentage"),
+ AST_CLI(handle_cli_iax2_unregister, "Unregister (force expiration) an IAX2 peer from the registry"),
#ifdef IAXTESTS
- NEW_CLI(handle_cli_iax2_test_jitter, "Simulates jitter for testing"),
- NEW_CLI(handle_cli_iax2_test_late, "Test the receipt of a late frame"),
- NEW_CLI(handle_cli_iax2_test_resync, "Test a resync in received timestamps"),
+ AST_CLI(handle_cli_iax2_test_jitter, "Simulates jitter for testing"),
+ AST_CLI(handle_cli_iax2_test_late, "Test the receipt of a late frame"),
+ AST_CLI(handle_cli_iax2_test_resync, "Test a resync in received timestamps"),
#endif /* IAXTESTS */
};
diff --git a/channels/chan_jingle.c b/channels/chan_jingle.c
index fb843209a..2dc74eafd 100644
--- a/channels/chan_jingle.c
+++ b/channels/chan_jingle.c
@@ -236,8 +236,8 @@ static struct ast_rtp_protocol jingle_rtp = {
};
static struct ast_cli_entry jingle_cli[] = {
- NEW_CLI(jingle_do_reload, "Reload Jingle configuration"),
- NEW_CLI(jingle_show_channels, "Show Jingle channels"),
+ AST_CLI(jingle_do_reload, "Reload Jingle configuration"),
+ AST_CLI(jingle_show_channels, "Show Jingle channels"),
};
diff --git a/channels/chan_local.c b/channels/chan_local.c
index b33aa136b..bfe19f4cc 100644
--- a/channels/chan_local.c
+++ b/channels/chan_local.c
@@ -723,7 +723,7 @@ static char *locals_show(struct ast_cli_entry *e, int cmd, struct ast_cli_args *
}
static struct ast_cli_entry cli_local[] = {
- NEW_CLI(locals_show, "List status of local channels"),
+ AST_CLI(locals_show, "List status of local channels"),
};
/*! \brief Load module into PBX, register channel */
diff --git a/channels/chan_mgcp.c b/channels/chan_mgcp.c
index a7679ccdd..fc8b54f55 100644
--- a/channels/chan_mgcp.c
+++ b/channels/chan_mgcp.c
@@ -1183,11 +1183,11 @@ static char *handle_mgcp_set_debug_off(struct ast_cli_entry *e, int cmd, struct
}
static struct ast_cli_entry cli_mgcp[] = {
- NEW_CLI(handle_mgcp_audit_endpoint, "Audit specified MGCP endpoint"),
- NEW_CLI(handle_mgcp_show_endpoints, "List defined MGCP endpoints"),
- NEW_CLI(handle_mgcp_set_debug, "Enable MGCP debugging"),
- NEW_CLI(handle_mgcp_set_debug_off, "Disable MGCP debugging"),
- NEW_CLI(mgcp_reload, "Reload MGCP configuration"),
+ AST_CLI(handle_mgcp_audit_endpoint, "Audit specified MGCP endpoint"),
+ AST_CLI(handle_mgcp_show_endpoints, "List defined MGCP endpoints"),
+ AST_CLI(handle_mgcp_set_debug, "Enable MGCP debugging"),
+ AST_CLI(handle_mgcp_set_debug_off, "Disable MGCP debugging"),
+ AST_CLI(mgcp_reload, "Reload MGCP configuration"),
};
static int mgcp_answer(struct ast_channel *ast)
diff --git a/channels/chan_misdn.c b/channels/chan_misdn.c
index f9119413f..a717bafe5 100644
--- a/channels/chan_misdn.c
+++ b/channels/chan_misdn.c
@@ -1707,27 +1707,27 @@ static char *complete_show_config(struct ast_cli_args *a)
}
static struct ast_cli_entry chan_misdn_clis[] = {
- NEW_CLI(handle_cli_misdn_port_block, "Block the given port"),
- NEW_CLI(handle_cli_misdn_port_down, "Try to deacivate the L1 on the given port"),
- NEW_CLI(handle_cli_misdn_port_unblock, "Unblock the given port"),
- NEW_CLI(handle_cli_misdn_port_up, "Try to establish L1 on the given port"),
- NEW_CLI(handle_cli_misdn_reload, "Reload internal mISDN config, read from the config file"),
- NEW_CLI(handle_cli_misdn_restart_pid, "Restart the given pid"),
- NEW_CLI(handle_cli_misdn_restart_port, "Restart the given port"),
- NEW_CLI(handle_cli_misdn_show_channel, "Show an internal mISDN channel"),
- NEW_CLI(handle_cli_misdn_show_channels, "Show the internal mISDN channel list"),
- NEW_CLI(handle_cli_misdn_show_config, "Show internal mISDN config, read from the config file"),
- NEW_CLI(handle_cli_misdn_show_port, "Show detailed information for given port"),
- NEW_CLI(handle_cli_misdn_show_ports_stats, "Show mISDNs channel's call statistics per port"),
- NEW_CLI(handle_cli_misdn_show_stacks, "Show internal mISDN stack_list"),
- NEW_CLI(handle_cli_misdn_send_calldeflect, "Send CallDeflection to mISDN Channel"),
- NEW_CLI(handle_cli_misdn_send_digit, "Send DTMF digit to mISDN Channel"),
- NEW_CLI(handle_cli_misdn_send_display, "Send Text to mISDN Channel"),
- NEW_CLI(handle_cli_misdn_send_restart, "Send a restart for every bchannel on the given port"),
- NEW_CLI(handle_cli_misdn_set_crypt_debug, "Set CryptDebuglevel of chan_misdn, at the moment, level={1,2}"),
- NEW_CLI(handle_cli_misdn_set_debug, "Set Debuglevel of chan_misdn"),
- NEW_CLI(handle_cli_misdn_set_tics, "???"),
- NEW_CLI(handle_cli_misdn_toggle_echocancel, "Toggle EchoCancel on mISDN Channel"),
+ AST_CLI(handle_cli_misdn_port_block, "Block the given port"),
+ AST_CLI(handle_cli_misdn_port_down, "Try to deacivate the L1 on the given port"),
+ AST_CLI(handle_cli_misdn_port_unblock, "Unblock the given port"),
+ AST_CLI(handle_cli_misdn_port_up, "Try to establish L1 on the given port"),
+ AST_CLI(handle_cli_misdn_reload, "Reload internal mISDN config, read from the config file"),
+ AST_CLI(handle_cli_misdn_restart_pid, "Restart the given pid"),
+ AST_CLI(handle_cli_misdn_restart_port, "Restart the given port"),
+ AST_CLI(handle_cli_misdn_show_channel, "Show an internal mISDN channel"),
+ AST_CLI(handle_cli_misdn_show_channels, "Show the internal mISDN channel list"),
+ AST_CLI(handle_cli_misdn_show_config, "Show internal mISDN config, read from the config file"),
+ AST_CLI(handle_cli_misdn_show_port, "Show detailed information for given port"),
+ AST_CLI(handle_cli_misdn_show_ports_stats, "Show mISDNs channel's call statistics per port"),
+ AST_CLI(handle_cli_misdn_show_stacks, "Show internal mISDN stack_list"),
+ AST_CLI(handle_cli_misdn_send_calldeflect, "Send CallDeflection to mISDN Channel"),
+ AST_CLI(handle_cli_misdn_send_digit, "Send DTMF digit to mISDN Channel"),
+ AST_CLI(handle_cli_misdn_send_display, "Send Text to mISDN Channel"),
+ AST_CLI(handle_cli_misdn_send_restart, "Send a restart for every bchannel on the given port"),
+ AST_CLI(handle_cli_misdn_set_crypt_debug, "Set CryptDebuglevel of chan_misdn, at the moment, level={1,2}"),
+ AST_CLI(handle_cli_misdn_set_debug, "Set Debuglevel of chan_misdn"),
+ AST_CLI(handle_cli_misdn_set_tics, "???"),
+ AST_CLI(handle_cli_misdn_toggle_echocancel, "Toggle EchoCancel on mISDN Channel"),
};
static int update_config(struct chan_list *ch, int orig)
diff --git a/channels/chan_oss.c b/channels/chan_oss.c
index cea7984dc..bd89b03aa 100644
--- a/channels/chan_oss.c
+++ b/channels/chan_oss.c
@@ -1455,16 +1455,16 @@ static char *console_boost(struct ast_cli_entry *e, int cmd, struct ast_cli_args
}
static struct ast_cli_entry cli_oss[] = {
- NEW_CLI(console_answer, "Answer an incoming console call"),
- NEW_CLI(console_hangup, "Hangup a call on the console"),
- NEW_CLI(console_flash, "Flash a call on the console"),
- NEW_CLI(console_dial, "Dial an extension on the console"),
- NEW_CLI(console_mute, "Disable/Enable mic input"),
- NEW_CLI(console_transfer, "Transfer a call to a different extension"),
- NEW_CLI(console_sendtext, "Send text to the remote device"),
- NEW_CLI(console_autoanswer, "Sets/displays autoanswer"),
- NEW_CLI(console_boost, "Sets/displays mic boost in dB"),
- NEW_CLI(console_active, "Sets/displays active console"),
+ AST_CLI(console_answer, "Answer an incoming console call"),
+ AST_CLI(console_hangup, "Hangup a call on the console"),
+ AST_CLI(console_flash, "Flash a call on the console"),
+ AST_CLI(console_dial, "Dial an extension on the console"),
+ AST_CLI(console_mute, "Disable/Enable mic input"),
+ AST_CLI(console_transfer, "Transfer a call to a different extension"),
+ AST_CLI(console_sendtext, "Send text to the remote device"),
+ AST_CLI(console_autoanswer, "Sets/displays autoanswer"),
+ AST_CLI(console_boost, "Sets/displays mic boost in dB"),
+ AST_CLI(console_active, "Sets/displays active console"),
};
/*!
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 118282fba..ad089d2a5 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -18947,25 +18947,25 @@ static int reload(void)
/*! \brief SIP Cli commands definition */
static struct ast_cli_entry cli_sip[] = {
- NEW_CLI(sip_show_channels, "List active SIP channels/subscriptions"),
- NEW_CLI(sip_show_domains, "List our local SIP domains."),
- NEW_CLI(sip_show_inuse, "List all inuse/limits"),
- NEW_CLI(sip_show_objects, "List all SIP object allocations"),
- NEW_CLI(sip_show_peers, "List defined SIP peers"),
- NEW_CLI(sip_show_registry, "List SIP registration status"),
- NEW_CLI(sip_unregister, "Unregister (force expiration) a SIP peer from the registery\n"),
- NEW_CLI(sip_show_settings, "Show SIP global settings"),
- NEW_CLI(sip_notify, "Send a notify packet to a SIP peer"),
- NEW_CLI(sip_show_channel, "Show detailed SIP channel info"),
- NEW_CLI(sip_show_history, "Show SIP dialog history"),
- NEW_CLI(sip_show_peer, "Show details on specific SIP peer"),
- NEW_CLI(sip_show_users, "List defined SIP users"),
- NEW_CLI(sip_show_user, "Show details on specific SIP user"),
- NEW_CLI(sip_prune_realtime, "Prune cached Realtime users/peers"),
- NEW_CLI(sip_do_debug, "Enable/Disable SIP debugging"),
- NEW_CLI(sip_do_history, "Enable SIP history"),
- NEW_CLI(sip_no_history, "Disable SIP history"),
- NEW_CLI(sip_reload, "Reload SIP configuration"),
+ AST_CLI(sip_show_channels, "List active SIP channels/subscriptions"),
+ AST_CLI(sip_show_domains, "List our local SIP domains."),
+ AST_CLI(sip_show_inuse, "List all inuse/limits"),
+ AST_CLI(sip_show_objects, "List all SIP object allocations"),
+ AST_CLI(sip_show_peers, "List defined SIP peers"),
+ AST_CLI(sip_show_registry, "List SIP registration status"),
+ AST_CLI(sip_unregister, "Unregister (force expiration) a SIP peer from the registery\n"),
+ AST_CLI(sip_show_settings, "Show SIP global settings"),
+ AST_CLI(sip_notify, "Send a notify packet to a SIP peer"),
+ AST_CLI(sip_show_channel, "Show detailed SIP channel info"),
+ AST_CLI(sip_show_history, "Show SIP dialog history"),
+ AST_CLI(sip_show_peer, "Show details on specific SIP peer"),
+ AST_CLI(sip_show_users, "List defined SIP users"),
+ AST_CLI(sip_show_user, "Show details on specific SIP user"),
+ AST_CLI(sip_prune_realtime, "Prune cached Realtime users/peers"),
+ AST_CLI(sip_do_debug, "Enable/Disable SIP debugging"),
+ AST_CLI(sip_do_history, "Enable SIP history"),
+ AST_CLI(sip_no_history, "Disable SIP history"),
+ AST_CLI(sip_reload, "Reload SIP configuration"),
};
/*! \brief PBX load module - initialization */
diff --git a/channels/chan_skinny.c b/channels/chan_skinny.c
index 0e5868982..bbea12915 100644
--- a/channels/chan_skinny.c
+++ b/channels/chan_skinny.c
@@ -2731,14 +2731,14 @@ static char *handle_skinny_show_settings(struct ast_cli_entry *e, int cmd, struc
}
static struct ast_cli_entry cli_skinny[] = {
- NEW_CLI(handle_skinny_show_devices, "List defined Skinny devices"),
- NEW_CLI(handle_skinny_show_device, "List Skinny device information"),
- NEW_CLI(handle_skinny_show_lines, "List defined Skinny lines per device"),
- NEW_CLI(handle_skinny_show_line, "List Skinny line information"),
- NEW_CLI(handle_skinny_show_settings, "List global Skinny settings"),
- NEW_CLI(handle_skinny_set_debug, "Enable Skinny debugging"),
- NEW_CLI(handle_skinny_set_debug_off, "Disable Skinny debugging"),
- NEW_CLI(handle_skinny_reset, "Reset Skinny device(s)"),
+ AST_CLI(handle_skinny_show_devices, "List defined Skinny devices"),
+ AST_CLI(handle_skinny_show_device, "List Skinny device information"),
+ AST_CLI(handle_skinny_show_lines, "List defined Skinny lines per device"),
+ AST_CLI(handle_skinny_show_line, "List Skinny line information"),
+ AST_CLI(handle_skinny_show_settings, "List global Skinny settings"),
+ AST_CLI(handle_skinny_set_debug, "Enable Skinny debugging"),
+ AST_CLI(handle_skinny_set_debug_off, "Disable Skinny debugging"),
+ AST_CLI(handle_skinny_reset, "Reset Skinny device(s)"),
};
#if 0
diff --git a/channels/chan_usbradio.c b/channels/chan_usbradio.c
index cc1572501..cbd2fd28f 100644
--- a/channels/chan_usbradio.c
+++ b/channels/chan_usbradio.c
@@ -1923,10 +1923,10 @@ static char *handle_cli_radio_set_debug(struct ast_cli_entry *e, int cmd, struct
}
static struct ast_cli_entry cli_usbradio[] = {
- NEW_CLI(handle_cli_radio_key, "Simulate Rx Signal Present"),
- NEW_CLI(handle_cli_radio_unkey, "Simulate Rx Signal Lusb"),
- NEW_CLI(handle_cli_radio_tune, "Radio Tune"),
- NEW_CLI(handle_cli_radio_set_debug, "Enable/Disable Radio Debugging"),
+ AST_CLI(handle_cli_radio_key, "Simulate Rx Signal Present"),
+ AST_CLI(handle_cli_radio_unkey, "Simulate Rx Signal Lusb"),
+ AST_CLI(handle_cli_radio_tune, "Radio Tune"),
+ AST_CLI(handle_cli_radio_set_debug, "Enable/Disable Radio Debugging"),
};
/*
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 20ae5a376..b808521e7 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -10828,14 +10828,14 @@ static char *handle_pri_show_debug(struct ast_cli_entry *e, int cmd, struct ast_
}
static struct ast_cli_entry zap_pri_cli[] = {
- NEW_CLI(handle_pri_debug, "Enables PRI debugging on a span"),
- NEW_CLI(handle_pri_no_debug, "Disables PRI debugging on a span"),
- NEW_CLI(handle_pri_really_debug, "Enables REALLY INTENSE PRI debugging"),
- NEW_CLI(handle_pri_show_spans, "Displays PRI Information"),
- NEW_CLI(handle_pri_show_span, "Displays PRI Information"),
- NEW_CLI(handle_pri_show_debug, "Displays current PRI debug settings"),
- NEW_CLI(handle_pri_set_debug_file, "Sends PRI debug output to the specified file"),
- NEW_CLI(handle_pri_unset_debug_file, "Ends PRI debug output to file"),
+ AST_CLI(handle_pri_debug, "Enables PRI debugging on a span"),
+ AST_CLI(handle_pri_no_debug, "Disables PRI debugging on a span"),
+ AST_CLI(handle_pri_really_debug, "Enables REALLY INTENSE PRI debugging"),
+ AST_CLI(handle_pri_show_spans, "Displays PRI Information"),
+ AST_CLI(handle_pri_show_span, "Displays PRI Information"),
+ AST_CLI(handle_pri_show_debug, "Displays current PRI debug settings"),
+ AST_CLI(handle_pri_set_debug_file, "Sends PRI debug output to the specified file"),
+ AST_CLI(handle_pri_unset_debug_file, "Ends PRI debug output to file"),
};
#endif /* HAVE_PRI */
@@ -11352,13 +11352,13 @@ static char *zap_show_version(struct ast_cli_entry *e, int cmd, struct ast_cli_a
}
static struct ast_cli_entry zap_cli[] = {
- NEW_CLI(handle_zap_show_cadences, "List cadences"),
- NEW_CLI(zap_show_channels, "Show active zapata channels"),
- NEW_CLI(zap_show_channel, "Show information on a channel"),
- NEW_CLI(zap_destroy_channel, "Destroy a channel"),
- NEW_CLI(zap_restart_cmd, "Fully restart zaptel channels"),
- NEW_CLI(zap_show_status, "Show all Zaptel cards status"),
- NEW_CLI(zap_show_version, "Show the Zaptel version in use"),
+ AST_CLI(handle_zap_show_cadences, "List cadences"),
+ AST_CLI(zap_show_channels, "Show active zapata channels"),
+ AST_CLI(zap_show_channel, "Show information on a channel"),
+ AST_CLI(zap_destroy_channel, "Destroy a channel"),
+ AST_CLI(zap_restart_cmd, "Fully restart zaptel channels"),
+ AST_CLI(zap_show_status, "Show all Zaptel cards status"),
+ AST_CLI(zap_show_version, "Show the Zaptel version in use"),
};
#define TRANSFER 0
@@ -11958,11 +11958,11 @@ static char *handle_ss7_show_linkset(struct ast_cli_entry *e, int cmd, struct as
}
static struct ast_cli_entry zap_ss7_cli[] = {
- NEW_CLI(handle_ss7_debug, "Enables SS7 debugging on a linkset"),
- NEW_CLI(handle_ss7_no_debug, "Disables SS7 debugging on a linkset"),
- NEW_CLI(handle_ss7_block_cic, "Disables SS7 debugging on a linkset"),
- NEW_CLI(handle_ss7_unblock_cic, "Disables SS7 debugging on a linkset"),
- NEW_CLI(handle_ss7_show_linkset, "Shows the status of a linkset"),
+ AST_CLI(handle_ss7_debug, "Enables SS7 debugging on a linkset"),
+ AST_CLI(handle_ss7_no_debug, "Disables SS7 debugging on a linkset"),
+ AST_CLI(handle_ss7_block_cic, "Disables SS7 debugging on a linkset"),
+ AST_CLI(handle_ss7_unblock_cic, "Disables SS7 debugging on a linkset"),
+ AST_CLI(handle_ss7_show_linkset, "Shows the status of a linkset"),
};
#endif /* HAVE_SS7 */
diff --git a/channels/iax2-provision.c b/channels/iax2-provision.c
index 3fe789ec8..702d8bc14 100644
--- a/channels/iax2-provision.c
+++ b/channels/iax2-provision.c
@@ -471,7 +471,7 @@ static char *iax_show_provisioning(struct ast_cli_entry *e, int cmd, struct ast_
}
static struct ast_cli_entry cli_iax2_provision[] = {
- NEW_CLI(iax_show_provisioning, "Display iax provisioning"),
+ AST_CLI(iax_show_provisioning, "Display iax provisioning"),
};
static int iax_provision_init(void)