lib564.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2013, 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. *
  10. * This software is licensed as described in the file COPYING, which
  11. * you should have received as part of this distribution. The terms
  12. * are also available at https://curl.haxx.se/docs/copyright.html.
  13. *
  14. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. * copies of the Software, and permit persons to whom the Software is
  16. * furnished to do so, under the terms of the COPYING file.
  17. *
  18. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. * KIND, either express or implied.
  20. *
  21. ***************************************************************************/
  22. #include "test.h"
  23. #include <fcntl.h>
  24. #include "testutil.h"
  25. #include "warnless.h"
  26. #include "memdebug.h"
  27. #define TEST_HANG_TIMEOUT 60 * 1000
  28. int test(char *URL)
  29. {
  30. int res = 0;
  31. CURL *curl = NULL;
  32. int running;
  33. CURLM *m = NULL;
  34. start_test_timing();
  35. global_init(CURL_GLOBAL_ALL);
  36. easy_init(curl);
  37. easy_setopt(curl, CURLOPT_URL, URL);
  38. easy_setopt(curl, CURLOPT_VERBOSE, 1L);
  39. easy_setopt(curl, CURLOPT_PROXY, libtest_arg2);
  40. easy_setopt(curl, CURLOPT_PROXYTYPE, (long)CURLPROXY_SOCKS4);
  41. multi_init(m);
  42. multi_add_handle(m, curl);
  43. fprintf(stderr, "Start at URL 0\n");
  44. for(;;) {
  45. struct timeval interval;
  46. fd_set rd, wr, exc;
  47. int maxfd = -99;
  48. interval.tv_sec = 1;
  49. interval.tv_usec = 0;
  50. multi_perform(m, &running);
  51. abort_on_test_timeout();
  52. if(!running)
  53. break; /* done */
  54. FD_ZERO(&rd);
  55. FD_ZERO(&wr);
  56. FD_ZERO(&exc);
  57. multi_fdset(m, &rd, &wr, &exc, &maxfd);
  58. /* At this point, maxfd is guaranteed to be greater or equal than -1. */
  59. select_test(maxfd + 1, &rd, &wr, &exc, &interval);
  60. abort_on_test_timeout();
  61. }
  62. test_cleanup:
  63. /* undocumented cleanup sequence - type UB */
  64. curl_easy_cleanup(curl);
  65. curl_multi_cleanup(m);
  66. curl_global_cleanup();
  67. return res;
  68. }