History log of /curl/docs/KNOWN_BUGS (Results 301 – 325 of 441)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: curl-7_26_0, curl-7_25_0, curl-7_24_0
# c41f304c 18-Jan-2012 Daniel Stenberg

KNOWN_BUGS: can't receive zero bytes file properly

http://curl.haxx.se/bug/view.cgi?id=3438362


# 3b06f1fb 04-Jan-2012 Daniel Stenberg

KNOWN_BUGS: #77 CURLOPT_FORBID_REUSE kills NTLM


Revision tags: curl-7_23_1, curl-7_23_0
# 1399c3da 20-Oct-2011 Daniel Stenberg

KNOWN_BUGS: #74 fixed

Multiple auths in the same WWW-Authenticate header

Fixed in commit 7d81e3f7193b8c


Revision tags: curl-7_22_0, curl-7_21_7, curl-7_21_6, curl-7_21_5, curl-7_21_4, curl-7_21_3, curl-7_21_2, curl-7_21_1
# 232ad654 10-Aug-2010 Daniel Stenberg

multi: support timeouts

Curl_expire() is now expanded to hold a list of timeouts for each easy
handle. Only the closest in time will be the one used as the primary
timeout for the ha

multi: support timeouts

Curl_expire() is now expanded to hold a list of timeouts for each easy
handle. Only the closest in time will be the one used as the primary
timeout for the handle and will be used for the splay tree (which sorts
and lists all handles within the multi handle).

When the main timeout has triggered/expired, the next timeout in time
that is kept in the list will be moved to the main timeout position and
used as the key to splay with. This way, all timeouts that are set with
Curl_expire() internally will end up as a proper timeout. Previously any
Curl_expire() that set a _later_ timeout than what was already set was
just silently ignored and thus missed.

Setting Curl_expire() with timeout 0 (zero) will cancel all previously
added timeouts.

Corrects known bug #62.

show more ...


# 17c1e3bc 11-Aug-2010 Dan Fandrich

KNOWN_BUG #59 is fixed. Clarify support of IPv6 zone IDs.


# 53e47ca9 30-Jul-2010 Daniel Stenberg

KNOWN_BUG: The SOCKET type in Win64 is 64 bits

The SOCKET type in Win64 is 64 bits large (and thus so is curl_socket_t
on that platform), and long is only 32 bits. It makes it impossible

KNOWN_BUG: The SOCKET type in Win64 is 64 bits

The SOCKET type in Win64 is 64 bits large (and thus so is curl_socket_t
on that platform), and long is only 32 bits. It makes it impossible for
curl_easy_getinfo() to return a socket properly with the
CURLINFO_LASTSOCKET option as for all other operating systems.

show more ...


Revision tags: curl-7_21_0, curl-7_20_1
# f1106049 14-Feb-2010 Daniel Stenberg

75. NTLM authentication involving unicode user name or password.
http://curl.haxx.se/mail/lib-2009-10/0024.html
http://curl.haxx.se/bug/view.cgi?id=2944325


# a07bc791 14-Feb-2010 Yang Tse

removed trailing whitespace


Revision tags: curl-7_20_0
# ccffed99 28-Jan-2010 Yang Tse

Known bug #64 fixed by Constantine Sapuntzakis and Joshua Kwan in 7.20.0


# 95362af4 04-Dec-2009 Daniel Stenberg

74. The HTTP spec allows headers to be merged and become comma-separated
instead of being repeated several times. This also include Authenticate: and
Proxy-Authenticate: headers and while

74. The HTTP spec allows headers to be merged and become comma-separated
instead of being repeated several times. This also include Authenticate: and
Proxy-Authenticate: headers and while this hardly every happens in real life
it will confuse libcurl which does not properly support it for all headers -
like those Authenticate headers.

show more ...


# bfae1bd9 29-Nov-2009 Daniel Stenberg

#71 "TFTP block size / better integration in transfer" is now expected to
have been fixed!


Revision tags: curl-7_19_7
# 55aee95f 21-Oct-2009 Daniel Stenberg

mention bug 2848436 in regard to the TFTP problems


# 2d0aca3b 31-Aug-2009 Daniel Stenberg

73. if a connection is made to a FTP server but the server then just never
sends the 220 response or otherwise is dead slow, libcurl will not
acknowledge the connection timeout during tha

73. if a connection is made to a FTP server but the server then just never
sends the 220 response or otherwise is dead slow, libcurl will not
acknowledge the connection timeout during that phase but only the "real"
timeout - which may surprise users as it is probably considered to be the
connect phase to most people. Brought up (and is being misunderstood) in:
http://curl.haxx.se/bug/view.cgi?id=2844077

show more ...


# 10480439 21-Aug-2009 Daniel Stenberg

- Lots of good work by Krister Johansen, mostly related to pipelining:

