projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix up the incomplete Webserver project so that it integrates with the uIP stack...
[pub/USBasp.git]
/
Demos
/
Device
/
LowLevel
/
RNDISEthernet
/
Lib
/
Webserver.c
diff --git
a/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c
b/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c
index
bf67b5d
..
7ba1928
100644
(file)
--- a/
Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c
+++ b/
Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c
@@
-44,6
+44,9
@@
char PROGMEM HTTP200Header[] = "HTTP/1.1 200 OK\r\n"
"Content-type: text/html\r\n"
\r
"Connection: close\r\n\r\n";
\r
\r
"Content-type: text/html\r\n"
\r
"Connection: close\r\n\r\n";
\r
\r
+/** HTTP server response header, for transmission before a resource not found error. This indicates to the host that the given
\r
+ * given URL is invalid, and gives extra error information.
\r
+ */
\r
char PROGMEM HTTP404Header[] = "HTTP/1.1 404 Not Found\r\n"
\r
"Server: LUFA RNDIS\r\n"
\r
"Connection: close\r\n\r\n";
\r
char PROGMEM HTTP404Header[] = "HTTP/1.1 404 Not Found\r\n"
\r
"Server: LUFA RNDIS\r\n"
\r
"Connection: close\r\n\r\n";
\r