CURLOPT_WRITEFUNCTION.3 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2021, 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_WRITEFUNCTION 3 "16 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_WRITEFUNCTION \- callback for writing received data
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. size_t write_callback(char *ptr, size_t size, size_t nmemb, void *userdata);
  30. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_WRITEFUNCTION, write_callback);
  31. .SH DESCRIPTION
  32. Pass a pointer to your callback function, which should match the prototype
  33. shown above.
  34. This callback function gets called by libcurl as soon as there is data
  35. received that needs to be saved. For most transfers, this callback gets called
  36. many times and each invoke delivers another chunk of data. \fIptr\fP points to
  37. the delivered data, and the size of that data is \fInmemb\fP; \fIsize\fP is
  38. always 1.
  39. The callback function will be passed as much data as possible in all invokes,
  40. but you must not make any assumptions. It may be one byte, it may be
  41. thousands. The maximum amount of body data that will be passed to the write
  42. callback is defined in the curl.h header file: \fICURL_MAX_WRITE_SIZE\fP (the
  43. usual default is 16K). If \fICURLOPT_HEADER(3)\fP is enabled, which makes
  44. header data get passed to the write callback, you can get up to
  45. \fICURL_MAX_HTTP_HEADER\fP bytes of header data passed into it. This usually
  46. means 100K.
  47. This function may be called with zero bytes data if the transferred file is
  48. empty.
  49. The data passed to this function will not be null-terminated!
  50. Set the \fIuserdata\fP argument with the \fICURLOPT_WRITEDATA(3)\fP option.
  51. Your callback should return the number of bytes actually taken care of. If
  52. that amount differs from the amount passed to your callback function, it will
  53. signal an error condition to the library. This will cause the transfer to get
  54. aborted and the libcurl function used will return \fICURLE_WRITE_ERROR\fP.
  55. If your callback function returns CURL_WRITEFUNC_PAUSE it will cause this
  56. transfer to become paused. See \fIcurl_easy_pause(3)\fP for further details.
  57. Set this option to NULL to get the internal default function used instead of
  58. your callback. The internal default function will write the data to the FILE *
  59. given with \fICURLOPT_WRITEDATA(3)\fP.
  60. This option does not enable HSTS, you need to use \fICURLOPT_HSTS_CTRL(3)\fP to
  61. do that.
  62. .SH DEFAULT
  63. libcurl will use 'fwrite' as a callback by default.
  64. .SH PROTOCOLS
  65. For all protocols
  66. .SH EXAMPLE
  67. .nf
  68. struct memory {
  69. char *response;
  70. size_t size;
  71. };
  72. static size_t cb(void *data, size_t size, size_t nmemb, void *userp)
  73. {
  74. size_t realsize = size * nmemb;
  75. struct memory *mem = (struct memory *)userp;
  76. char *ptr = realloc(mem->response, mem->size + realsize + 1);
  77. if(ptr == NULL)
  78. return 0; /* out of memory! */
  79. mem->response = ptr;
  80. memcpy(&(mem->response[mem->size]), data, realsize);
  81. mem->size += realsize;
  82. mem->response[mem->size] = 0;
  83. return realsize;
  84. }
  85. struct memory chunk = {0};
  86. /* send all data to this function */
  87. curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, cb);
  88. /* we pass our 'chunk' struct to the callback function */
  89. curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, (void *)&chunk);
  90. .fi
  91. .SH AVAILABILITY
  92. Support for the CURL_WRITEFUNC_PAUSE return code was added in version 7.18.0.
  93. .SH RETURN VALUE
  94. This will return CURLE_OK.
  95. .SH "SEE ALSO"
  96. .BR CURLOPT_WRITEDATA "(3), " CURLOPT_READFUNCTION "(3), "
  97. .BR CURLOPT_HEADERFUNCTION "(3), "