aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/test_get.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/testcurl/test_get.c')
-rw-r--r--src/testcurl/test_get.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/testcurl/test_get.c b/src/testcurl/test_get.c
index 95286023..b010aad7 100644
--- a/src/testcurl/test_get.c
+++ b/src/testcurl/test_get.c
@@ -120,7 +120,7 @@ testInternalGet (int poll_flag)
120 cbc.buf = buf; 120 cbc.buf = buf;
121 cbc.size = 2048; 121 cbc.size = 2048;
122 cbc.pos = 0; 122 cbc.pos = 0;
123 d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG | poll_flag, 123 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_DEBUG | poll_flag,
124 11080, NULL, NULL, &ahc_echo, "GET", MHD_OPTION_END); 124 11080, NULL, NULL, &ahc_echo, "GET", MHD_OPTION_END);
125 if (d == NULL) 125 if (d == NULL)
126 return 1; 126 return 1;
@@ -220,7 +220,7 @@ testMultithreadedPoolGet (int poll_flag)
220 cbc.buf = buf; 220 cbc.buf = buf;
221 cbc.size = 2048; 221 cbc.size = 2048;
222 cbc.pos = 0; 222 cbc.pos = 0;
223 d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG | poll_flag, 223 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_DEBUG | poll_flag,
224 1081, NULL, NULL, &ahc_echo, "GET", 224 1081, NULL, NULL, &ahc_echo, "GET",
225 MHD_OPTION_THREAD_POOL_SIZE, CPU_COUNT, MHD_OPTION_END); 225 MHD_OPTION_THREAD_POOL_SIZE, CPU_COUNT, MHD_OPTION_END);
226 if (d == NULL) 226 if (d == NULL)
@@ -412,7 +412,7 @@ testUnknownPortGet (int poll_flag)
412 cbc.buf = buf; 412 cbc.buf = buf;
413 cbc.size = 2048; 413 cbc.size = 2048;
414 cbc.pos = 0; 414 cbc.pos = 0;
415 d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG | poll_flag, 415 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_DEBUG | poll_flag,
416 1, NULL, NULL, &ahc_echo, "GET", 416 1, NULL, NULL, &ahc_echo, "GET",
417 MHD_OPTION_SOCK_ADDR, &addr, 417 MHD_OPTION_SOCK_ADDR, &addr,
418 MHD_OPTION_END); 418 MHD_OPTION_END);
@@ -571,7 +571,7 @@ testEmptyGet (int poll_flag)
571 cbc.buf = buf; 571 cbc.buf = buf;
572 cbc.size = 2048; 572 cbc.size = 2048;
573 cbc.pos = 0; 573 cbc.pos = 0;
574 d = MHD_start_daemon (MHD_USE_SELECT_INTERNALLY | MHD_USE_DEBUG | poll_flag, 574 d = MHD_start_daemon (MHD_USE_INTERNAL_POLLING_THREAD | MHD_USE_DEBUG | poll_flag,
575 11081, NULL, NULL, &ahc_empty, NULL, MHD_OPTION_END); 575 11081, NULL, NULL, &ahc_empty, NULL, MHD_OPTION_END);
576 if (d == NULL) 576 if (d == NULL)
577 return 4194304; 577 return 4194304;