Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2009-01-31 | - Scott Cantor filed bug report #2550061 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2550061) mentioning that I failed to properly make sure that the VC9 makefiles got included in the latest release. I've now fixed the release script and verified it so next release will hopefully include them properly! | |||
2009-01-30 | Truly make sure that the vc8 and vc9 makefiles that are generated get included | Daniel Stenberg | |
in the release archive - by using our .dist suffix trick. | |||
2009-01-30 | Fixed --disable-proxy for FTP and SOCKS. Thanks to Daniel Egger for reporting | Dan Fandrich | |
the problem. | |||
2009-01-30 | Mentioned some other characters that may need escaping on the curl command | Dan Fandrich | |
line and fixed a few typos. | |||
2009-01-30 | ensure that we use the ANSI version functions | Yang Tse | |
2009-01-30 | fix typo in comment | Yang Tse | |
2009-01-30 | Provide another definition missing in MinGW's headers | Yang Tse | |
2009-01-29 | Provide some definitions missing in MinGW's headers | Yang Tse | |
2009-01-29 | Introduced curl_sspi.c and curl_sspi.h for the implementation of functions | Yang Tse | |
Curl_sspi_global_init() and Curl_sspi_global_cleanup() which previously were named Curl_ntlm_global_init() and Curl_ntlm_global_cleanup() in http_ntlm.c Also adjusted socks_sspi.c to remove the link-time dependency on the Windows SSPI library using it now in the same way as it was done in http_ntlm.c. | |||
2009-01-29 | added some more messages to SSPI error function | Yang Tse | |
2009-01-29 | Avoid inclusion of ntsecapi.h and directly provide the KERB_WRAP_NO_ENCRYPT | Yang Tse | |
definition to avoid a 'STRING' duplicate definition from OpenSSL's safestack.h | |||
2009-01-29 | fix compiler warnings | Yang Tse | |
2009-01-28 | - Markus Moeller introduced two new options to libcurl: | Daniel Stenberg | |
CURLOPT_SOCKS5_GSSAPI_SERVICE and CURLOPT_SOCKS5_GSSAPI_NEC to allow libcurl to do GSS-style authentication with SOCKS5 proxies. The curl tool got the options called --socks5-gssapi-service and --socks5-gssapi-nec to enable these. | |||
2009-01-28 | fix compiler warning: conversion from 'int' to 'bool', possible loss of data | Yang Tse | |
2009-01-28 | fix compiler warning: enumerated type mixed with another type | Yang Tse | |
2009-01-26 | - Chad Monroe provided the new CURLOPT_TFTP_BLKSIZE option that allows an app | Daniel Stenberg | |
to set desired block size to use for TFTP transfers instead of the default 512 bytes. | |||
2009-01-26 | wrap line at col 80 | Daniel Stenberg | |
2009-01-26 | - The "-no_ticket" option was introduced in Openssl0.9.8j. It's a flag to | Daniel Stenberg | |
disable "rfc4507bis session ticket support". rfc4507bis was later turned into the proper RFC5077 it seems: http://tools.ietf.org/html/rfc5077 The enabled extension concerns the session management. I wonder how often libcurl stops a connection and then resumes a TLS session. also, sending the session data is some overhead. .I suggest that you just use your proposed patch (which explicitly disables TICKET). If someone writes an application with libcurl and openssl who wants to enable the feature, one can do this in the SSL callback. Sharad Gupta brought this to my attention. Peter Sylvester helped me decide on the proper action. | |||
2009-01-26 | - Alexey Borzov filed bug report #2535504 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2535504) pointing out that realms with quoted quotation marks in HTTP Digest headers didn't work. I've now added test case 1095 that verifies my fix. | |||
2009-01-26 | added CURLX_ONES again to object list for dynamic linking. | Gunter Knauf | |
2009-01-25 | - Craig A West brought CURLOPT_NOPROXY and the corresponding --noproxy option. | Daniel Stenberg | |
They basically offer the same thing the NO_PROXY environment variable only offered previously: list a set of host names that shall not use the proxy even if one is specified. | |||
2009-01-21 | Improved the title and keywords | Dan Fandrich | |