aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Webserver/Lib/WebserverApp.h
diff options
context:
space:
mode:
Diffstat (limited to 'Projects/Webserver/Lib/WebserverApp.h')
-rw-r--r--Projects/Webserver/Lib/WebserverApp.h8
1 files changed, 5 insertions, 3 deletions
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 <uip.h>
/* 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: */