Add MIME type handling to the Webserver project, so that files of different types (e.g. images) can be served out to HTTP clients.

This commit is contained in:
Dean Camera 2010-01-29 02:43:07 +00:00
parent e81a4c950f
commit fa3135d485
7 changed files with 102 additions and 32 deletions

View file

@ -6,6 +6,7 @@
typedef struct
{
uint8_t CurrentState;
char FileName[13];
FIL FileToSend;
bool FileOpen;
} uip_tcp_appstate_t;