History log of /curl/CHANGES (Results 126 – 150 of 1910)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 1fddcb3f 23-Nov-2009 Daniel Stenberg

- Bjorn Augustsson reported a bug which made curl not report any problems even
though it failed to write a very small download to disk (done in a single
fwrite call). It turned out to be

- Bjorn Augustsson reported a bug which made curl not report any problems even
though it failed to write a very small download to disk (done in a single
fwrite call). It turned out to be because fwrite() returned success, but
there was insufficient error-checking for the fclose() call which tricked
curl to believe things were fine.

show more ...


# 504e6d7a 20-Nov-2009 Daniel Stenberg

- Constantine Sapuntzakis identified a write after close, as the sockets were
closed by libcurl before the SSL lib were shutdown and they may write to its
socket. Detected to at least hap

- Constantine Sapuntzakis identified a write after close, as the sockets were
closed by libcurl before the SSL lib were shutdown and they may write to its
socket. Detected to at least happen with OpenSSL builds.

show more ...


# a41493b3 20-Nov-2009 Daniel Stenberg

- Jad Chamcham pointed out a bug with connection re-use. If a connection had
CURLOPT_HTTPPROXYTUNNEL enabled over a proxy, a subsequent request using the
same proxy with the tunnel option

- Jad Chamcham pointed out a bug with connection re-use. If a connection had
CURLOPT_HTTPPROXYTUNNEL enabled over a proxy, a subsequent request using the
same proxy with the tunnel option disabled would still wrongly re-use that
previous connection and the outcome would only be badness.

show more ...


# b32d1a9a 17-Nov-2009 Daniel Stenberg

- Constantine Sapuntzakis provided another fix for the DNS cache that could
end up with entries that wouldn't time-out:

1. Set up a first web server that redirects (307) to a http://

- Constantine Sapuntzakis provided another fix for the DNS cache that could
end up with entries that wouldn't time-out:

1. Set up a first web server that redirects (307) to a http://server:port
that's down
2. Have curl connect to the first web server using curl multi

After the curl_easy_cleanup call, there will be curl dns entries hanging
around with in_use != 0.

