From: José Bollo Date: Thu, 18 Jan 2018 09:16:13 +0000 (+0100) Subject: afb-hreq: Sort mimetypes X-Git-Tag: flounder_5.99.1~98 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=50bfbde712d00234306a52a86063eab65828d918;p=src%2Fapp-framework-binder.git afb-hreq: Sort mimetypes Change-Id: I45ae5a702b83dabe081b625b4bcaf5de33ffa1e6 Signed-off-by: José Bollo --- 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;