libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 8fd9b6bdbb14ef4e9fdff4e52fd5f5638a0daf4e
parent e620738a221c710bb19555271f81e13862481364
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Mon, 19 Jun 2023 18:15:47 +0300

Fixed some comments

Diffstat:
Msrc/microhttpd/connection.c | 4++--
Msrc/microhttpd/daemon.c | 2+-
Msrc/microhttpd/internal.h | 2+-
3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c @@ -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 \ diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c @@ -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, diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h @@ -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,