aboutsummaryrefslogtreecommitdiff
path: root/src/examples/timeout.c
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-08 19:44:50 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-08 19:44:50 +0300
commitdf98141b03a5c2fec11442f617e8842b6230b793 (patch)
tree4c5f5e90d9050f5a0b3040459e9c0cf0fd454281 /src/examples/timeout.c
parentd5245634c224c7169634ce4c34e800447f426c87 (diff)
downloadlibmicrohttpd-df98141b03a5c2fec11442f617e8842b6230b793.tar.gz
libmicrohttpd-df98141b03a5c2fec11442f617e8842b6230b793.zip
Added missing MHD_USE_INTERNAL_POLLING_THREAD in examples.
Diffstat (limited to 'src/examples/timeout.c')
-rw-r--r--src/examples/timeout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/examples/timeout.c b/src/examples/timeout.c
index 5025d26b..ef18c0ee 100644
--- a/src/examples/timeout.c
+++ b/src/examples/timeout.c
@@ -38,7 +38,7 @@ main (int argc,
38{ 38{
39 struct MHD_Daemon *daemon; 39 struct MHD_Daemon *daemon;
40 40
41 daemon = MHD_start_daemon (MHD_USE_THREAD_PER_CONNECTION, 41 daemon = MHD_start_daemon (MHD_USE_THREAD_PER_CONNECTION | MHD_USE_INTERNAL_POLLING_THREAD,
42 PORT, 42 PORT,
43 NULL, NULL, 43 NULL, NULL,
44 &answer_to_connection, NULL, 44 &answer_to_connection, NULL,