aboutsummaryrefslogtreecommitdiff
path: root/src/examples
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-10 17:39:56 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-10 17:42:28 +0300
commite067df9397516bd671dcfd079ec561371399468d (patch)
tree3000d6c66af500cc375eb832e0f2fe4b6fa4930a /src/examples
parent51c1f5e65bff0eee79d87874ee5b8f1514c38032 (diff)
downloadlibmicrohttpd-e067df9397516bd671dcfd079ec561371399468d.tar.gz
libmicrohttpd-e067df9397516bd671dcfd079ec561371399468d.zip
One more flag renamed: MHD_USE_EPOLL_TURBO -> MHD_USE_TURBO.
Hopefully last one for now.
Diffstat (limited to 'src/examples')
-rw-r--r--src/examples/benchmark.c2
-rw-r--r--src/examples/benchmark_https.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/examples/benchmark.c b/src/examples/benchmark.c
index bd17b371..f9b8b5fd 100644
--- a/src/examples/benchmark.c
+++ b/src/examples/benchmark.c
@@ -136,7 +136,7 @@ main (int argc, char *const *argv)
136#endif 136#endif
137 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_SUPPRESS_DATE_NO_CLOCK 137 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_SUPPRESS_DATE_NO_CLOCK
138#ifdef EPOLL_SUPPORT 138#ifdef EPOLL_SUPPORT
139 | MHD_USE_EPOLL | MHD_USE_EPOLL_TURBO 139 | MHD_USE_EPOLL | MHD_USE_TURBO
140#endif 140#endif
141 , 141 ,
142 atoi (argv[1]), 142 atoi (argv[1]),
diff --git a/src/examples/benchmark_https.c b/src/examples/benchmark_https.c
index 009944db..b7327afc 100644
--- a/src/examples/benchmark_https.c
+++ b/src/examples/benchmark_https.c
@@ -182,7 +182,7 @@ main (int argc, char *const *argv)
182 MHD_RESPMEM_PERSISTENT); 182 MHD_RESPMEM_PERSISTENT);
183 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_TLS 183 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_TLS
184#ifdef EPOLL_SUPPORT 184#ifdef EPOLL_SUPPORT
185 | MHD_USE_EPOLL | MHD_USE_EPOLL_TURBO 185 | MHD_USE_EPOLL | MHD_USE_TURBO
186#endif 186#endif
187 , 187 ,
188 atoi (argv[1]), 188 atoi (argv[1]),