aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-19 18:29:40 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-19 18:29:40 +0000
commitd542122e6a00ac0c2ee0f5178a2b3682f0fd48c3 (patch)
tree449c79f9794d0470ca27cb420554eb128bee9d9e /res
parent4723d35127a1da861d28ce2ae2ee0e8bbd7c3e7b (diff)
Convert NEW_CLI to AST_CLI.
Closes issue #11039, as suggested by seanbright. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@86536 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_agi.c6
-rw-r--r--res/res_clioriginate.c2
-rw-r--r--res/res_config_pgsql.c2
-rw-r--r--res/res_config_sqlite.c2
-rw-r--r--res/res_convert.c2
-rw-r--r--res/res_crypto.c4
-rw-r--r--res/res_features.c6
-rw-r--r--res/res_indications.c6
-rw-r--r--res/res_jabber.c12
-rw-r--r--res/res_limit.c2
-rw-r--r--res/res_musiconhold.c6
-rw-r--r--res/res_odbc.c2
-rw-r--r--res/res_realtime.c4
13 files changed, 28 insertions, 28 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index aeaeb7dd0..994c83e08 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -2217,9 +2217,9 @@ static int deadagi_exec(struct ast_channel *chan, void *data)
}
static struct ast_cli_entry cli_agi[] = {
- NEW_CLI(handle_cli_agi_debug, "Enable/Disable AGI debugging"),
- NEW_CLI(handle_cli_agi_show, "List AGI commands or specific help"),
- NEW_CLI(handle_cli_agi_dumphtml, "Dumps a list of AGI commands in HTML format")
+ AST_CLI(handle_cli_agi_debug, "Enable/Disable AGI debugging"),
+ AST_CLI(handle_cli_agi_show, "List AGI commands or specific help"),
+ AST_CLI(handle_cli_agi_dumphtml, "Dumps a list of AGI commands in HTML format")
};
static int unload_module(void)
diff --git a/res/res_clioriginate.c b/res/res_clioriginate.c
index 7a9245aba..2a4780ca9 100644
--- a/res/res_clioriginate.c
+++ b/res/res_clioriginate.c
@@ -176,7 +176,7 @@ static char *handle_orig(struct ast_cli_entry *e, int cmd, struct ast_cli_args *
}
static struct ast_cli_entry cli_cliorig[] = {
- NEW_CLI(handle_orig, "Originate a call"),
+ AST_CLI(handle_orig, "Originate a call"),
};
/*! \brief Unload orginate module */
diff --git a/res/res_config_pgsql.c b/res/res_config_pgsql.c
index 2148f741c..a2396d310 100644
--- a/res/res_config_pgsql.c
+++ b/res/res_config_pgsql.c
@@ -67,7 +67,7 @@ static int pgsql_reconnect(const char *database);
static char *handle_cli_realtime_pgsql_status(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a);
static struct ast_cli_entry cli_realtime[] = {
- NEW_CLI(handle_cli_realtime_pgsql_status, "Shows connection information for the PostgreSQL RealTime driver"),
+ AST_CLI(handle_cli_realtime_pgsql_status, "Shows connection information for the PostgreSQL RealTime driver"),
};
static struct ast_variable *realtime_pgsql(const char *database, const char *table, va_list ap)
diff --git a/res/res_config_sqlite.c b/res/res_config_sqlite.c
index 40545a575..095b827f8 100644
--- a/res/res_config_sqlite.c
+++ b/res/res_config_sqlite.c
@@ -500,7 +500,7 @@ AST_MUTEX_DEFINE_STATIC(mutex);
* command.
*/
static struct ast_cli_entry cli_status[] = {
- NEW_CLI(handle_cli_show_sqlite_status, "Show status information about the SQLite 2 driver"),
+ AST_CLI(handle_cli_show_sqlite_status, "Show status information about the SQLite 2 driver"),
};
/*
diff --git a/res/res_convert.c b/res/res_convert.c
index 2e514b111..2c753741b 100644
--- a/res/res_convert.c
+++ b/res/res_convert.c
@@ -147,7 +147,7 @@ fail_out:
}
static struct ast_cli_entry cli_convert[] = {
- NEW_CLI(handle_cli_file_convert, "Convert audio file")
+ AST_CLI(handle_cli_file_convert, "Convert audio file")
};
static int unload_module(void)
diff --git a/res/res_crypto.c b/res/res_crypto.c
index b0b34bd7c..5f33369af 100644
--- a/res/res_crypto.c
+++ b/res/res_crypto.c
@@ -582,8 +582,8 @@ static char *handle_cli_keys_init(struct ast_cli_entry *e, int cmd, struct ast_c
}
static struct ast_cli_entry cli_crypto[] = {
- NEW_CLI(handle_cli_keys_show, "Displays RSA key information"),
- NEW_CLI(handle_cli_keys_init, "Initialize RSA key passcodes")
+ AST_CLI(handle_cli_keys_show, "Displays RSA key information"),
+ AST_CLI(handle_cli_keys_init, "Initialize RSA key passcodes")
};
/*! \brief initialise the res_crypto module */
diff --git a/res/res_features.c b/res/res_features.c
index 9bf0914e9..993d1b90f 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -2629,11 +2629,11 @@ static char *handle_parkedcalls_deprecated(struct ast_cli_entry *e, int cmd, str
return res;
}
-static struct ast_cli_entry cli_show_parkedcalls_deprecated = NEW_CLI(handle_parkedcalls_deprecated, "List currently parked calls.");
+static struct ast_cli_entry cli_show_parkedcalls_deprecated = AST_CLI(handle_parkedcalls_deprecated, "List currently parked calls.");
static struct ast_cli_entry cli_features[] = {
- NEW_CLI(handle_feature_show, "Lists configured features"),
- NEW_CLI(handle_parkedcalls, "List currently parked calls", .deprecate_cmd = &cli_show_parkedcalls_deprecated),
+ AST_CLI(handle_feature_show, "Lists configured features"),
+ AST_CLI(handle_parkedcalls, "List currently parked calls", .deprecate_cmd = &cli_show_parkedcalls_deprecated),
};
/*!
diff --git a/res/res_indications.c b/res/res_indications.c
index e573e4a90..475a79d31 100644
--- a/res/res_indications.c
+++ b/res/res_indications.c
@@ -382,9 +382,9 @@ out: v = v->next;
/*! \brief CLI entries for commands provided by this module */
static struct ast_cli_entry cli_indications[] = {
- NEW_CLI(handle_cli_indication_add, "Add the given indication to the country"),
- NEW_CLI(handle_cli_indication_remove, "Remove the given indication from the country"),
- NEW_CLI(handle_cli_indication_show, "Display a list of all countries/indications")
+ AST_CLI(handle_cli_indication_add, "Add the given indication to the country"),
+ AST_CLI(handle_cli_indication_remove, "Remove the given indication from the country"),
+ AST_CLI(handle_cli_indication_show, "Display a list of all countries/indications")
};
/*! \brief Unload indicators module */
diff --git a/res/res_jabber.c b/res/res_jabber.c
index f93c8617f..94649874a 100644
--- a/res/res_jabber.c
+++ b/res/res_jabber.c
@@ -115,12 +115,12 @@ static int aji_register_transport2(void *data, ikspak *pak);
*/
static struct ast_cli_entry aji_cli[] = {
- NEW_CLI(aji_do_debug, "Enable jabber debugging"),
- NEW_CLI(aji_no_debug, "Disable Jabber debug"),
- NEW_CLI(aji_do_reload, "Reload Jabber configuration"),
- NEW_CLI(aji_show_clients, "Show state of clients and components"),
- NEW_CLI(aji_show_buddies, "Show buddy lists of our clients"),
- NEW_CLI(aji_test, "Shows roster, but is generally used for mog's debugging."),
+ AST_CLI(aji_do_debug, "Enable jabber debugging"),
+ AST_CLI(aji_no_debug, "Disable Jabber debug"),
+ AST_CLI(aji_do_reload, "Reload Jabber configuration"),
+ AST_CLI(aji_show_clients, "Show state of clients and components"),
+ AST_CLI(aji_show_buddies, "Show buddy lists of our clients"),
+ AST_CLI(aji_test, "Shows roster, but is generally used for mog's debugging."),
};
static char *app_ajisend = "JabberSend";
diff --git a/res/res_limit.c b/res/res_limit.c
index fcaf03b86..9d6d2699c 100644
--- a/res/res_limit.c
+++ b/res/res_limit.c
@@ -204,7 +204,7 @@ static char *handle_cli_ulimit(struct ast_cli_entry *e, int cmd, struct ast_cli_
}
static struct ast_cli_entry cli_ulimit =
- NEW_CLI(handle_cli_ulimit, "Set or show process resource limits");
+ AST_CLI(handle_cli_ulimit, "Set or show process resource limits");
static int unload_module(void)
{
diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c
index 49c0d31ac..eec830627 100644
--- a/res/res_musiconhold.c
+++ b/res/res_musiconhold.c
@@ -1273,9 +1273,9 @@ static char *handle_cli_moh_show_classes(struct ast_cli_entry *e, int cmd, struc
}
static struct ast_cli_entry cli_moh[] = {
- NEW_CLI(handle_cli_moh_reload, "Reload MusicOnHold"),
- NEW_CLI(handle_cli_moh_show_classes, "List MusicOnHold classes"),
- NEW_CLI(handle_cli_moh_show_files, "List MusicOnHold file-based classes")
+ AST_CLI(handle_cli_moh_reload, "Reload MusicOnHold"),
+ AST_CLI(handle_cli_moh_show_classes, "List MusicOnHold classes"),
+ AST_CLI(handle_cli_moh_show_files, "List MusicOnHold file-based classes")
};
static int init_classes(int reload)
diff --git a/res/res_odbc.c b/res/res_odbc.c
index 18627d4d2..7d27bfd4f 100644
--- a/res/res_odbc.c
+++ b/res/res_odbc.c
@@ -396,7 +396,7 @@ static char *handle_cli_odbc_show(struct ast_cli_entry *e, int cmd, struct ast_c
}
static struct ast_cli_entry cli_odbc[] = {
- NEW_CLI(handle_cli_odbc_show, "List ODBC DSN(s)")
+ AST_CLI(handle_cli_odbc_show, "List ODBC DSN(s)")
};
static int odbc_register_class(struct odbc_class *class, int connect)
diff --git a/res/res_realtime.c b/res/res_realtime.c
index e560e02a3..7806c82f2 100644
--- a/res/res_realtime.c
+++ b/res/res_realtime.c
@@ -117,8 +117,8 @@ static char *cli_realtime_update(struct ast_cli_entry *e, int cmd, struct ast_cl
}
static struct ast_cli_entry cli_realtime[] = {
- NEW_CLI(cli_realtime_load, "Used to print out RealTime variables."),
- NEW_CLI(cli_realtime_update, "Used to update RealTime variables."),
+ AST_CLI(cli_realtime_load, "Used to print out RealTime variables."),
+ AST_CLI(cli_realtime_update, "Used to update RealTime variables."),
};
static int unload_module(void)