lib1510.c 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 2013, Linus Nielsen Feltzing <linus@haxx.se>
  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 http://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 "testutil.h"
  24. #include "warnless.h"
  25. #include "memdebug.h"
  26. #define TEST_HANG_TIMEOUT 60 * 1000
  27. #define NUM_URLS 4
  28. int test(char *URL)
  29. {
  30. int res = 0;
  31. CURL *curl = NULL;
  32. int i;
  33. char target_url[256];
  34. char dnsentry[256];
  35. struct curl_slist *slist = NULL, *slist2;
  36. char *port = libtest_arg3;
  37. char *address = libtest_arg2;
  38. (void)URL;
  39. /* Create fake DNS entries for serverX.example.com for all handles */
  40. for(i=0; i < NUM_URLS; i++) {
  41. sprintf(dnsentry, "server%d.example.com:%s:%s", i + 1, port, address);
  42. printf("%s\n", dnsentry);
  43. slist2 = curl_slist_append(slist, dnsentry);
  44. if(!slist2) {
  45. fprintf(stderr, "curl_slist_append() failed\n");
  46. goto test_cleanup;
  47. }
  48. slist = slist2;
  49. }
  50. start_test_timing();
  51. global_init(CURL_GLOBAL_ALL);
  52. /* get an easy handle */
  53. easy_init(curl);
  54. /* go verbose */
  55. easy_setopt(curl, CURLOPT_VERBOSE, 1L);
  56. /* include headers */
  57. easy_setopt(curl, CURLOPT_HEADER, 1L);
  58. easy_setopt(curl, CURLOPT_RESOLVE, slist);
  59. easy_setopt(curl, CURLOPT_MAXCONNECTS, 3L);
  60. /* get NUM_HANDLES easy handles */
  61. for(i=0; i < NUM_URLS; i++) {
  62. /* specify target */
  63. sprintf(target_url, "http://server%d.example.com:%s/path/1510%04i",
  64. i + 1, port, i + 1);
  65. target_url[sizeof(target_url) - 1] = '\0';
  66. easy_setopt(curl, CURLOPT_URL, target_url);
  67. res = curl_easy_perform(curl);
  68. abort_on_test_timeout();
  69. }
  70. test_cleanup:
  71. /* proper cleanup sequence - type PB */
  72. curl_easy_cleanup(curl);
  73. curl_slist_free_all(slist);
  74. curl_global_cleanup();
  75. return res;
  76. }