aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/test_put.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/test_put.c')
-rw-r--r--src/testcurl/test_put.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testcurl/test_put.c b/src/testcurl/test_put.c
index f6636f12..19fcd07e 100644
--- a/src/testcurl/test_put.c
+++ b/src/testcurl/test_put.c
@@ -131,7 +131,7 @@ testInternalPut ()
131 cbc.buf = buf; 131 cbc.buf = buf;
132 cbc.size = 2048; 132 cbc.size = 2048;
133 cbc.pos = 0; 133 cbc.pos = 0;
134 d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG, 134 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_DEBUG,
135 1080, 135 1080,
136 NULL, NULL, &ahc_echo, &done_flag, MHD_OPTION_END); 136 NULL, NULL, &ahc_echo, &done_flag, MHD_OPTION_END);
137 if (d == NULL) 137 if (d == NULL)
@@ -244,7 +244,7 @@ testMultithreadedPoolPut ()
244 cbc.buf = buf; 244 cbc.buf = buf;
245 cbc.size = 2048; 245 cbc.size = 2048;
246 cbc.pos = 0; 246 cbc.pos = 0;
247 d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG, 247 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_DEBUG,
248 1081, 248 1081,
249 NULL, NULL, &ahc_echo, &done_flag, 249 NULL, NULL, &ahc_echo, &done_flag,
250 MHD_OPTION_THREAD_POOL_SIZE, CPU_COUNT, MHD_OPTION_END); 250 MHD_OPTION_THREAD_POOL_SIZE, CPU_COUNT, MHD_OPTION_END);