aboutsummaryrefslogtreecommitdiffstats
path: root/pbx/pbx_dundi.c
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-22 20:05:18 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-22 20:05:18 +0000
commit7756b987a015d6001cb1f31e06439d4010125185 (patch)
treec308e240451b2777ff9a40a64c62a5e289762709 /pbx/pbx_dundi.c
parent8451f110520d2d9747dd8fc06cb6aaa8dddcc9c2 (diff)
Switch from AST_CLI (formerly NEW_CLI) to AST_CLI_DEFINE, since the former didn't make much sense
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@86820 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx/pbx_dundi.c')
-rw-r--r--pbx/pbx_dundi.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/pbx/pbx_dundi.c b/pbx/pbx_dundi.c
index 989c07a92..afce62221 100644
--- a/pbx/pbx_dundi.c
+++ b/pbx/pbx_dundi.c
@@ -2866,21 +2866,21 @@ static char *dundi_show_precache(struct ast_cli_entry *e, int cmd, struct ast_cl
}
static struct ast_cli_entry cli_dundi[] = {
- AST_CLI(dundi_do_debug, "Enable DUNDi debugging"),
- AST_CLI(dundi_no_debug, "Disable DUNDi debugging"),
- AST_CLI(dundi_do_store_history, "Enable DUNDi historic records"),
- AST_CLI(dundi_no_store_history, "Disable DUNDi historic records"),
- AST_CLI(dundi_flush, "Flush DUNDi cache"),
- AST_CLI(dundi_show_peers, "Show defined DUNDi peers"),
- AST_CLI(dundi_show_trans, "Show active DUNDi transactions"),
- AST_CLI(dundi_show_entityid, "Display Global Entity ID"),
- AST_CLI(dundi_show_mappings, "Show DUNDi mappings"),
- AST_CLI(dundi_show_precache, "Show DUNDi precache"),
- AST_CLI(dundi_show_requests, "Show DUNDi requests"),
- AST_CLI(dundi_show_peer, "Show info on a specific DUNDi peer"),
- AST_CLI(dundi_do_precache, "Precache a number in DUNDi"),
- AST_CLI(dundi_do_lookup, "Lookup a number in DUNDi"),
- AST_CLI(dundi_do_query, "Query a DUNDi EID"),
+ AST_CLI_DEFINE(dundi_do_debug, "Enable DUNDi debugging"),
+ AST_CLI_DEFINE(dundi_no_debug, "Disable DUNDi debugging"),
+ AST_CLI_DEFINE(dundi_do_store_history, "Enable DUNDi historic records"),
+ AST_CLI_DEFINE(dundi_no_store_history, "Disable DUNDi historic records"),
+ AST_CLI_DEFINE(dundi_flush, "Flush DUNDi cache"),
+ AST_CLI_DEFINE(dundi_show_peers, "Show defined DUNDi peers"),
+ AST_CLI_DEFINE(dundi_show_trans, "Show active DUNDi transactions"),
+ AST_CLI_DEFINE(dundi_show_entityid, "Display Global Entity ID"),
+ AST_CLI_DEFINE(dundi_show_mappings, "Show DUNDi mappings"),
+ AST_CLI_DEFINE(dundi_show_precache, "Show DUNDi precache"),
+ AST_CLI_DEFINE(dundi_show_requests, "Show DUNDi requests"),
+ AST_CLI_DEFINE(dundi_show_peer, "Show info on a specific DUNDi peer"),
+ AST_CLI_DEFINE(dundi_do_precache, "Precache a number in DUNDi"),
+ AST_CLI_DEFINE(dundi_do_lookup, "Lookup a number in DUNDi"),
+ AST_CLI_DEFINE(dundi_do_query, "Query a DUNDi EID"),
};
static struct dundi_transaction *create_transaction(struct dundi_peer *p)