]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
KNOWN_BUGS: Add entry 'Blocking socket operations'
authorJay Satiro <raysatiro@yahoo.com>
Sat, 11 Apr 2020 20:05:18 +0000 (16:05 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Tue, 14 Apr 2020 18:46:13 +0000 (14:46 -0400)
- Add threaded resolver cleanup and GSSAPI for FTP to the TODO list of
  known blocking operations.

- New known bugs entry 'Blocking socket operations in non-blocking API'
  that directs to the TODO's list of known blocking operations.

Ref: https://github.com/curl/curl/pull/5214#issuecomment-612488021

Reported-by: Marc Hoersken
Closes https://github.com/curl/curl/pull/5216

docs/KNOWN_BUGS
docs/TODO

index cd4990c4fb95fc8e6a26d0c451e3312435d34760..1cbc76514c0c281bfb43dc0724aa9b73128c28ca 100644 (file)
@@ -101,6 +101,7 @@ problems may have been fixed or changed somewhat since this was written!
  11.7 signal-based resolver timeouts
  11.8 DoH leaks memory after followlocation
  11.9 DoH doesn't inherit all transfer options
+ 11.10 Blocking socket operations in non-blocking API
 
  12. LDAP and OpenLDAP
  12.1 OpenLDAP hangs after returning results
@@ -716,6 +717,10 @@ problems may have been fixed or changed somewhat since this was written!
 
  https://github.com/curl/curl/issues/4578
 
+11.10 Blocking socket operations in non-blocking API
+
+ The list of blocking socket operations is in TODO section "More non-blocking".
+
 12. LDAP and OpenLDAP
 
 12.1 OpenLDAP hangs after returning results
index 3a9a6168eaf791175f879fc9903115d248245483..dfc36b8cf07eba52b62426f8b4872691e2bc158f 100644 (file)
--- a/docs/TODO
+++ b/docs/TODO
  Make sure we don't ever loop because of non-blocking sockets returning
  EWOULDBLOCK or similar. Blocking cases include:
 
- - Name resolves on non-windows unless c-ares or the threaded resolver is used
+ - Name resolves on non-windows unless c-ares or the threaded resolver is used.
+
+ - The threaded resolver may block on cleanup:
+ https://github.com/curl/curl/issues/4852
+
  - file:// transfers
+
  - TELNET transfers
+
+ - 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 Curl_done() for this is a worthy task.
+
+ - curl_multi_remove_handle for any of the above. See section 2.3.
 
 2.2 Better support for same name resolves