lib1513.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2020, 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.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. /*
  23. * Test case converted from bug report #1318 by Petr Novak.
  24. *
  25. * Before the fix, this test program returned 52 (CURLE_GOT_NOTHING) instead
  26. * of 42 (CURLE_ABORTED_BY_CALLBACK).
  27. */
  28. #include "test.h"
  29. #include "memdebug.h"
  30. static int progressKiller(void *arg,
  31. double dltotal,
  32. double dlnow,
  33. double ultotal,
  34. double ulnow)
  35. {
  36. (void)arg;
  37. (void)dltotal;
  38. (void)dlnow;
  39. (void)ultotal;
  40. (void)ulnow;
  41. printf("PROGRESSFUNCTION called\n");
  42. return 1;
  43. }
  44. int test(char *URL)
  45. {
  46. CURL *curl;
  47. int res = 0;
  48. global_init(CURL_GLOBAL_ALL);
  49. easy_init(curl);
  50. easy_setopt(curl, CURLOPT_URL, URL);
  51. easy_setopt(curl, CURLOPT_TIMEOUT, (long)7);
  52. easy_setopt(curl, CURLOPT_NOSIGNAL, (long)1);
  53. easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progressKiller);
  54. easy_setopt(curl, CURLOPT_PROGRESSDATA, NULL);
  55. easy_setopt(curl, CURLOPT_NOPROGRESS, (long)0);
  56. res = curl_easy_perform(curl);
  57. test_cleanup:
  58. /* undocumented cleanup sequence - type UA */
  59. curl_easy_cleanup(curl);
  60. curl_global_cleanup();
  61. return res;
  62. }