projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Add TCP retransmission support to the HTTP webserver in the Webserver project, so...
[pub/USBasp.git]
/
Projects
/
Webserver
/
Lib
/
uip
/
conf
/
apps-conf.h
diff --git
a/Projects/Webserver/Lib/uip/conf/apps-conf.h
b/Projects/Webserver/Lib/uip/conf/apps-conf.h
index
63a445c
..
88885a3
100644
(file)
--- a/
Projects/Webserver/Lib/uip/conf/apps-conf.h
+++ b/
Projects/Webserver/Lib/uip/conf/apps-conf.h
@@
-5,10
+5,13
@@
\r
typedef struct
\r
{
\r
+ uint8_t PrevState;
\r
uint8_t CurrentState;
\r
+
\r
+ FIL FileHandle;
\r
char FileName[13];
\r
- FIL FileToSend;
\r
bool FileOpen;
\r
+ uint32_t CurrentFilePos;
\r
} uip_tcp_appstate_t;
\r
\r
typedef struct
\r