KNOWN_BUGS: three new bugs

These have lingered in the issue tracker for a long time without action.
We don't expect any fixes in the near term either. Move them to the
KNOWN_BUGS document.

Closes #12177
Closes #12171
Closes #13350

Closes #14042
This commit is contained in:
Daniel Stenberg 2024-06-27 16:37:25 +02:00
parent 1ccdad64ef
commit 282b9fe8ff
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -33,6 +33,8 @@ problems may have been fixed or changed somewhat since this was written.
3.6 POP3 issue when reading small chunks 3.6 POP3 issue when reading small chunks
4. Command line 4. Command line
4.1 -T /dev/stdin may upload with an incorrect content length
4.2 -T - always uploads chunked
5. Build and portability issues 5. Build and portability issues
5.1 OS400 port requires deprecated IBM library 5.1 OS400 port requires deprecated IBM library
@ -82,6 +84,7 @@ problems may have been fixed or changed somewhat since this was written.
11.3 TFTP tests fail on OpenBSD 11.3 TFTP tests fail on OpenBSD
11.4 HTTP test server 'connection-monitor' problems 11.4 HTTP test server 'connection-monitor' problems
11.5 Connection information when using TCP Fast Open 11.5 Connection information when using TCP Fast Open
11.6 test cases sometimes timeout
12. LDAP 12. LDAP
12.1 OpenLDAP hangs after returning results 12.1 OpenLDAP hangs after returning results
@ -216,6 +219,25 @@ problems may have been fixed or changed somewhat since this was written.
4. Command line 4. Command line
4.1 -T /dev/stdin may upload with an incorrect content length
-T stats the path to figure out its size in bytes to use it as Content-Length
if it is a regular file.
The problem with that is that, on BSDs and some other UNIXes (not Linux),
open(path) may not give you a file descriptor with a 0 offset from the start
of the file.
See https://github.com/curl/curl/issues/12177
4.2 -T - always uploads chunked
When the `<` shell operator is used. curl should realise that stdin is a
regular file in this case, and that it can do a non-chunked upload, like it
would do if you used -T file.
See https://github.com/curl/curl/issues/12171
5. Build and portability issues 5. Build and portability issues
5.1 OS400 port requires deprecated IBM library 5.1 OS400 port requires deprecated IBM library
@ -499,6 +521,12 @@ problems may have been fixed or changed somewhat since this was written.
See https://github.com/curl/curl/issues/1332 and See https://github.com/curl/curl/issues/1332 and
https://github.com/curl/curl/issues/4296 https://github.com/curl/curl/issues/4296
11.6 test cases sometimes timeout
Occasionally, one of the tests timeouts. Inexplicably.
See https://github.com/curl/curl/issues/13350
12. LDAP 12. LDAP
12.1 OpenLDAP hangs after returning results 12.1 OpenLDAP hangs after returning results