lib1555.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /***************************************************************************
  2. * _ _ ____ _
  3. * Project ___| | | | _ \| |
  4. * / __| | | | |_) | |
  5. * | (__| |_| | _ <| |___
  6. * \___|\___/|_| \_\_____|
  7. *
  8. * Copyright (C) 1998 - 2015, 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. /*
  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. (void)arg;
  36. (void)dltotal;
  37. (void)dlnow;
  38. (void)ultotal;
  39. (void)ulnow;
  40. res = curl_easy_recv(curl, NULL, 0, NULL);
  41. printf("curl_easy_recv returned %d\n", res);
  42. res = curl_easy_send(curl, NULL, 0, NULL);
  43. printf("curl_easy_send returned %d\n", res);
  44. return 1;
  45. }
  46. int test(char *URL)
  47. {
  48. int res = 0;
  49. global_init(CURL_GLOBAL_ALL);
  50. easy_init(curl);
  51. easy_setopt(curl, CURLOPT_URL, URL);
  52. easy_setopt(curl, CURLOPT_TIMEOUT, (long)7);
  53. easy_setopt(curl, CURLOPT_NOSIGNAL, (long)1);
  54. easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, progressCallback);
  55. easy_setopt(curl, CURLOPT_PROGRESSDATA, NULL);
  56. easy_setopt(curl, CURLOPT_NOPROGRESS, (long)0);
  57. res = curl_easy_perform(curl);
  58. test_cleanup:
  59. /* undocumented cleanup sequence - type UA */
  60. curl_easy_cleanup(curl);
  61. curl_global_cleanup();
  62. return res;
  63. }