diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-06-19 21:32:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-06-19 21:32:51 +0000 |
commit | d09b6ecaa5cd3e7639b4354d048459eaa6c4c2b3 (patch) | |
tree | 9a36b7d3bad113ef0a48027983ef66e540d74015 /lib | |
parent | fb2e71b9bd352bca7e3a5533c69bd236132a5d7a (diff) |
- Christopher Palow fixed a curl_multi_socket() issue which previous caused
libcurl to not tell the app properly when a socket was closed (when the name
resolve done by c-ares is done) and then immediately re-created and put to
use again (for the actual connection). Since the closure will make the
"watch status" get lost in several event-based systems libcurl will need to
tell the app about this close/re-create case.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/multi.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/multi.c b/lib/multi.c index 3b7831680..f0a7bfb31 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -965,6 +965,11 @@ static CURLMcode multi_runsingle(struct Curl_multi *multi, easy->result = Curl_is_resolved(easy->easy_conn, &dns); if(dns) { + /* Update sockets here. Mainly because the socket(s) may have been + closed and the application thus needs to be told, even if it is + likely that the same socket(s) will again be used further down. */ + singlesocket(multi, easy); + /* Perform the next step in the connection phase, and then move on to the WAITCONNECT state */ easy->result = Curl_async_resolved(easy->easy_conn, |