summaryrefslogtreecommitdiff
path: root/main/http.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2007-02-20 20:32:13 +0000
committerRussell Bryant <russell@russellbryant.com>2007-02-20 20:32:13 +0000
commit4cbce3356e8bf3b6c3c13e8dabf8d36365eae996 (patch)
tree286571f08925e810a0ea859102e0374d9c15fac3 /main/http.c
parent8088fcd3128fb6a99d779f2d8ea059ea3d39cb21 (diff)
Merged revisions 55634 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r55634 | russell | 2007-02-20 14:26:06 -0600 (Tue, 20 Feb 2007) | 3 lines Add the Asterisk version information to the Server header in HTTP responses. (requested by Pari) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@55635 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/http.c')
-rw-r--r--main/http.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/main/http.c b/main/http.c
index 3d0b7f703..97738b4f0 100644
--- a/main/http.c
+++ b/main/http.c
@@ -54,6 +54,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/options.h"
#include "asterisk/config.h"
#include "asterisk/stringfields.h"
+#include "asterisk/version.h"
#define MAX_PREFIX 80
#define DEFAULT_PREFIX "/asterisk"
@@ -611,10 +612,10 @@ static void *httpd_helper_thread(void *data)
strftime(timebuf, sizeof(timebuf), "%a, %d %b %Y %H:%M:%S GMT", gmtime(&t));
fprintf(ser->f, "HTTP/1.1 %d %s\r\n"
- "Server: Asterisk\r\n"
+ "Server: Asterisk/%s\r\n"
"Date: %s\r\n"
"Connection: close\r\n",
- status, title ? title : "OK", timebuf);
+ status, title ? title : "OK", ASTERISK_VERSION, timebuf);
if (!contentlength) { /* opaque body ? just dump it hoping it is properly formatted */
fprintf(ser->f, "%s", out->str);
} else {