From cec699ac591a679010e07431dfb17823a79856df Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Wed, 27 Jan 2010 13:45:08 +0000 Subject: Clean up Webserver project - add more Doxygen documentation for the new DHCP client functions and defines. --- Projects/Webserver/Lib/WebserverApp.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'Projects/Webserver/Lib/WebserverApp.h') diff --git a/Projects/Webserver/Lib/WebserverApp.h b/Projects/Webserver/Lib/WebserverApp.h index 3cb97c667..c788bdbeb 100644 --- a/Projects/Webserver/Lib/WebserverApp.h +++ b/Projects/Webserver/Lib/WebserverApp.h @@ -45,14 +45,16 @@ #include /* Enums: */ + /** States for each HTTP connection to the webserver. */ enum Webserver_States_t { - WEBSERVER_STATE_SendHeaders, - WEBSERVER_STATE_SendData, - WEBSERVER_STATE_Closed, + WEBSERVER_STATE_SendHeaders, /**< Currently sending HTTP headers to the client */ + WEBSERVER_STATE_SendData, /**< Currently sending HTTP page data to the client */ + WEBSERVER_STATE_Closed, /**< Connection closed after all data sent */ }; /* Macros: */ + /** TCP listen port for incomming HTTP traffic */ #define HTTP_SERVER_PORT 80 /* Function Prototypes: */ -- cgit v1.2.3