projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
324a3c1
)
Asterisk HTTP response Content-type
author
Andrew Latham
<lathama@gmail.com>
Mon, 31 Jan 2011 13:57:53 +0000
(13:57 +0000)
committer
Andrew Latham
<lathama@gmail.com>
Mon, 31 Jan 2011 13:57:53 +0000
(13:57 +0000)
Address content type for BSD and other platforms
(closes issue #18456)
Reported by: alexo
Patches:
asterisk18_http.patch uploaded by alexo (license 1175)
Tested by: alexo
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@305084
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
main/http.c
patch
|
blob
|
history
diff --git
a/main/http.c
b/main/http.c
index
0bdf385
..
677e8c2
100644
(file)
--- a/
main/http.c
+++ b/
main/http.c
@@
-110,6
+110,13
@@
static struct {
{ "svg", "image/svg+xml" },
{ "svgz", "image/svg+xml" },
{ "gif", "image/gif" },
+ { "html", "text/html" },
+ { "htm", "text/html" },
+ { "cnf", "text/plain" },
+ { "cfg", "text/plain" },
+ { "bin", "application/octet-stream" },
+ { "sbn", "application/octet-stream" },
+ { "ld", "application/octet-stream" },
};
struct http_uri_redirect {