Fix SIGSEGV on free'd easy_conn when pipe unexpectedly breaks
Fix data corruption issue with re-connected trans

- Lots of good work by Krister Johansen, mostly related to pipelining:

Fix SIGSEGV on free'd easy_conn when pipe unexpectedly breaks
Fix data corruption issue with re-connected transfers
Fix use after free if we're completed but easy_conn not NULL

show more ...


Revision tags: curl-7_19_6
# 13afff57 12-Aug-2009 Daniel Stenberg

pasted here (and renumbered) from the TODO-RELEASE since they are in fact
bugs we know about that will appear in the next release (too)


# bf5f9124 31-Jul-2009 Daniel Stenberg

67. When creating multipart formposts. The file name part can be encoded with
something beyond ascii but currently libcurl will only pass in the verbatim
string the app provides. There ar

67. When creating multipart formposts. The file name part can be encoded with
something beyond ascii but currently libcurl will only pass in the verbatim
string the app provides. There are several browsers that already do this
encoding. The key seems to be the updated draft to RFC2231:
http://tools.ietf.org/html/draft-reschke-rfc2231-in-http-02

show more ...


# 650543a0 21-Jul-2009 Daniel Stenberg

66. When using telnet, the time limitation options don't work.
http://curl.haxx.se/bug/view.cgi?id=2818950


Revision tags: curl-7_19_5
# 63270b06 11-May-2009 Daniel Stenberg

Added KNOWN_BUGS #65, and marked it for TODO in the _next_ release as I'm
not in the mood enough to fight this now.

65. When doing FTP over a socks proxy or CONNECT through HTTP proxy an

Added KNOWN_BUGS #65, and marked it for TODO in the _next_ release as I'm
not in the mood enough to fight this now.

65. When doing FTP over a socks proxy or CONNECT through HTTP proxy and the
multi interface is used, libcurl will fail if the (passive) TCP connection
for the data transfer isn't more or less instant as the code does not
properly wait for the connect to be confirmed. See test case 564 for a first
shot at a test case.

show more ...


# 8119379d 03-May-2009 Dan Fandrich

Added and disabled test case 563 which shows KNOWN_BUGS #59. The bug
report failed to mention that a proxy must be used to reproduce it.


# 6b95c4e3 30-Apr-2009 Daniel Stenberg

- I was going to fix issue #59 in KNOWN_BUGS

If the CURLOPT_PORT option is used on an FTP URL like
"ftp://example.com/file;type=A" the ";type=A" is stripped off.

I added t

- I was going to fix issue #59 in KNOWN_BUGS

If the CURLOPT_PORT option is used on an FTP URL like
"ftp://example.com/file;type=A" the ";type=A" is stripped off.

I added test case 562 to verify, only to find out that I couldn't repeat
this bug so I hereby consider it not a bug anymore!

show more ...


# 255dc45d 27-Apr-2009 Daniel Stenberg

the windows threaded resolver isn't foolproof enough


# f278d177 18-Apr-2009 Daniel Stenberg

63. When CURLOPT_CONNECT_ONLY is used, the handle cannot reliably be re-used
for any further requests or transfers. The work-around is then to close that
handle with curl_easy_cleanup() a

63. When CURLOPT_CONNECT_ONLY is used, the handle cannot reliably be re-used
for any further requests or transfers. The work-around is then to close that
handle with curl_easy_cleanup() and create a new. Some more details:
http://curl.haxx.se/mail/lib-2009-04/0300.html

show more ...


Revision tags: curl-7_19_4
# b1233c7e 09-Feb-2009 Daniel Stenberg

#45. libcurl built to support ipv6 uses getaddrinfo() to resolve host names.
getaddrinfo() sorts the response list

This isn't a libcurl bug since this is how getaddrinfo() is *suppose

#45. libcurl built to support ipv6 uses getaddrinfo() to resolve host names.
getaddrinfo() sorts the response list

This isn't a libcurl bug since this is how getaddrinfo() is *supposed* to work!
Apparently you deal with this using the /etc/gai.conf file.

show more ...


# 4ebe4b90 09-Feb-2009 Daniel Stenberg

#53. SFTP busy-loop problem. should be fixed in 7.19.3 with libssh2 1.0 (or
later)


Revision tags: curl-7_19_3
# 1342f5d5 13-Jan-2009 Daniel Stenberg

62. CURLOPT_TIMEOUT does not work properly with the regular multi and
multi_socket interfaces. The work-around for apps is to simply remove the
easy handle once the time is up. See also:

62. CURLOPT_TIMEOUT does not work properly with the regular multi and
multi_socket interfaces. The work-around for apps is to simply remove the
easy handle once the time is up. See also:
http://curl.haxx.se/bug/view.cgi?id=2501457

show more ...


1...<<1112131415161718