diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2010-01-21 13:45:44 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2010-01-21 13:45:44 +0000 |
| commit | c4c64f7250e825aeb4f70cab1a30a2a0d0a132c3 (patch) | |
| tree | f6afd9650084eae3f0c92f47c6f205694168ad32 /Demos/Device/LowLevel/RNDISEthernet/Lib | |
| parent | f7a2bcfba26bd8639884c3a466937e90adbc7630 (diff) | |
Fix up the incomplete Webserver project so that it integrates with the uIP stack correctly. Add simple HTTP webserver as a placeholder until FatFS can be integrated.
Begin to look into the RNDIS Host Class Driver, which seems to crash on test hardware after many packets have been received.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1055 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Device/LowLevel/RNDISEthernet/Lib')
| -rw-r--r-- | Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c b/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c index bf67b5d3..7ba19288 100644 --- 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"
"Connection: close\r\n\r\n";
+/** HTTP server response header, for transmission before a resource not found error. This indicates to the host that the given
+ * given URL is invalid, and gives extra error information.
+ */
char PROGMEM HTTP404Header[] = "HTTP/1.1 404 Not Found\r\n"
"Server: LUFA RNDIS\r\n"
"Connection: close\r\n\r\n";
|
