Fixed some comments

This commit is contained in:
Evgeny Grin (Karlson2k)
2023-06-20 23:22:58 +03:00
parent e620738a22
commit 8fd9b6bdbb
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -346,7 +346,7 @@
#endif
/**
* Response text used when the request has unsupported "Transfer-Enconding:".
* Response text used when the request has unsupported "Transfer-Encoding:".
*/
#ifdef HAVE_MESSAGES
#define REQUEST_UNSUPPORTED_TR_ENCODING \
@@ -360,7 +360,7 @@
/**
* Response text used when the request has unsupported both headers:
* "Transfer-Enconding:" and "Content-Length:"
* "Transfer-Encoding:" and "Content-Length:"
*/
#ifdef HAVE_MESSAGES
#define REQUEST_LENGTH_WITH_TR_ENCODING \
+1 -1
View File
@@ -5535,7 +5535,7 @@ MHD_run (struct MHD_Daemon *daemon)
/**
* Run websever operation with possible blocking.
* Run webserver operation with possible blocking.
*
* This function does the following: waits for any network event not more than
* specified number of milliseconds, processes all incoming and outgoing data,
+1 -1
View File
@@ -641,7 +641,7 @@ enum MHD_CONNECTION_STATE
MHD_CONNECTION_HEADERS_RECEIVED = MHD_CONNECTION_REQ_HEADERS_RECEIVING + 1,
/**
* We have processed the request headers. Send 100 continue.
* We have processed the request headers. Call application callback.
*/
MHD_CONNECTION_HEADERS_PROCESSED = MHD_CONNECTION_HEADERS_RECEIVED + 1,