curl_share_init.3 913 B

12345678910111213141516171819202122232425
  1. .\" $Id$
  2. .\"
  3. .TH curl_share_init 3 "8 Aug 2003" "libcurl 7.10.7" "libcurl Manual"
  4. .SH NAME
  5. curl_share_init - Create a shared object
  6. .SH SYNOPSIS
  7. .B #include <curl/curl.h>
  8. .sp
  9. .BI "CURLSH *curl_share_init( );"
  10. .ad
  11. .SH DESCRIPTION
  12. This function returns a CURLSH handle to be used as input to all the other
  13. share-functions, sometimes referred to as a share handle in some places in the
  14. documentation. This init call MUST have a corresponding call to
  15. \fIcurl_share_cleanup\fP when all operations using the share are complete.
  16. This \fIshare handle\fP is what you pass to curl using the \fICURLOPT_SHARE\fP
  17. option with \fIcurl_easy_setopt(3)\fP, to make that specific curl handle use
  18. the data in this share.
  19. .SH RETURN VALUE
  20. If this function returns NULL, something went wrong (out of memory, etc.)
  21. and therefore the share object was not created.
  22. .SH "SEE ALSO"
  23. .BR curl_share_cleanup "(3), " curl_share_setopt "(3)"