aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-01-09 22:09:28 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-01-09 22:09:28 +0300
commitb0b86333560ad23f7d89f4284639bb327498470e (patch)
treedd358cd2683e57117548df3a8db158d306433522 /src
parent87c722090cd0d9af97d2db5ed7c4c4b5a30fb1f5 (diff)
downloadlibmicrohttpd-b0b86333560ad23f7d89f4284639bb327498470e.tar.gz
libmicrohttpd-b0b86333560ad23f7d89f4284639bb327498470e.zip
Added FIXME comment
Diffstat (limited to 'src')
-rw-r--r--src/microhttpd/daemon.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 1fc158b5..802585c6 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -3837,6 +3837,8 @@ MHD_epoll (struct MHD_Daemon *daemon,
3837 /* run 'accept' until it fails or we are not allowed to take 3837 /* run 'accept' until it fails or we are not allowed to take
3838 on more connections */ 3838 on more connections */
3839 series_length = 0; 3839 series_length = 0;
3840 /* FIXME: If more than 128 connections are pending, the rest
3841 * of them will not trigger next epoll_wait()? */
3840 while ( (MHD_YES == MHD_accept_connection (daemon)) && 3842 while ( (MHD_YES == MHD_accept_connection (daemon)) &&
3841 (daemon->connections < daemon->connection_limit) && 3843 (daemon->connections < daemon->connection_limit) &&
3842 (series_length < 128) && 3844 (series_length < 128) &&