1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
| #include "mimetable.h"
| #include "pgmspace.h"
|
| namespace mime
| {
|
| // Table of extension->MIME strings stored in PROGMEM, needs to be global due to GCC section typing rules
| const Entry mimeTable[maxType] =
| {
| { ".html", "text/html" },
| { ".htm", "text/html" },
| { ".css", "text/css" },
| { ".txt", "text/plain" },
| { ".js", "application/javascript" },
| { ".json", "application/json" },
| { ".png", "image/png" },
| { ".gif", "image/gif" },
| { ".jpg", "image/jpeg" },
| { ".ico", "image/x-icon" },
| { ".svg", "image/svg+xml" },
| { ".ttf", "application/x-font-ttf" },
| { ".otf", "application/x-font-opentype" },
| { ".woff", "application/font-woff" },
| { ".woff2", "application/font-woff2" },
| { ".eot", "application/vnd.ms-fontobject" },
| { ".sfnt", "application/font-sfnt" },
| { ".xml", "text/xml" },
| { ".pdf", "application/pdf" },
| { ".zip", "application/zip" },
| { ".gz", "application/x-gzip" },
| { ".appcache", "text/cache-manifest" },
| { "", "application/octet-stream" }
| };
|
| }
|
|