CURLOPT_CLOSESOCKETFUNCTION.3 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2020, 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_CLOSESOCKETFUNCTION 3 "16 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_CLOSESOCKETFUNCTION \- callback to socket close replacement function
  26. .SH SYNOPSIS
  27. #include <curl/curl.h>
  28. int closesocket_callback(void *clientp, curl_socket_t item);
  29. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_CLOSESOCKETFUNCTION, closesocket_callback);
  30. .SH DESCRIPTION
  31. Pass a pointer to your callback function, which should match the prototype
  32. shown above.
  33. This callback function gets called by libcurl instead of the \fIclose(3)\fP or
  34. \fIclosesocket(3)\fP call when sockets are closed (not for any other file
  35. descriptors). This is pretty much the reverse to the
  36. \fICURLOPT_OPENSOCKETFUNCTION(3)\fP option. Return 0 to signal success and 1
  37. if there was an error.
  38. The \fIclientp\fP pointer is set with
  39. \fICURLOPT_CLOSESOCKETDATA(3)\fP. \fIitem\fP is the socket libcurl wants to be
  40. closed.
  41. .SH DEFAULT
  42. By default libcurl uses the standard socket close function.
  43. .SH PROTOCOLS
  44. All
  45. .SH EXAMPLE
  46. .nf
  47. static int closesocket(void *clientp, curl_socket_t item)
  48. {
  49. printf("libcurl wants to close %d now\\n", (int)item);
  50. return 0;
  51. }
  52. /* call this function to close sockets */
  53. curl_easy_setopt(curl, CURLOPT_CLOSESOCKETFUNCTION, closesocket);
  54. curl_easy_setopt(curl, CURLOPT_CLOSESOCKETDATA, &sockfd);
  55. .fi
  56. .SH AVAILABILITY
  57. Added in 7.21.7
  58. .SH RETURN VALUE
  59. Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
  60. .SH "SEE ALSO"
  61. .BR CURLOPT_CLOSESOCKETDATA "(3), " CURLOPT_OPENSOCKETFUNCTION "(3), "