diff options
| author | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-29 02:43:07 +0000 |
|---|---|---|
| committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-29 02:43:07 +0000 |
| commit | fa3135d48530930aefd5ef4ca9d0def3faae474d (patch) | |
| tree | 25f479530874d3071128fa7a963251347924085d /Projects/Webserver/Lib/uip | |
| parent | e81a4c950f88aeed9cf3ff5b9911afffd1862716 (diff) | |
| download | lufa-fa3135d48530930aefd5ef4ca9d0def3faae474d.tar.gz lufa-fa3135d48530930aefd5ef4ca9d0def3faae474d.tar.bz2 lufa-fa3135d48530930aefd5ef4ca9d0def3faae474d.zip | |
Add MIME type handling to the Webserver project, so that files of different types (e.g. images) can be served out to HTTP clients.
Diffstat (limited to 'Projects/Webserver/Lib/uip')
| -rw-r--r-- | Projects/Webserver/Lib/uip/conf/apps-conf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Projects/Webserver/Lib/uip/conf/apps-conf.h b/Projects/Webserver/Lib/uip/conf/apps-conf.h index 76cd93719..63a445ca9 100644 --- a/Projects/Webserver/Lib/uip/conf/apps-conf.h +++ b/Projects/Webserver/Lib/uip/conf/apps-conf.h @@ -6,6 +6,7 @@ typedef struct
{
uint8_t CurrentState;
+ char FileName[13];
FIL FileToSend;
bool FileOpen;
} uip_tcp_appstate_t;
|
