diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-25 12:46:57 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-01-25 12:46:57 +0000 |
commit | db420853ce1a7c4545c443b9b7e9925fac3fbbb5 (patch) | |
tree | 484b95af1a60a1762b28d06c6b30687cf2de7329 /Projects/Webserver/Lib | |
parent | 15c408ab8635fe45226abc2c55c9bebfe1ccb6c8 (diff) | |
download | lufa-db420853ce1a7c4545c443b9b7e9925fac3fbbb5.tar.gz lufa-db420853ce1a7c4545c443b9b7e9925fac3fbbb5.tar.bz2 lufa-db420853ce1a7c4545c443b9b7e9925fac3fbbb5.zip |
Add Webserver project Doxygen configuration file and overview document.
Fix Doxygen configuration files' input file exclusion filters.
Diffstat (limited to 'Projects/Webserver/Lib')
-rw-r--r-- | Projects/Webserver/Lib/WebserverApp.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Projects/Webserver/Lib/WebserverApp.c b/Projects/Webserver/Lib/WebserverApp.c index 6ac94d6ac..cba3b43fa 100644 --- a/Projects/Webserver/Lib/WebserverApp.c +++ b/Projects/Webserver/Lib/WebserverApp.c @@ -51,9 +51,7 @@ char PROGMEM HTTP404Header[] = "HTTP/1.1 404 Not Found\r\n" "Server: LUFA RNDIS\r\n"
"Connection: close\r\n\r\n";
-/** HTTP page to serve to the host when a HTTP request is made. This page is too long for a single response, thus it is automatically
- * broken up into smaller blocks and sent as a series of packets each time the webserver application callback is run.
- */
+/** Static HTTP page to serve to the host when a HTTP request is made from a host. */
char PROGMEM HTTPPage[] =
"<html>"
" <head>"
|