libmicrohttpd

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

commit b784423084c88e1d20090ce8534873477f7a2e91
parent 22c70e2a3c502eb96ffc5e876926c30e8cf14567
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Sun,  4 Jun 2017 14:54:37 +0300

MHD_add_connection(): updated doxy to reflect that per-IP-limit actually is NOT ignored.
Skipping of per-IP-limit could be easily implemented by request.

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

diff --git a/ChangeLog b/ChangeLog @@ -1,3 +1,7 @@ +Sun Jun 04 15:02:00 MSK 2017 + Improved thread-safety of MHD_add_connection() and + internal_add_connection(), minor optimisations. -EG + Sun May 28 23:26:00 MSK 2017 Releasing GNU libmicrohttpd 0.9.55. -EG diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h @@ -2189,8 +2189,6 @@ MHD_stop_daemon (struct MHD_Daemon *daemon); * this call and must no longer be used directly by the application * afterwards. * - * Per-IP connection limits are ignored when using this API. - * * @param daemon daemon that manages the connection * @param client_socket socket to manage (MHD will expect * to receive an HTTP request from this socket next). diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c @@ -2328,8 +2328,6 @@ MHD_cleanup_connections (struct MHD_Daemon *daemon); * this call and must no longer be used directly by the application * afterwards. * - * Per-IP connection limits are ignored when using this API. - * * @param daemon daemon that manages the connection * @param client_socket socket to manage (MHD will expect * to receive an HTTP request from this socket next). @@ -3000,8 +2998,6 @@ resume_suspended_connections (struct MHD_Daemon *daemon) * this call and must no longer be used directly by the application * afterwards. * - * Per-IP connection limits are ignored when using this API. - * * @param daemon daemon that manages the connection * @param client_socket socket to manage (MHD will expect * to receive an HTTP request from this socket next).