curl_multi_remove_handle.3 908 B

123456789101112131415161718192021222324
  1. .\" $Id$
  2. .\"
  3. .TH curl_multi_remove_handle 3 "6 March 2002" "libcurl 7.9.5" "libcurl Manual"
  4. .SH NAME
  5. curl_multi_remove_handle - remove an easy handle from a multi session
  6. .SH SYNOPSIS
  7. #include <curl/curl.h>
  8. CURLMcode curl_multi_remove_handle(CURLM *multi_handle, CURL *easy_handle);
  9. .ad
  10. .SH DESCRIPTION
  11. Removes a given easy_handle from the multi_handle. This will make the
  12. specified easy handle be removed from this multi handle's control.
  13. When the easy handle has been removed from a multi stack, it is again
  14. perfectly legal to invoke \fIcurl_easy_perform()\fP on this easy handle.
  15. Removing an easy handle while being used, will effectively halt the transfer
  16. in progress involving that easy handle. All other easy handles and transfers
  17. will remain unaffected.
  18. .SH RETURN VALUE
  19. CURLMcode type, general libcurl multi interface error code.
  20. .SH "SEE ALSO"
  21. .BR curl_multi_cleanup "(3)," curl_multi_init "(3)"