curl_share_cleanup.3 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2022, 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. .TH curl_share_cleanup 3 "8 Aug 2003" "libcurl 7.10.7" "libcurl Manual"
  25. .SH NAME
  26. curl_share_cleanup - Clean up a shared object
  27. .SH SYNOPSIS
  28. .nf
  29. #include <curl/curl.h>
  30. CURLSHcode curl_share_cleanup(CURLSH *share_handle);
  31. .fi
  32. .SH DESCRIPTION
  33. This function deletes a shared object. The share handle cannot be used anymore
  34. when this function has been called.
  35. Passing in a NULL pointer in \fIshare_handle\fP will make this function return
  36. immediately with no action.
  37. .SH EXAMPLE
  38. .nf
  39. CURLSHcode sh;
  40. share = curl_share_init();
  41. sh = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_CONNECT);
  42. /* use the share, then ... */
  43. curl_share_cleanup(share);
  44. .fi
  45. .SH AVAILABILITY
  46. Added in 7.10
  47. .SH RETURN VALUE
  48. CURLSHE_OK (zero) means that the option was set properly, non-zero means an
  49. error occurred as \fI<curl/curl.h>\fP defines. See the \fIlibcurl-errors.3\fP
  50. man page for the full list with descriptions. If an error occurs, then the
  51. share object will not be deleted.
  52. .SH "SEE ALSO"
  53. .BR curl_share_init "(3), " curl_share_setopt "(3)"