Home | History | Annotate | Download | only in testcurl

Lines Matching refs:port

163 do_gets (int port)
173 sprintf(url, "http://127.0.0.1:%d/hello_world", port);
233 testInternalGet (int port, int poll_flag)
238 port, NULL, NULL, &ahc_echo, "GET", MHD_OPTION_END);
242 join_gets (do_gets (port));
250 testMultithreadedGet (int port, int poll_flag)
255 port, NULL, NULL, &ahc_echo, "GET", MHD_OPTION_END);
259 join_gets (do_gets (port));
266 testMultithreadedPoolGet (int port, int poll_flag)
271 port, NULL, NULL, &ahc_echo, "GET",
276 join_gets (do_gets (port));
283 testExternalGet (int port)
296 port, NULL, NULL, &ahc_echo, "GET", MHD_OPTION_END);
300 pid = do_gets (port);
337 int port = 1081;
346 errorCount += testInternalGet (port++, 0);
347 errorCount += testMultithreadedGet (port++, 0);
348 errorCount += testMultithreadedPoolGet (port++, 0);
349 errorCount += testExternalGet (port++);
351 errorCount += testInternalGet (port++, MHD_USE_POLL);
352 errorCount += testMultithreadedGet (port++, MHD_USE_POLL);
353 errorCount += testMultithreadedPoolGet (port++, MHD_USE_POLL);
356 errorCount += testInternalGet (port++, MHD_USE_EPOLL_LINUX_ONLY);
357 errorCount += testMultithreadedPoolGet (port++, MHD_USE_EPOLL_LINUX_ONLY);