diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-01-11 20:22:44 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-01-11 20:22:44 +0000 |
commit | c5b2e85b473f09ad25b1b3df78e50da1532a9ef8 (patch) | |
tree | 0637f8f7a381851d0e60aa34f27a113aee6476d9 /docs/libcurl/curl_multi_fdset.3 | |
parent | 38f8087281471abb4235365b4f9ef30c8949ffdc (diff) | |
download | curl-c5b2e85b473f09ad25b1b3df78e50da1532a9ef8.tar.gz |
Dan Torop cleaned up a few no longer used variables from David Phillips'
select() overhaul fix.
Diffstat (limited to 'docs/libcurl/curl_multi_fdset.3')
-rw-r--r-- | docs/libcurl/curl_multi_fdset.3 | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/docs/libcurl/curl_multi_fdset.3 b/docs/libcurl/curl_multi_fdset.3 index 2faaad298..e7e84fc3c 100644 --- a/docs/libcurl/curl_multi_fdset.3 +++ b/docs/libcurl/curl_multi_fdset.3 @@ -16,13 +16,9 @@ CURLMcode curl_multi_fdset(CURLM *multi_handle, .SH DESCRIPTION This function extracts file descriptor information from a given multi_handle. libcurl returns its fd_set sets. The application can use these to select() -on. The \fIcurl_multi_perform(3)\fI function should be called as soon as one +on. The \fIcurl_multi_perform(3)\fP function should be called as soon as one of them are ready to be read from or written to. -NOTE that once this call is made, you must not remove the sets you point to, -as libcurl will need to be able to read them. It needs them after select() -calls, to know if certain sockets are readable or writable. - You should also be aware that when doing select(), you should consider using a rather small (single-digit number of seconds) timeout and call \fIcurl_multi_perform\fP regularly - even if no activity has been seen on the |