Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-03-19 | KNOWN_BUGS: #93 Issue with CURLFORM_CONTENTLEN in arrays on 32-bit platforms | Steve Holme | |
2016-02-09 | KNOWN_BUGS: Update #92 - Windows device prefix | Jay Satiro | |
2016-02-08 | KNOWN_BUGS: Windows device prefix is required for devices | Jay Satiro | |
2016-02-04 | URLs: follow GitHub project rename (also Travis CI) | Viktor Szakats | |
Closes #632 | |||
2016-02-02 | HTTPS: update a bunch of URLs from HTTP to HTTPS | Daniel Stenberg | |
2015-09-20 | KNOWN_BUGS: 91 "curl_easy_perform hangs with imap and PolarSSL" | Daniel Stenberg | |
Closes #334 | |||
2015-09-20 | KNOWN_BUGS: add link to #85 | Daniel Stenberg | |
2015-08-24 | KNOWN_BUGS: #2, not reading a HEAD response-body is not a bug | Daniel Stenberg | |
... since HTTP is forbidden to return any such. | |||
2015-08-24 | KNOWN_BUGS: #78 zero-length files is already fixed! | Daniel Stenberg | |
2015-08-24 | getinfo: added CURLINFO_ACTIVESOCKET | Razvan Cojocaru | |
This patch addresses known bug #76, where on 64-bit Windows SOCKET is 64 bits wide, but long is only 32, making CURLINFO_LASTSOCKET unreliable. Signed-off-by: Razvan Cojocaru <rcojocaru@bitdefender.com> | |||
2015-06-16 | docs: update URLs | Viktor Szakats | |
2015-04-15 | KNOWN_BUGS: #90 IMAP "SEARCH ALL" truncates output on large boxes | Daniel Stenberg | |
2015-03-29 | KNOWN_BUGS: 89 is bug #1411 | Daniel Stenberg | |
Disabling pipelining on multi handle with in-progress pipelined requests leads to heap corruption and crash | |||
2014-12-26 | code/docs: Use Unix rather than UNIX to avoid use of the trademark | Steve Holme | |
Use Unix when generically writing about Unix based systems as UNIX is the trademark and should only be used in a particular product's name. | |||
2014-12-15 | KNOWN_BUGS: the SFTP code doesn't support CURLINFO_FILETIME | Daniel Stenberg | |
2014-08-22 | NTLM: ignore CURLOPT_FORBID_REUSE during NTLM HTTP auth | Frank Meier | |
Problem: if CURLOPT_FORBID_REUSE is set, requests using NTLM failed since NTLM requires multiple requests that re-use the same connection for the authentication to work Solution: Ignore the forbid reuse flag in case the NTLM authentication handshake is in progress, according to the NTLM state flag. Fixed known bug #77. | |||
2014-08-09 | docs: Update SPNEGO and GSS-API related doc sections | Michael Osipov | |
Reflect recent changes in SPNEGO and GSS-API code in the docs. Update them with appropriate namings and remove visible spots for GSS-Negotiate. | |||
2014-06-04 | KNOWN_BUGS: #83 was addressed with commit c50ce859187ca | Daniel Stenberg | |
2014-06-01 | KNOWN_BUGS: #30 was fixed in 0bc4938eeccce, 7.37.0 | Daniel Stenberg | |
2014-03-31 | URL parser: IPv6 zone identifiers are now supported | Till Maas | |
2014-03-14 | docs: fixed a bunch of typos | Dan Fandrich | |
2014-01-04 | docs: primarily refer to schannel as WinSSL | Marc Hoersken | |
2013-12-15 | curl.1 document -J doesn't %-decode | Daniel Stenberg | |
...also added as KNOWN_BUG #87 with reference to bug #1294 | |||
2013-11-27 | KNOWN_BUGS: #86: Disconnect commands may not be sent by IMAP, POP3 and SMTP | Steve Holme | |
2013-11-05 | KNOWN_BUGS: STARTTRANSFER for POST requests | Daniel Stenberg | |
added 85. Wrong STARTTRANSFER timer accounting for POST requests | |||
2013-10-02 | KNOWN_BUGS: #84: CURLINFO_SSL_VERIFYRESULT | Daniel Stenberg | |
CURLINFO_SSL_VERIFYRESULT is only implemented for the OpenSSL and NSS backends and not for any other! | |||
2013-08-26 | KNOWN_BUGS: refer to bug numbers with the existing number series | Daniel Stenberg | |
The old numbers would still redirect but who knows for how long... | |||
2013-08-08 | KNOWN_BUGS: 22 and 57 have been fixed and committed | John E. Malmberg | |
2013-06-22 | KNOWN_BUGS: #83 unable to load non-default openssl engines | Daniel Stenberg | |
2013-06-11 | KNOWN_BUGS: #82 failed build with Borland compiler | Daniel Stenberg | |
2013-05-21 | KNOWN_BUGS: curl -OJC- fails to resume | Daniel Stenberg | |
Bug: http://curl.haxx.se/bug/view.cgi?id=1169 | |||
2012-09-14 | socks.c: Added support for IPv6 connections through SOCKSv5 proxy | Marc Hoersken | |
2012-08-31 | test2032: bail out after last transfer | Daniel Stenberg | |
The test would hang and get aborted with a "ABORTING TEST, since it seems that it would have run forever." until I prevented that from happening. I also fixed the data file which got broken CRLF line endings when I sucked down the path from Joe's repo == my fault. Removed #37 from KNOWN_BUGS as this fix and test case verifies exactly this. | |||
2012-07-20 | Fixed some typos in documentation | Dan Fandrich | |
2012-07-08 | KNOWN_BUGS: #80 Curl doesn't recognize certs in DER format | Daniel Stenberg | |
2012-07-08 | KNOWN_BUGS: #79 - any RCPT TO failure makes and error | Daniel Stenberg | |
2012-07-07 | KNOWN_BUGS: NTLM with unicode works with schannel/winssl! | Daniel Stenberg | |
Bug #75 updated with additional info, still remains for builds with other backends. | |||
2012-01-18 | KNOWN_BUGS: can't receive zero bytes file properly | Daniel Stenberg | |
http://curl.haxx.se/bug/view.cgi?id=3438362 | |||
2012-01-04 | KNOWN_BUGS: #77 CURLOPT_FORBID_REUSE kills NTLM | Daniel Stenberg | |
2011-10-20 | KNOWN_BUGS: #74 fixed | Daniel Stenberg | |
Multiple auths in the same WWW-Authenticate header Fixed in commit 7d81e3f7193b8c | |||
2010-08-15 | multi: support timeouts | Daniel Stenberg | |
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. | |||
2010-08-10 | KNOWN_BUG #59 is fixed. Clarify support of IPv6 zone IDs. | Dan Fandrich | |
2010-07-30 | KNOWN_BUG: The SOCKET type in Win64 is 64 bits | Daniel Stenberg | |
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. | |||
2010-02-14 | 75. NTLM authentication involving unicode user name or password. | Daniel Stenberg | |
http://curl.haxx.se/mail/lib-2009-10/0024.html http://curl.haxx.se/bug/view.cgi?id=2944325 | |||
2010-02-14 | removed trailing whitespace | Yang Tse | |
2010-01-28 | Known bug #64 fixed by Constantine Sapuntzakis and Joshua Kwan in 7.20.0 | Yang Tse | |
2009-12-04 | 74. The HTTP spec allows headers to be merged and become comma-separated | Daniel Stenberg | |
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. | |||
2009-11-29 | #71 "TFTP block size / better integration in transfer" is now expected to | Daniel Stenberg | |
have been fixed! | |||
2009-10-21 | mention bug 2848436 in regard to the TFTP problems | Daniel Stenberg | |
2009-08-31 | 73. if a connection is made to a FTP server but the server then just never | Daniel Stenberg | |
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 |