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

TAPI编程

开发平台:

Visual C++

  1. ." You can view this file with:
  2. ." nroff -man [file]
  3. ." $Id: curl_easy_perform.3,v 1.2 2004/02/27 15:34:06 bagder Exp $
  4. ."
  5. .TH curl_easy_perform 3 "5 Mar 2001" "libcurl 7.7" "libcurl Manual"
  6. .SH NAME
  7. curl_easy_perform - Perform a file transfer
  8. .SH SYNOPSIS
  9. .B #include <curl/curl.h>
  10. .sp
  11. .BI "CURLcode curl_easy_perform(CURL *" handle ");"
  12. .ad
  13. .SH DESCRIPTION
  14. This function is called after the init and all the fIcurl_easy_setopt(3)fP
  15. calls are made, and will perform the transfer as described in the options.  It
  16. must be called with the same
  17. .I handle
  18. as input as the curl_easy_init call returned.
  19. You can do any amount of calls to fIcurl_easy_perform(3)fP while using the
  20. same handle. If you intend to transfer more than one file, you are even
  21. encouraged to do so. libcurl will then attempt to re-use the same connection
  22. for the following transfers, thus making the operations faster, less CPU
  23. intense and using less network resources. Just note that you will have to use
  24. fIcurl_easy_setopt(3)fP between the invokes to set options for the following
  25. curl_easy_perform.
  26. You must never call this function simultaneously from two places using the
  27. same handle. Let the function return first before invoking it another time. If
  28. you want parallel transfers, you must use several curl handles.
  29. .SH RETURN VALUE
  30. 0 means everything was ok, non-zero means an error occurred as
  31. .I <curl/curl.h>
  32. defines. If the CURLOPT_ERRORBUFFER was set with
  33. .I curl_easy_setopt
  34. there will be a readable error message in the error buffer when non-zero is
  35. returned.
  36. .SH "SEE ALSO"
  37. .BR curl_easy_init "(3), " curl_easy_setopt "(3), "