aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/test_get_sendfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/test_get_sendfile.c')
-rw-r--r--src/testcurl/test_get_sendfile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testcurl/test_get_sendfile.c b/src/testcurl/test_get_sendfile.c
index ed4d3466..2b135013 100644
--- a/src/testcurl/test_get_sendfile.c
+++ b/src/testcurl/test_get_sendfile.c
@@ -125,7 +125,7 @@ testInternalGet ()
125 cbc.buf = buf; 125 cbc.buf = buf;
126 cbc.size = 2048; 126 cbc.size = 2048;
127 cbc.pos = 0; 127 cbc.pos = 0;
128 d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG, 128 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_DEBUG,
129 11080, NULL, NULL, &ahc_echo, "GET", MHD_OPTION_END); 129 11080, NULL, NULL, &ahc_echo, "GET", MHD_OPTION_END);
130 if (d == NULL) 130 if (d == NULL)
131 return 1; 131 return 1;
@@ -225,7 +225,7 @@ testMultithreadedPoolGet ()
225 cbc.buf = buf; 225 cbc.buf = buf;
226 cbc.size = 2048; 226 cbc.size = 2048;
227 cbc.pos = 0; 227 cbc.pos = 0;
228 d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG, 228 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_DEBUG,
229 1081, NULL, NULL, &ahc_echo, "GET", 229 1081, NULL, NULL, &ahc_echo, "GET",
230 MHD_OPTION_THREAD_POOL_SIZE, CPU_COUNT, MHD_OPTION_END); 230 MHD_OPTION_THREAD_POOL_SIZE, CPU_COUNT, MHD_OPTION_END);
231 if (d == NULL) 231 if (d == NULL)
@@ -417,7 +417,7 @@ testUnknownPortGet ()
417 cbc.buf = buf; 417 cbc.buf = buf;
418 cbc.size = 2048; 418 cbc.size = 2048;
419 cbc.pos = 0; 419 cbc.pos = 0;
420 d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG, 420 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_DEBUG,
421 1, NULL, NULL, &ahc_echo, "GET", 421 1, NULL, NULL, &ahc_echo, "GET",
422 MHD_OPTION_SOCK_ADDR, &addr, 422 MHD_OPTION_SOCK_ADDR, &addr,
423 MHD_OPTION_END); 423 MHD_OPTION_END);