aboutsummaryrefslogtreecommitdiffstats
path: root/main/http.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-20 20:32:13 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-20 20:32:13 +0000
commit8ee3bcf4cf0cb2a6eea7609890fabfb825351941 (patch)
tree286571f08925e810a0ea859102e0374d9c15fac3 /main/http.c
parent46b2ef93897068437758a9f52538e6fb230c4fb1 (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: http://svn.digium.com/svn/asterisk/trunk@55635 f38db490-d61c-443f-a65b-d21fe96a405b
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 {