(http://curl.haxx.se/bug/view.cgi?id=2891591)

show more ...


# 4c8adc8f 17-Nov-2009 Daniel Stenberg

- Marc Kleine-Budde fixed: curl saved the LDFLAGS set during configure into
its pkg-config file. So -Wl stuff ended up in the .pc file, which is really
bad, and breaks if there are multi

- Marc Kleine-Budde fixed: curl saved the LDFLAGS set during configure into
its pkg-config file. So -Wl stuff ended up in the .pc file, which is really
bad, and breaks if there are multiple -Wl in our LDFLAGS (which are in
PTXdist). bug #2893592 (http://curl.haxx.se/bug/view.cgi?id=2893592)

show more ...


# 530fde3a 15-Nov-2009 Kamil Dudka

- David Byron improved the configure script to use pkg-config to find OpenSSL
(and in particular the list of required libraries) even if a path is given
as argument to --with-ssl


# f7f76e17 14-Nov-2009 Claes Jakobsson

Added '--configure' option to curl-config to display original configure arguments when curl was built


# eb16c0e1 14-Nov-2009 Daniel Stenberg

- Claes Jakobsson restored the configure functionality to detect NSS when
--with-nss is set but not "yes".

I think we can still improve that to check for pkg-config in that path etc,

- Claes Jakobsson restored the configure functionality to detect NSS when
--with-nss is set but not "yes".

I think we can still improve that to check for pkg-config in that path etc,
but at least this patch brings back the same functionality we had before.

show more ...


# 9c49e51f 14-Nov-2009 Daniel Stenberg

- Camille Moncelier added support for the file type SSL_FILETYPE_ENGINE for
the client certificate. It also disable the key name test as some engines
can select a private key/cert automat

- Camille Moncelier added support for the file type SSL_FILETYPE_ENGINE for
the client certificate. It also disable the key name test as some engines
can select a private key/cert automatically (When there is only one key
and/or certificate on the hardware device used by the engine)

show more ...


# 90bc6ee8 14-Nov-2009 Yang Tse

- Constantine Sapuntzakis provided the fix that ensures that an SSL connection
won't be reused unless protection level for peer and host verification match.


# 571309dc 12-Nov-2009 Kamil Dudka

- libcurl-NSS now tries to reconnect with TLS disabled in case it detects
a broken TLS server. However it does not happen if SSL version is selected
manually. The approach was originally

- libcurl-NSS now tries to reconnect with TLS disabled in case it detects
a broken TLS server. However it does not happen if SSL version is selected
manually. The approach was originally taken from PSM. Kaspar Brand helped me
to complete the patch. Original bug reports:
https://bugzilla.redhat.com/525496
https://bugzilla.redhat.com/527771

show more ...


# d547d00f 12-Nov-2009 Kamil Dudka

- Kevin Baughman provided a fix preventing libcurl-NSS from crash on doubly
closed NSPR descriptor. The issue was hard to find, reported several times
before and always closed unresolved.

- Kevin Baughman provided a fix preventing libcurl-NSS from crash on doubly
closed NSPR descriptor. The issue was hard to find, reported several times
before and always closed unresolved. More info at the RH bug:
https://bugzilla.redhat.com/534176

show more ...


# 40c2c327 11-Nov-2009 Yang Tse

- Marco Maggi reported that compilation failed when configured --with-gssapi
and GNU GSS installed due to a missing mutual exclusion of header files in
the Kerberos 5 code path. He also v

- Marco Maggi reported that compilation failed when configured --with-gssapi
and GNU GSS installed due to a missing mutual exclusion of header files in
the Kerberos 5 code path. He also verified that my patch worked for him.

show more ...


# fb5f3328 11-Nov-2009 Daniel Stenberg

- Constantine Sapuntzakis posted bug #2891595
(http://curl.haxx.se/bug/view.cgi?id=2891595) which identified how an entry
in the DNS cache would linger too long if the request that added

- Constantine Sapuntzakis posted bug #2891595
(http://curl.haxx.se/bug/view.cgi?id=2891595) which identified how an entry
in the DNS cache would linger too long if the request that added it was in
use that long. He also provided the patch that now makes libcurl capable of
still doing a request while the DNS hash entry may get timed out.

show more ...


# 107c4d87 11-Nov-2009 Daniel Stenberg

- Christian Schmitz noticed that the progress meter/callback was not properly
used during the FTP connection phase (after the actual TCP connect), while
it of course should be. I also mad

- Christian Schmitz noticed that the progress meter/callback was not properly
used during the FTP connection phase (after the actual TCP connect), while
it of course should be. I also made the speed check get called correctly so
that really slow servers will trigger that properly too.

show more ...


# 676e0c28 05-Nov-2009 Kamil Dudka

- Dropped misleading timeouts in libcurl-NSS and made sure the SSL socket works
in non-blocking mode.


# 55e68ba3 05-Nov-2009 Yang Tse

I removed leading 'curl' path on the 'curlbuild.h' include statement in
curl.h, adjusting auto-makefiles include path, to enhance portability to
OS's without an orthogonal directory tree stru

I removed leading 'curl' path on the 'curlbuild.h' include statement in
curl.h, adjusting auto-makefiles include path, to enhance portability to
OS's without an orthogonal directory tree structure such as OS/400.

show more ...


# 257f2376 04-Nov-2009 Daniel Stenberg

- I fixed several problems with the transfer progress meter. It showed the
wrong percentage for small files, most notable for <1000 bytes and could
easily end up showing more than 100% at

- I fixed several problems with the transfer progress meter. It showed the
wrong percentage for small files, most notable for <1000 bytes and could
easily end up showing more than 100% at the end. It also didn't show any
percentage, transfer size or estimated transfer times when transferring
less than 100 bytes.

show more ...


Revision tags: curl-7_19_7
# 81d45ed3 04-Nov-2009 Daniel Stenberg

release coming up


# b19dc0ee 02-Nov-2009 Daniel Stenberg

- As reported independent by both Stan van de Burgt and Didier Brisebourg,
CURLINFO_SIZE_DOWNLOAD (the -w variable size_download) didn't work when
getting data from ldap!


# 223d8481 31-Oct-2009 Daniel Stenberg

- Gabriel Kuri reported a problem with CURLINFO_CONTENT_LENGTH_DOWNLOAD if the
download was 0 bytes, as libcurl would then return the size as unknown (-1)
and not 0. I wrote a fix and tes

- Gabriel Kuri reported a problem with CURLINFO_CONTENT_LENGTH_DOWNLOAD if the
download was 0 bytes, as libcurl would then return the size as unknown (-1)
and not 0. I wrote a fix and test case 566 to verify it.

show more ...


# a76f4ab7 30-Oct-2009 Daniel Stenberg

- Liza Alenchery mentioned a problem with re-used SCP connection when a bad
auth is used, as it caused a crash. I failed to repeat the issue, but still
made a change that now forces the T

- Liza Alenchery mentioned a problem with re-used SCP connection when a bad
auth is used, as it caused a crash. I failed to repeat the issue, but still
made a change that now forces the TCP connection used for a freed SCP
session to get closed and not be re-used.

show more ...


# d68f215f 30-Oct-2009 Daniel Stenberg

- "Tom" posted a bug report that mentioned how libcurl did wrong when doing a
POST using a read callback, with Digest authentication and
"Transfer-Encoding: chunked" enforced. I would th

- "Tom" posted a bug report that mentioned how libcurl did wrong when doing a
POST using a read callback, with Digest authentication and
"Transfer-Encoding: chunked" enforced. I would then cause the first request
to be wrongly sent and then basically hang until the server closed the
connection. I fixed the problem and added test case 565 to verify it.

show more ...


# 448d2b5f 25-Oct-2009 Daniel Stenberg

- Dima Barsky made the curl cookie parser accept cookies even with blank or
unparsable expiry dates and then treat them as session cookies - previously
libcurl would reject cookies with a

- Dima Barsky made the curl cookie parser accept cookies even with blank or
unparsable expiry dates and then treat them as session cookies - previously
libcurl would reject cookies with a date format it couldn't parse. Research
shows that the major browser treat such cookies as session cookies. I
modified test 8 and 31 to verify this.

show more ...


# 1951cd1e 21-Oct-2009 Daniel Stenberg

- Attempt to use pkg-config for finding out libssh2 installation details
during configure.


12345678910>>...77