X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/bb1a036f097602a70ce219915db28dea616b76a8..7ae91099e9b356d3f9fe14b41a53a6af1161690c:/Projects/Webserver/Lib/HTTPServerApp.h diff --git a/Projects/Webserver/Lib/HTTPServerApp.h b/Projects/Webserver/Lib/HTTPServerApp.h index 91956ce07..33a647bfe 100644 --- a/Projects/Webserver/Lib/HTTPServerApp.h +++ b/Projects/Webserver/Lib/HTTPServerApp.h @@ -47,7 +47,7 @@ /** States for each HTTP connection to the webserver. */ enum Webserver_States_t { - WEBSERVER_STATE_OpenRequestedFile, /** Currently opening requested file */ + WEBSERVER_STATE_OpenRequestedFile, /**< Currently opening requested file */ WEBSERVER_STATE_SendResponseHeader, /**< Currently sending HTTP response headers to the client */ WEBSERVER_STATE_SendMIMETypeHeader, /**< Currently sending HTTP MIME type header to the client */ WEBSERVER_STATE_SendData, /**< Currently sending HTTP page data to the client */ @@ -64,18 +64,18 @@ } MIME_Type_t; /* Macros: */ - /** TCP listen port for incomming HTTP traffic */ + /** TCP listen port for incoming HTTP traffic */ #define HTTP_SERVER_PORT 80 /* Function Prototypes: */ - void WebserverApp_Init(void); - void WebserverApp_Callback(void); + void HTTPServerApp_Init(void); + void HTTPServerApp_Callback(void); #if defined(INCLUDE_FROM_HTTPSERVERAPP_C) - static void Webserver_OpenRequestedFile(void); - static void Webserver_SendResponseHeader(void); - static void Webserver_SendMIMETypeHeader(void); - static void Webserver_SendData(void); + static void HTTPServerApp_OpenRequestedFile(void); + static void HTTPServerApp_SendResponseHeader(void); + static void HTTPServerApp_SendMIMETypeHeader(void); + static void HTTPServerApp_SendData(void); #endif #endif