Index: include/asterisk/manager.h =================================================================== --- include/asterisk/manager.h (revision 431113) +++ include/asterisk/manager.h (working copy) @@ -54,7 +54,7 @@ - \ref manager.c Main manager code file */ -#define AMI_VERSION "2.7.0" +#define AMI_VERSION "2.8.0" #define DEFAULT_MANAGER_PORT 5038 /* Default port for Asterisk management via TCP */ #define DEFAULT_MANAGER_TLS_PORT 5039 /* Default port for Asterisk management via TCP */ Index: main/manager.c =================================================================== --- main/manager.c (revision 431113) +++ main/manager.c (working copy) @@ -4863,6 +4863,7 @@ astman_append(s, "ActionID: %s\r\n", id); } /* FIXME: Wedge a ActionID response in here, waiting for later changes */ + astman_append(s, "\r\n"); ast_cli_command(fd, cmd); /* XXX need to change this to use a FILE * */ /* Determine number of characters available */ if ((l = lseek(fd, 0, SEEK_END)) < 0) { Index: CHANGES =================================================================== --- CHANGES (revision 431113) +++ CHANGES (working copy) @@ -160,6 +160,9 @@ headers for the action response event starting the list and the list complete event. The AMI version has been bumped to 2.7.0 as a result. + * The response from the Command action now has a blank line between the + headers and the output from the command. + ------------------------------------------------------------------------------ --- Functionality changes from Asterisk 13.0.0 to Asterisk 13.1.0 ------------ ------------------------------------------------------------------------------