Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-02-20 | Mark Incley noticed VS2008 compilation halting when building for Windows 2000 | Yang Tse | |
2009-02-20 | Do not halt compilation when using VS2008 to build a Windows 2000 target | Yang Tse | |
2009-02-20 | clarified the FTP passive/active mode options somewhat | Daniel Stenberg | |
2009-02-20 | the FTP multi interface bug | Daniel Stenberg | |
2009-02-20 | - Linus Nielsen Feltzing reported and helped me repeat and fix a problem with | Daniel Stenberg | |
FTP with the multi interface: when a transfer fails, like when aborted by a write callback, the control connection was wrongly closed and thus not re-used properly. This change is also an attempt to cleanup the code somewhat in this area, as now the FTP code attempts to keep (better) track on pending responses necessary to get read in ftp_done(). | |||
2009-02-19 | The C++ binding home was changed | Daniel Stenberg | |
2009-02-19 | verify that a 550-response for a RETR returns 78 but also that the control | Daniel Stenberg | |
connection is kept alive afterwards | |||
2009-02-19 | - Patrik Thunstrom reported a problem and helped me repeat it. It turned out | Daniel Stenberg | |
libcurl did a superfluous 1000ms wait when doing SFTP downloads! We read data with libssh2 while doing the "DO" operation for SFTP and then when we were about to start getting data for the actual file part, the "TRANSFER" part, we waited for socket action (in 1000ms) before doing a libssh2-read. But in this case libssh2 had already read and buffered the data so we ended up always just waiting 1000ms before we get working on the data! | |||
2009-02-18 | spell-fixed comments and other minor non-code edits | Daniel Stenberg | |
2009-02-18 | FTP downloads (i.e.: RETR) ending with code 550 now return error ↵ | Patrick Monnerat | |
CURLE_REMOTE_FILE_NOT_FOUND instead of CURLE_FTP_COULDNT_RETR_FILE. | |||
2009-02-17 | Continue sync work on OS400 specific code and RPG binding. | Patrick Monnerat | |
2009-02-17 | - Kamil Dudka made NSS-powered builds compile and run again! | Daniel Stenberg | |
2009-02-17 | - A second follow-up change by Andre Guibert de Bruet to fix a related memory | Daniel Stenberg | |
leak like that fixed on the 14th. When zlib returns failure, we need to cleanup properly before returning error. | |||
2009-02-17 | three new CURLFTP_CREATE_DIR* symbols | Daniel Stenberg | |
2009-02-17 | - CURLOPT_FTP_CREATE_MISSING_DIRS can now be set to 2 in addition to 1 for | Daniel Stenberg | |
plain FTP connections, and it will then allow MKD to fail once and retry the CWD afterwards. This is especially useful if you're doing many simultanoes connections against the same server and they all have this option enabled, as then CWD may first fail but then another connection does MKD before this connection and thus MKD fails but trying CWD works! The numbers can (should?) now be set with the convenience enums now called CURLFTP_CREATE_DIR and CURLFTP_CREATE_DIR_RETRY. Tests has proven that if you're making an application that uploads a set of files to an ftp server, you will get a noticable gain in speed if you're using multiple connections and this option will be then be very useful. | |||
2009-02-16 | Preparation of imminent release: synchronizing OS400 wrappers + RPG binding ↵ | Patrick Monnerat | |
to current state. | |||
2009-02-14 | In MSVC9 'time_t' is a 64-bit quantity. This causes a truncation warning | Gisle Vanem | |
when an 'int' is assigned to a 'time_t' variable. Hence redefine 'retry_time' and 'retry_max' to 'time_t'. | |||
2009-02-14 | nah, use the simpler year - year range syntax only, no matter what emacs' | Daniel Stenberg | |
copyright-update script thinks | |||
2009-02-14 | - Andre Guibert de Bruet found and fixed a memory leak in the content encoding | Daniel Stenberg | |
code, which could happen on libz errors. | |||
2009-02-13 | there is nothing left planned for next release, metalink experiments are post- | Daniel Stenberg | |
poned | |||
2009-02-13 | Anthony Bryan's letter=>symbol fixes | Daniel Stenberg | |
2009-02-13 | ignore | Yang Tse | |
2009-02-13 | Remove following files generated on previous buildconf run: | Yang Tse | |
ltoptions.m4 ltsugar.m4 ltversion.m4 lt~obsolete.m4 | |||
2009-02-13 | check for poll() as it is done for other functions | Yang Tse | |
2009-02-12 | Fixed NTLM on curl-config --features with GnuTLS | Dan Fandrich | |
2009-02-12 | Added support for Digest and NTLM authentication using GnuTLS. | Dan Fandrich | |
2009-02-12 | credit Jocelyn Jaubert for his bug report and associated work | Daniel Stenberg | |
2009-02-11 | - CURLINFO_CONDITION_UNMET was added to allow an application to get to know if | Daniel Stenberg | |
the condition in the previous request was unmet. This is typically a time condition set with CURLOPT_TIMECONDITION and was previously not possible to reliably figure out. From bug report #2565128 (http://curl.haxx.se/bug/view.cgi?id=2565128) | |||
2009-02-10 | Added docs/libcurl/symbols-in-versions | Daniel Stenberg | |
2009-02-10 | completed the CURLPROXY_ collection | Daniel Stenberg | |
2009-02-10 | include the symbols-in-versions file in the release archive | Daniel Stenberg | |
2009-02-10 | remove a trailing name from a comment | Daniel Stenberg | |
2009-02-10 | introducing the symbols-in-versions file, in an effort to help app authors | Daniel Stenberg | |
to better know and track symbols in earlier libcurl versions | |||
2009-02-10 | mention when CURLOPT_ADDRESS_SCOPE was added | Daniel Stenberg | |
2009-02-09 | #45. libcurl built to support ipv6 uses getaddrinfo() to resolve host names. | Daniel Stenberg | |
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. | |||
2009-02-09 | #53. SFTP busy-loop problem. should be fixed in 7.19.3 with libssh2 1.0 (or | Daniel Stenberg | |
later) | |||
2009-02-07 | Moved Curl_strntoupper() to the rawstr.c file where the other raw string | Daniel Stenberg | |
functions are. | |||
2009-02-07 | 214 - progress bar prefix, second try (for the curl tool) | Daniel Stenberg | |
patch declined | |||
2009-02-06 | Mention the first release of CURLOPT_FTP_FILEMETHOD | Dan Fandrich | |
2009-02-05 | Added an explicit buffer limit check in msdosify() (patch based on FreeBSD). | Dan Fandrich | |
This couldn't ever overflow in curl, but might if the code were used elsewhere or under different conditions. | |||
2009-02-04 | Fixed a typo (spotted in the FreeBSD ports). | Dan Fandrich | |
2009-02-04 | Don't add the standard /usr/lib or /usr/include paths to LDFLAGS and CPPFLAGS | Dan Fandrich | |
(respectively) when --with-ssl=/usr is used (patch based on FreeBSD). | |||
2009-02-04 | 206 - A. Craig West's CURLOPT_HTTP_VERSION change for CONNECT | Daniel Stenberg | |
applied! | |||
2009-02-03 | - Hidemoto Nakada provided a small fix that makes it possible to get the | Daniel Stenberg | |
CURLINFO_CONTENT_LENGTH_DOWNLOAD size from file:// "transfers" with CURLOPT_NOBODY set true. | |||
2009-02-03 | * February 3 2009 (Phil Blundell) | Phil Blundell | |
- If the server returns garbage or nothing at all in response to an AAAA query, go on and ask for A records anyway. | |||
2009-02-02 | - Patrick Scott found a rather large memory leak when using the multi | Daniel Stenberg | |
interface and setting CURLMOPT_MAXCONNECTS to something less than the number of handles you add to the multi handle. All the connections that didn't fit in the cache would not be properly disconnected nor freed! | |||
2009-02-02 | minor comment fix | Daniel Stenberg | |
2009-02-02 | - Craig A West brought us: libcurl now defaults to do CONNECT with HTTP | Daniel Stenberg | |
version 1.1 instead of 1.0 like before. This change also introduces the new proxy type for libcurl called 'CURLPROXY_HTTP_1_0' that then allows apps to switch (back) to CONNECT 1.0 requests. The curl tool also got a --proxy1.0 option that works exactly like --proxy but sets CURLPROXY_HTTP_1_0. I updated all test cases cases that use CONNECT and I tried to do some using --proxy1.0 and some updated to do CONNECT 1.1 to get both versions run. | |||
2009-01-31 | - When building with c-ares 1.6.1 (not yet released) or later and IPv6 support | Daniel Stenberg | |
enabled, we can now take advantage of its brand new AF_UNSPEC support in ares_gethostbyname(). This makes test case 241 finally run fine for me wtih this setup since it now parses the "::1 ip6-localhost" line fine in my /etc/hosts file! | |||
2009-01-31 | - ares_gethostbyname() now accepts 'AF_UNSPEC' as a family for resolving | Daniel Stenberg | |
either AF_INET6 or AF_INET. It works by accepting any of the looksups in the hosts file, and it resolves the AAAA field with a fallback to A. |