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