summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2023-04-26 14:24:31 +0200
committerDaniel Stenberg <daniel@haxx.se>2023-04-26 15:40:54 +0200
commit442355f8db45230493f21d6b615e93c7803ce89b (patch)
treedd68c5928e520bd8fdd7467ee54a9eca5447619d /docs
parent13718030ad4b3209a7583b4f27f683cd3a6fa5f2 (diff)
downloadcurl-442355f8db45230493f21d6b615e93c7803ce89b.tar.gz
KNOWN_BUGS: remove two not-bugs
- 11.7 signal-based resolver timeouts Not considered a bug anymore but just implementation details. People should avoid using timeouts with the synchronous name resolver. - 11.16 libcurl uses renames instead of locking for atomic operations Not a bug, just a description of how it works Closes #11032
Diffstat (limited to 'docs')
-rw-r--r--docs/KNOWN_BUGS23
1 files changed, 0 insertions, 23 deletions
diff --git a/docs/KNOWN_BUGS b/docs/KNOWN_BUGS
index c9e473a29..e23274380 100644
--- a/docs/KNOWN_BUGS
+++ b/docs/KNOWN_BUGS
@@ -75,8 +75,6 @@ problems may have been fixed or changed somewhat since this was written.
11.2 error buffer not set if connection to multiple addresses fails
11.4 HTTP test server 'connection-monitor' problems
11.5 Connection information when using TCP Fast Open
- 11.7 signal-based resolver timeouts
- 11.16 libcurl uses renames instead of locking for atomic operations
12. LDAP
12.1 OpenLDAP hangs after returning results
@@ -453,27 +451,6 @@ problems may have been fixed or changed somewhat since this was written.
See https://github.com/curl/curl/issues/1332 and
https://github.com/curl/curl/issues/4296
-11.7 signal-based resolver timeouts
-
- libcurl built without an asynchronous resolver library uses alarm() to time
- out DNS lookups. When a timeout occurs, this causes libcurl to jump from the
- signal handler back into the library with a sigsetjmp, which effectively
- causes libcurl to continue running within the signal handler. This is
- non-portable and could cause problems on some platforms. A discussion on the
- problem is available at https://curl.se/mail/lib-2008-09/0197.html
-
- Also, alarm() provides timeout resolution only to the nearest second. alarm
- ought to be replaced by setitimer on systems that support it.
-
-11.16 libcurl uses renames instead of locking for atomic operations
-
- For saving cookies, alt-svc and hsts files. This is bad when for example the
- file is stored in a directory where the application has no write permission
- but it has permission for the file.
-
- https://github.com/curl/curl/issues/6882
- https://github.com/curl/curl/pull/6884
-
12. LDAP
12.1 OpenLDAP hangs after returning results