diff options
Diffstat (limited to 'Projects/Webserver/Lib/HTTPServerApp.h')
-rw-r--r-- | Projects/Webserver/Lib/HTTPServerApp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Projects/Webserver/Lib/HTTPServerApp.h b/Projects/Webserver/Lib/HTTPServerApp.h index b1139280c..d212cf250 100644 --- a/Projects/Webserver/Lib/HTTPServerApp.h +++ b/Projects/Webserver/Lib/HTTPServerApp.h @@ -61,8 +61,8 @@ /** Type define for a MIME type handler. */
typedef struct
{
- char Extension[4]; /**< 3 or less character file extension */
- char MIMEType[30]; /**< Appropriate MIME type to send when the extension is encountered */
+ char* Extension; /**< File extension (no leading '.' character) */
+ char* MIMEType; /**< Appropriate MIME type to send when the extension is encountered */
} MIME_Type_t;
/* Macros: */
|