]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
urldata: fix comments: Curl_done() is called multi_done() now
authorDaniel Stenberg <daniel@haxx.se>
Thu, 28 May 2020 08:12:05 +0000 (10:12 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 28 May 2020 08:13:39 +0000 (10:13 +0200)
... since 575e885db

docs/TODO
lib/urldata.h

index cdae462af3e04ab776d13c09058ccb603076b4dd..1cf2d7efa41b4210670d03040a9f099b4cee4423 100644 (file)
--- a/docs/TODO
+++ b/docs/TODO
  - GSSAPI authentication for FTP transfers
 
  - The "DONE" operation (post transfer protocol-specific actions) for the
- protocols SFTP, SMTP, FTP. Fixing Curl_done() for this is a worthy task.
+ protocols SFTP, SMTP, FTP. Fixing multi_done() for this is a worthy task.
 
  - curl_multi_remove_handle for any of the above. See section 2.3.
 
index 60323311e2949e5a35748da41b9ffb0bd82bb6dc..20ce5ed102595996446c3e64969017b1f910484a 100644 (file)
@@ -878,13 +878,13 @@ struct connectdata {
 
   /* 'dns_entry' is the particular host we use. This points to an entry in the
      DNS cache and it will not get pruned while locked. It gets unlocked in
-     Curl_done(). This entry will be NULL if the connection is re-used as then
+     multi_done(). This entry will be NULL if the connection is re-used as then
      there is no name resolve done. */
   struct Curl_dns_entry *dns_entry;
 
   /* 'ip_addr' is the particular IP we connected to. It points to a struct
      within the DNS cache, so this pointer is only valid as long as the DNS
-     cache entry remains locked. It gets unlocked in Curl_done() */
+     cache entry remains locked. It gets unlocked in multi_done() */
   struct Curl_addrinfo *ip_addr;
   struct Curl_addrinfo *tempaddr[2]; /* for happy eyeballs */