aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2008-08-24 21:23:28 +0000
committerChristian Grothoff <christian@grothoff.org>2008-08-24 21:23:28 +0000
commitfc198042d3bb1f824bb6979209ebd1699f447e4d (patch)
treef06d623f16ff8e2c789167c76442b0c60695d431
parent3615d3a3a16c6860b29e0ca198aea53a07172da4 (diff)
downloadlibmicrohttpd-fc198042d3bb1f824bb6979209ebd1699f447e4d.tar.gz
libmicrohttpd-fc198042d3bb1f824bb6979209ebd1699f447e4d.zip
document option to close 1343
-rw-r--r--doc/microhttpd.texi6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/microhttpd.texi b/doc/microhttpd.texi
index f3a927de..89917af0 100644
--- a/doc/microhttpd.texi
+++ b/doc/microhttpd.texi
@@ -284,6 +284,12 @@ should be followed by an @code{unsigned int}. The default is
284zero, which means no limit on the number of connections 284zero, which means no limit on the number of connections
285from the same IP address. 285from the same IP address.
286 286
287@item MHD_OPTION_SOCK_ADDR
288Bind daemon to the supplied socket address. This option should be followed by a
289@code{struct sockaddr *}. If @code{MHD_USE_IPv6} is specified,
290the @code{struct sockaddr*} should point to a @code{struct sockaddr_in6},
291otherwise to a @code{struct sockaddr_in}. If this option is not specified,
292the daemon will listen to incomming connections from anywhere.
287 293
288 294
289@end table 295@end table