diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-31 04:23:55 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-31 04:23:55 +0000 |
commit | 97f7cd947be1469c223d09b2e6573051f6629cee (patch) | |
tree | 9afd9e15a799d6dc5a31dcc1e1e4bfa769f74607 /Projects/Webserver/Lib/uip | |
parent | e8b8ed2bad293b190c6b2ce9a575e73fbf93e9e2 (diff) | |
download | lufa-97f7cd947be1469c223d09b2e6573051f6629cee.tar.gz lufa-97f7cd947be1469c223d09b2e6573051f6629cee.tar.bz2 lufa-97f7cd947be1469c223d09b2e6573051f6629cee.zip |
Better HTTP GET parsing in the Webserver demo, add application polling.
Diffstat (limited to 'Projects/Webserver/Lib/uip')
-rw-r--r-- | Projects/Webserver/Lib/uip/conf/apps-conf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/Webserver/Lib/uip/conf/apps-conf.h b/Projects/Webserver/Lib/uip/conf/apps-conf.h index 88885a303..540fc33a8 100644 --- a/Projects/Webserver/Lib/uip/conf/apps-conf.h +++ b/Projects/Webserver/Lib/uip/conf/apps-conf.h @@ -9,7 +9,7 @@ uint8_t CurrentState;
FIL FileHandle;
- char FileName[13];
+ char FileName[50];
bool FileOpen;
uint32_t CurrentFilePos;
} uip_tcp_appstate_t;
|