aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/libmicrohttpd.texi9
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/libmicrohttpd.texi b/doc/libmicrohttpd.texi
index 377302ef..30e0355d 100644
--- a/doc/libmicrohttpd.texi
+++ b/doc/libmicrohttpd.texi
@@ -509,6 +509,15 @@ result in much benefit, as half of the memory will be typically used
509for IO, and TCP buffers are unlikely to support window sizes above 64k 509for IO, and TCP buffers are unlikely to support window sizes above 64k
510on most systems. 510on most systems.
511 511
512@item MHD_OPTION_CONNECTION_MEMORY_INCREMENT
513@cindex memory
514Increment to use for growing the read buffer (followed by a
515@code{size_t}). The default is 1024 (bytes). Increasing this value
516will make MHD use memory for reading more aggressively, which can
517reduce the number of @code{recvfrom} calls but may increase the number
518of @code{sendto} calls. The given value must fit within
519MHD_OPTION_CONNECTION_MEMORY_LIMIT.
520
512@item MHD_OPTION_CONNECTION_LIMIT 521@item MHD_OPTION_CONNECTION_LIMIT
513@cindex connection, limiting number of connections 522@cindex connection, limiting number of connections
514Maximum number of concurrent connections to accept (followed by an 523Maximum number of concurrent connections to accept (followed by an