X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-hreq.c;fp=src%2Fafb-hreq.c;h=70d54582cca1342850226d16be380c6582f9944a;hb=50bfbde712d00234306a52a86063eab65828d918;hp=a8aae40d8d6aa88f25c5aeeab80bbfa0103858cc;hpb=7ac6622e9175764e0ce1eeaeed9a26acee26e42a;p=src%2Fapp-framework-binder.git diff --git a/src/afb-hreq.c b/src/afb-hreq.c index a8aae40d..70d54582 100644 --- a/src/afb-hreq.c +++ b/src/afb-hreq.c @@ -271,25 +271,25 @@ static const char *mimetype_fd_name(int fd, const char *filename) const char *extension = strrchr(filename, '.'); if (extension) { static const char *const known[][2] = { - { ".js", "text/javascript" }, - { ".json", "application/json" }, - { ".html", "text/html" }, { ".css", "text/css" }, + { ".gif", "image/gif" }, + { ".html", "text/html" }, + { ".htm", "text/html" }, { ".ico", "image/x-icon"}, /* TODO: CHECK ME { ".ico", "image/vnd.microsoft.icon" }, */ + { ".jpeg", "image/jpeg" }, { ".jpg", "image/jpeg" }, + { ".js", "text/javascript" }, + { ".json", "application/json" }, + { ".mp3", "audio/mpeg" }, { ".png", "image/png" }, { ".svg", "image/svg+xml" }, { ".ttf", "application/x-font-ttf"}, - { ".htm", "text/html" }, - { ".xml", "application/xml" }, { ".txt", "text/plain" }, { ".wav", "audio/x-wav" }, - { ".xhtml", "application/xhtml+xml" }, { ".xht", "application/xhtml+xml" }, - { ".gif", "image/gif" }, - { ".png", "image/png" }, - { ".mp3", "audio/mpeg" }, + { ".xhtml", "application/xhtml+xml" }, + { ".xml", "application/xml" }, { NULL, NULL } }; int i = 0;