2
0

CURLOPT_CHUNK_END_FUNCTION.3 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 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.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. .TH CURLOPT_CHUNK_END_FUNCTION 3 "19 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_CHUNK_END_FUNCTION \- callback after a transfer with FTP wildcardmatch
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. long chunk_end_callback(void *ptr);
  30. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_CHUNK_END_FUNCTION,
  31. chunk_end_callback);
  32. .SH DESCRIPTION
  33. Pass a pointer to your callback function, which should match the prototype
  34. shown above.
  35. This function gets called by libcurl as soon as a part of the stream has been
  36. transferred (or skipped).
  37. Return \fICURL_CHUNK_END_FUNC_OK\fP if everything is fine or
  38. \fBCURL_CHUNK_END_FUNC_FAIL\fP to tell the lib to stop if some error occurred.
  39. .SH DEFAULT
  40. NULL
  41. .SH PROTOCOLS
  42. FTP
  43. .SH EXAMPLE
  44. .nf
  45. static long file_is_downloaded(struct callback_data *data)
  46. {
  47. if(data->output) {
  48. fclose(data->output);
  49. data->output = 0x0;
  50. }
  51. return CURL_CHUNK_END_FUNC_OK;
  52. }
  53. int main()
  54. {
  55. /* data for callback */
  56. struct callback_data callback_info;
  57. curl_easy_setopt(curl, CURLOPT_CHUNK_END_FUNCTION, file_is_downloaded);
  58. curl_easy_setopt(curl, CURLOPT_CHUNK_DATA, &callback_info);
  59. }
  60. .fi
  61. .SH AVAILABILITY
  62. Added in 7.21.0
  63. .SH RETURN VALUE
  64. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  65. .SH "SEE ALSO"
  66. .BR CURLOPT_WILDCARDMATCH "(3), " CURLOPT_CHUNK_BGN_FUNCTION "(3), "