From: Mark Spencer Date: Thu, 29 Apr 2004 02:59:29 +0000 (+0000) Subject: Send ActionID in response ot action command (bug #1484) X-Git-Tag: 1.0.0-rc1~633 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ec8a80b070fdbca767fe81a0824a8befb93a0be0;p=thirdparty%2Fasterisk.git Send ActionID in response ot action command (bug #1484) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2810 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/manager.c b/manager.c index abef7a5230..973630dfaf 100755 --- a/manager.c +++ b/manager.c @@ -465,10 +465,13 @@ static int action_redirect(struct mansession *s, struct message *m) static int action_command(struct mansession *s, struct message *m) { char *cmd = astman_get_header(m, "Command"); + char *id = astman_get_header(m, "ActionID"); ast_mutex_lock(&s->lock); s->blocking = 1; ast_mutex_unlock(&s->lock); ast_cli(s->fd, "Response: Follows\r\n"); + if (id && strlen(id)) + ast_cli(s->fd, "ActionID: %s\r\n", id); /* FIXME: Wedge a ActionID response in here, waiting for later changes */ ast_cli_command(s->fd, cmd); ast_cli(s->fd, "--END COMMAND--\r\n\r\n");