curl_multi_remove_handle.3 881 B

123456789101112131415161718192021222324
  1. .\" $Id: curl_multi_remove_handle.3,v 1.4 2003/03/10 20:43:59 bagder Exp $
  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 a handle while being used, will effectively halt all transfers in
  16. progress.
  17. .SH RETURN VALUE
  18. CURLMcode type, general libcurl multi interface error code.
  19. .SH "SEE ALSO"
  20. .BR curl_multi_cleanup "(3)," curl_multi_init "(3)"