curl_share_init.3
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:1k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. ." $Id: curl_share_init.3,v 1.5 2008-12-28 21:56:56 bagder Exp $
  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_cleanupfP when all operations using the share are complete.
  16. This fIshare handlefP is what you pass to curl using the fICURLOPT_SHAREfP
  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)"