#
0516ce77 |
| 26-Jan-2009 |
Daniel Stenberg |
- Chad Monroe provided the new CURLOPT_TFTP_BLKSIZE option that allows an app to set desired block size to use for TFTP transfers instead of the default 512 bytes.
|
#
bb86462e |
| 26-Jan-2009 |
Daniel Stenberg |
wrap line at col 80
|
#
8fa8df95 |
| 26-Jan-2009 |
Daniel Stenberg |
- The "-no_ticket" option was introduced in Openssl0.9.8j. It's a flag to disable "rfc4507bis session ticket support". rfc4507bis was later turned into the proper RFC5077 it seems: http:
- The "-no_ticket" option was introduced in Openssl0.9.8j. It's a flag to 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.
show more ...
|
#
82ca5271 |
| 26-Jan-2009 |
Daniel Stenberg |
- Alexey Borzov filed bug report #2535504 (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 a
- Alexey Borzov filed bug report #2535504 (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.
show more ...
|
#
5aeef9c1 |
| 25-Jan-2009 |
Daniel Stenberg |
- Craig A West brought CURLOPT_NOPROXY and the corresponding --noproxy option. They basically offer the same thing the NO_PROXY environment variable only offered previously: list a set of
- Craig A West brought CURLOPT_NOPROXY and the corresponding --noproxy option. 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.
show more ...
|
#
55915501 |
| 21-Jan-2009 |
Dan Fandrich |
Fixed a couple more locale-dependent toupper conversions, mainly for clarity. This does fix one problem that causes ;type=i FTP URLs to fail in the Turkish locale when CURLOPT_PROXY_TRANSFER
Fixed a couple more locale-dependent toupper conversions, mainly for clarity. This does fix one problem that causes ;type=i FTP URLs to fail in the Turkish locale when CURLOPT_PROXY_TRANSFER_MODE is used (test case 561) Added tests 561 and 1092 through 1094 to test various combinations of ;type= and ;mode= URLs that could potentially fail in the Turkish locale.
show more ...
|
#
14a67885 |
| 20-Jan-2009 |
Daniel Stenberg |
- Lisa Xu pointed out that the ssh.obj file was missing from the lib/Makefile.vc6 file (and thus from the vc8 and vc9 ones too).
|
#
b914f45e |
| 19-Jan-2009 |
Daniel Stenberg |
700 friendly contributors after the new ones in 7.19.3 were added
|
#
718004d9 |
| 19-Jan-2009 |
Daniel Stenberg |
start over on our journey towards 7.19.4...
|
Revision tags: curl-7_19_3 |
|
#
37c5250e |
| 16-Jan-2009 |
Daniel Stenberg |
- Andrew de los Reyes fixed curlbuild.h for "generic" gcc builds on PPC, both 32 bit and 64 bit.
|
#
5e74c58b |
| 15-Jan-2009 |
Daniel Stenberg |
- Tim Ansell fixed a compiler warning in lib/cookie.c
|
#
1225d361 |
| 13-Jan-2009 |
Daniel Stenberg |
Grant Erickson fixed timeouts for TFTP
|
#
a19e02be |
| 13-Jan-2009 |
Daniel Stenberg |
- Michael Wallner fixed a NULL pointer deref when calling curl_easy_setup(curl, CURLOPT_COOKIELIST, "SESS") on a CURL handle with no cookies data.
|
#
0761e60a |
| 13-Jan-2009 |
Daniel Stenberg |
Stefan Teleman's curlbuild.h fix for SunPro compilers
|
#
a1077d09 |
| 11-Jan-2009 |
Daniel Stenberg |
changed the wording to possibly make some sense
|
#
b9fdc0c2 |
| 11-Jan-2009 |
Daniel Stenberg |
- Based on bug report #2498665 (http://curl.haxx.se/bug/view.cgi?id=2498665) by Daniel Black, I've now added magic to the configure script that makes it use pkg-config to detect gnutls de
- Based on bug report #2498665 (http://curl.haxx.se/bug/view.cgi?id=2498665) by Daniel Black, I've now added magic to the configure script that makes it use pkg-config to detect gnutls details as well if the existing method (using libgnutls-config) fails. While doing this, I cleaned up and unified the pkg-config usage when detecting openssl and nss as well.
show more ...
|
#
f471b483 |
| 11-Jan-2009 |
Daniel Stenberg |
credit Karl Moerder properly
|
#
f7e3bd28 |
| 11-Jan-2009 |
Daniel Stenberg |
- Karl M brought the patch that creates vc9 Makefiles, and I made 'maketgz' now use the actual makefile targets to do the VC8 and VC9 makefiles.
|
#
452e52f9 |
| 10-Jan-2009 |
Daniel Stenberg |
- Emil Romanus fixed: When using the multi interface over HTTP and the server returns a Location header, the running easy handle will get stuck in the CURLM_STATE_PERFORM state
- Emil Romanus fixed: When using the multi interface over HTTP and the server returns a Location header, the running easy handle will get stuck in the CURLM_STATE_PERFORM state, leaving the external event loop stuck waiting for data from the ingoing socket (when using the curl_multi_socket_action stuff). While this bug was pretty hard to find, it seems to require only a one-line fix. The break statement on line 1374 in multi.c caused the function to skip the call to multistate(). How to reproduce this bug? Well, that's another question. evhiperfifo.c in the examples directory chokes on this bug only _sometimes_, probably depending on how fast the URLs are added. One way of testing the bug out is writing to hiper.fifo from more than one source at the same time.
show more ...
|
#
bc930115 |
| 08-Jan-2009 |
Dan Fandrich |
Unified much of the SessionHandle initialization done in Curl_open() and curl_easy_reset() by creating Curl_init_userdefined(). This had the side effect of fixing curl_easy_reset() so it now
Unified much of the SessionHandle initialization done in Curl_open() and curl_easy_reset() by creating Curl_init_userdefined(). This had the side effect of fixing curl_easy_reset() so it now also resets CURLOPT_FTP_FILEMETHOD and CURLOPT_SSL_SESSIONID_CACHE
show more ...
|
#
3c2ad402 |
| 07-Jan-2009 |
Daniel Stenberg |
- Rob Crittenden did once again provide an NSS update: I have to jump through a few hoops now with the NSS library initialization since another part of an application may have alread
- Rob Crittenden did once again provide an NSS update: I have to jump through a few hoops now with the NSS library initialization since another part of an application may have already initialized NSS by the time Curl gets invoked. This patch is more careful to only shutdown the NSS library if Curl did the initialization. It also adds in a bit of code to set the default ciphers if the app that call NSS_Init* did not call NSS_SetDomesticPolicy() or set specific ciphers. One might argue that this lets other application developers get lazy and/or they aren't using the NSS API correctly, and you'd be right. But still, this will avoid terribly difficult-to-trace crashes and is generally helpful.
show more ...
|
#
cf4b88fc |
| 31-Dec-2008 |
Daniel Stenberg |
credit Bas
|
#
83640b2e |
| 29-Dec-2008 |
Daniel Stenberg |
- Phil Lisiecki filed bug report #2413067 (http://curl.haxx.se/bug/view.cgi?id=2413067) that identified a problem that would cause libcurl to mark a DNS cache entry "in use" eternally if
- Phil Lisiecki filed bug report #2413067 (http://curl.haxx.se/bug/view.cgi?id=2413067) that identified a problem that would cause libcurl to mark a DNS cache entry "in use" eternally if the subsequence TCP connect failed. It would thus never get pruned and refreshed as it should've been.
show more ...
|
#
59227bf0 |
| 28-Dec-2008 |
Daniel Stenberg |
- Peter Korsgaard fixed building libcurl with "configure --with-ssl --disable-verbose".
|
#
3eae7695 |
| 27-Dec-2008 |
Daniel Stenberg |
libssh2 0.19 became 1.0 instead
|