summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/asterisk/cli.h9
-rw-r--r--main/asterisk.c2
-rw-r--r--main/cli.c17
3 files changed, 26 insertions, 2 deletions
diff --git a/include/asterisk/cli.h b/include/asterisk/cli.h
index 59d91ab8c..ba0596d84 100644
--- a/include/asterisk/cli.h
+++ b/include/asterisk/cli.h
@@ -226,7 +226,14 @@ char *ast_cli_complete(const char *word, char *const choices[], int pos);
int ast_cli_command(int fd, const char *s);
/*!
- * \brief Registers a command or an array of commands
+ * \brief Executes multiple CLI commands
+ * Interpret strings separated by '\0' and execute each one, sending output to fd
+ * \param size is the total size of the string
+ * \retval number of commands executed
+ */
+int ast_cli_command_multiple(int fd, size_t size, const char *s);
+
+/*! \brief Registers a command or an array of commands
* \param e which cli entry to register
* Register your own command
* \retval 0 on success
diff --git a/main/asterisk.c b/main/asterisk.c
index 913859d56..1f7d91f55 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -963,7 +963,7 @@ static void *netconsole(void *vconsole)
break;
}
tmp[res] = 0;
- ast_cli_command(con->fd, tmp);
+ ast_cli_command_multiple(con->fd, res, tmp);
}
if (fds[1].revents) {
res = read(con->p[0], tmp, sizeof(tmp));
diff --git a/main/cli.c b/main/cli.c
index 432869c1a..06c1b9ca2 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -1850,3 +1850,20 @@ done:
ast_free(dup);
return 0;
}
+
+int ast_cli_command_multiple(int fd, size_t size, const char *s)
+{
+ char cmd[512];
+ int x, y = 0, count = 0;
+
+ for (x = 0; x < size; x++) {
+ cmd[y] = s[x];
+ y++;
+ if (s[x] == '\0') {
+ ast_cli_command(fd, cmd);
+ y = 0;
+ count++;
+ }
+ }
+ return count;
+}