lib1555.c 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2019, 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. /*
  23. * Verify that some API functions are locked from being called inside callback
  24. */
  25. #include "test.h"
  26. #include "memdebug.h"
  27. static CURL *curl;
  28. static int progressCallback(void *arg,
  29. double dltotal,
  30. double dlnow,
  31. double ultotal,
  32. double ulnow)
  33. {
  34. CURLcode res = 0;
  35. char buffer[256];
  36. size_t n = 0;
  37. (void)arg;
  38. (void)dltotal;
  39. (void)dlnow;
  40. (void)ultotal;
  41. (void)ulnow;
  42. res = curl_easy_recv(curl, buffer, 256, &n);
  43. printf("curl_easy_recv returned %d\n", res);
  44. res = curl_easy_send(curl, buffer, n, &n);
  45. printf("curl_easy_send returned %d\n", res);
  46. return 1;
  47. }
  48. int test(char *URL)
  49. {
  50. int res = 0;
  51. global_init(CURL_GLOBAL_ALL);
  52. easy_init(curl);
  53. easy_setopt(curl, CURLOPT_URL, URL);
  54. easy_setopt(curl, CURLOPT_TIMEOUT, (long)7);
  55. easy_setopt(curl, CURLOPT_NOSIGNAL, (long)1);
  56. easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progressCallback);
  57. easy_setopt(curl, CURLOPT_PROGRESSDATA, NULL);
  58. easy_setopt(curl, CURLOPT_NOPROGRESS, (long)0);
  59. res = curl_easy_perform(curl);
  60. test_cleanup:
  61. /* undocumented cleanup sequence - type UA */
  62. curl_easy_cleanup(curl);
  63. curl_global_cleanup();
  64. return res;
  65. }