curl_easy_recv.3 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 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. .\" * SPDX-License-Identifier: curl
  22. .\" *
  23. .\" **************************************************************************
  24. .\"
  25. .TH curl_easy_recv 3 "29 April 2008" "libcurl" "libcurl"
  26. .SH NAME
  27. curl_easy_recv - receives raw data on an "easy" connection
  28. .SH SYNOPSIS
  29. .nf
  30. #include <curl/easy.h>
  31. CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen, size_t *n);
  32. .fi
  33. .SH DESCRIPTION
  34. This function receives raw data from the established connection. You may use
  35. it together with \fIcurl_easy_send(3)\fP to implement custom protocols using
  36. libcurl. This functionality can be particularly useful if you use proxies
  37. and/or SSL encryption: libcurl takes care of proxy negotiation and connection
  38. setup.
  39. \fBbuffer\fP is a pointer to your buffer memory that gets populated by the
  40. received data. \fBbuflen\fP is the maximum amount of data you can get in that
  41. buffer. The variable \fBn\fP points to receives the number of received bytes.
  42. To establish the connection, set \fICURLOPT_CONNECT_ONLY(3)\fP option before
  43. calling \fIcurl_easy_perform(3)\fP or \fIcurl_multi_perform(3)\fP. Note that
  44. \fIcurl_easy_recv(3)\fP does not work on connections that were created without
  45. this option.
  46. The call returns \fBCURLE_AGAIN\fP if there is no data to read - the socket is
  47. used in non-blocking mode internally. When \fBCURLE_AGAIN\fP is returned, use
  48. your operating system facilities like \fIselect(2)\fP to wait for data. The
  49. socket may be obtained using \fIcurl_easy_getinfo(3)\fP with
  50. \fICURLINFO_ACTIVESOCKET(3)\fP.
  51. Wait on the socket only if \fIcurl_easy_recv(3)\fP returns \fBCURLE_AGAIN\fP.
  52. The reason for this is libcurl or the SSL library may internally cache some
  53. data, therefore you should call \fIcurl_easy_recv(3)\fP until all data is
  54. read which would include any cached data.
  55. Furthermore if you wait on the socket and it tells you there is data to read,
  56. \fIcurl_easy_recv(3)\fP may return \fBCURLE_AGAIN\fP if the only data that was
  57. read was for internal SSL processing, and no other data is available.
  58. .SH EXAMPLE
  59. .nf
  60. curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
  61. /* Do not do the transfer - only connect to host */
  62. curl_easy_setopt(curl, CURLOPT_CONNECT_ONLY, 1L);
  63. res = curl_easy_perform(curl);
  64. if(res == CURLE_OK) {
  65. /* Extract the socket from the curl handle - we need it for waiting. */
  66. res = curl_easy_getinfo(curl, CURLINFO_ACTIVESOCKET, &sockfd);
  67. /* read data */
  68. res = curl_easy_recv(curl, buf, sizeof(buf), &nread);
  69. }
  70. .fi
  71. .SH AVAILABILITY
  72. Added in 7.18.2.
  73. .SH RETURN VALUE
  74. On success, returns \fBCURLE_OK\fP, stores the received data into
  75. \fBbuffer\fP, and the number of bytes it actually read into \fB*n\fP.
  76. On failure, returns the appropriate error code.
  77. The function may return \fBCURLE_AGAIN\fP. In this case, use your operating
  78. system facilities to wait until data can be read, and retry.
  79. Reading exactly 0 bytes indicates a closed connection.
  80. If there is no socket available to use from the previous transfer, this function
  81. returns \fBCURLE_UNSUPPORTED_PROTOCOL\fP.
  82. .SH "SEE ALSO"
  83. .BR curl_easy_setopt "(3), " curl_easy_perform "(3), "
  84. .BR curl_easy_getinfo "(3), "
  85. .BR curl_easy_send "(3) "