Merged revisions 85532 via svnmerge from
authorRussell Bryant <russell@russellbryant.com>
Sun, 21 Oct 2007 22:52:20 +0000 (22:52 +0000)
committerRussell Bryant <russell@russellbryant.com>
Sun, 21 Oct 2007 22:52:20 +0000 (22:52 +0000)
https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r85532 | russell | 2007-10-13 00:24:33 -0500 (Sat, 13 Oct 2007) | 8 lines

Properly handle the case where read() may return the text for more than one
CLI command at once for a remote console.

(closes issue #10888)
Reported by: jamesgolovich
Patches:
      asterisk-climultiple.diff.txt uploaded by jamesgolovich (license 176)

........

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@86585 65c4cc65-6c06-0410-ace0-fbb531ad65f3

include/asterisk/cli.h
main/asterisk.c
main/cli.c

index 59d91ab..ba0596d 100644 (file)
@@ -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
index 913859d..1f7d91f 100644 (file)
@@ -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));
index 432869c..06c1b9c 100644 (file)
@@ -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;
+}