History log of /curl/ (Results 26126 – 26150 of 33767)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
9755343710-May-2006 Daniel Stenberg

My Solaris test server was simply too slow to be able to respond within 4
seconds even when everything is fine! Now we allow a test server 8 seconds
to respond to still be considered ok.

28605f6b10-May-2006 Daniel Stenberg

cvsignore these files

3c6d3b6910-May-2006 Daniel Stenberg

1 - allow DICT with properly URL-escaped words, like using %20 for spaces
2 - properly escape certain letters within a DICT word to comply to the RFC2229

00312e9510-May-2006 Daniel Stenberg

removed variable declarations shadowing previously declared variables

4223130b10-May-2006 Daniel Stenberg

Bram Matthys brought my attention to a libtool peculiarity where detecting
things such as C++ compiler actually is a bad thing and since we don't need
that detection I added a work-around, mu

Bram Matthys brought my attention to a libtool peculiarity where detecting
things such as C++ compiler actually is a bad thing and since we don't need
that detection I added a work-around, much inspired by a previous patch by
Paolo Bonzini. This also shortens the configure script quite a lot.

show more ...

c811e1ce09-May-2006 Daniel Stenberg

oops, could return an uninitialized variable

77475f2a09-May-2006 Daniel Stenberg

Andreas Ntaflos reported a bug in libcurl.m4: When configuring my GNU
autotools project, which optionally (default=yes) uses libcurl on a system
without a (usable) libcurl installation, but n

Andreas Ntaflos reported a bug in libcurl.m4: When configuring my GNU
autotools project, which optionally (default=yes) uses libcurl on a system
without a (usable) libcurl installation, but not specifying
`--without-libcurl', configure determines correctly that no libcurl is
available, however, the LIBCURL variable gets expanded to `LIBCURL = -lcurl'
in the resulting Makefiles.

David Shaw fixed the flaw.

show more ...

3680a2f609-May-2006 Daniel Stenberg

mention the other TFTP cleanup sweep from yday

1946058e09-May-2006 Daniel Stenberg

Robson Braga Araujo fixed two problems in the recently added non-blocking SSL
connects. The state machine was not reset properly so that subsequent
connects using the same handle would fail,

Robson Braga Araujo fixed two problems in the recently added non-blocking SSL
connects. The state machine was not reset properly so that subsequent
connects using the same handle would fail, and there were two memory leaks.

show more ...

73daf8ce09-May-2006 Daniel Stenberg

Robson Braga Araujo fixed a memory leak when you added an easy handle to a
multi stack and that easy handle had already been used to do one or more
easy interface transfers, as then the code

Robson Braga Araujo fixed a memory leak when you added an easy handle to a
multi stack and that easy handle had already been used to do one or more
easy interface transfers, as then the code threw away the previously used
DNS cache without properly freeing it.

show more ...

094ceeba08-May-2006 Daniel Stenberg

check more return codes and skip the initial slash in given file names

3b7359a208-May-2006 Daniel Stenberg

no longer uses errno but Curl_sockerrno() and now acknowledges return codes
from Curl_client_write

df9108e108-May-2006 Dan Fandrich

Stop sending retransmitted received blocks up to client
Fixed handling of retransmitted blocks on transmit
Properly aligned data to transmit within packet
Replaced calls to strerror() wit

Stop sending retransmitted received blocks up to client
Fixed handling of retransmitted blocks on transmit
Properly aligned data to transmit within packet
Replaced calls to strerror() with Curl_strerror()

show more ...

6307e78308-May-2006 Daniel Stenberg

Fixed known bug #28. The TFTP code no longer assumes a packed struct and
thus works reliably on more platforms.

b9cd73c707-May-2006 Daniel Stenberg

Fix GnuTLS compile warning. Risking breakage with some older version of GnuTLS?

b62c230c05-May-2006 Daniel Stenberg

Curl_https_getsock() was OpenSSL-specific and really should not be present
like this in this source file. The quickfix for now is to provide a simple
version for GnuTLS builds. The GnuTLS ver

Curl_https_getsock() was OpenSSL-specific and really should not be present
like this in this source file. The quickfix for now is to provide a simple
version for GnuTLS builds. The GnuTLS version of libcurl doesn't yet allow
fully non-blocking connects anyway so this function doesn't get used.

show more ...

800193da05-May-2006 Daniel Stenberg

get the Curl_sockerrno proto

577ba57805-May-2006 Daniel Stenberg

two more contributors

9bece2b305-May-2006 Daniel Stenberg

additional renames of Curl_ourerrno => Curl_sockerrno

e85e305404-May-2006 Daniel Stenberg

Roland Blom filed bug report #1481217
(http://curl.haxx.se/bug/view.cgi?id=1481217), with follow-ups by Michele Bini
and David Byron. libcurl previously wrongly used GetLastError() on windows

Roland Blom filed bug report #1481217
(http://curl.haxx.se/bug/view.cgi?id=1481217), with follow-ups by Michele Bini
and David Byron. libcurl previously wrongly used GetLastError() on windows to
get error details after socket-related function calls, when it really should
use WSAGetLastError() instead.

When changing to this, the former function Curl_ourerrno() is now instead
called Curl_sockerrno() as it is necessary to only use it to get errno from
socket-related functions as otherwise it won't work as intended on Windows.

show more ...

758f6eed04-May-2006 Daniel Stenberg

Mark Eichin submitted bug report #1480821
(http://curl.haxx.se/bug/view.cgi?id=1480821) He found and identified a
problem with how libcurl dealt with GnuTLS and a case where gnutls returned

Mark Eichin submitted bug report #1480821
(http://curl.haxx.se/bug/view.cgi?id=1480821) He found and identified a
problem with how libcurl dealt with GnuTLS and a case where gnutls returned
GNUTLS_E_AGAIN indicating it would block. It would then return an unexpected
return code, making Curl_ssl_send() confuse the upper layer - causing random
28 bytes trash data to get inserted in the transfered stream.

The proper fix was to make the Curl_gtls_send() function return the proper
return codes that the callers would expect. The Curl_ossl_send() function
already did this.

show more ...

80ee5d3b03-May-2006 Daniel Stenberg

moved the curl_off_t check to within the --enable-debug block where it belongs since it is a somewhat ugly hack

dd06c60a03-May-2006 Daniel Stenberg

Nick Mathewson added the ARES_OPT_SOCK_STATE_CB option that when set makes
c-ares call a callback on socket state changes. A better way than the
ares_getsock() to get full control over the so

Nick Mathewson added the ARES_OPT_SOCK_STATE_CB option that when set makes
c-ares call a callback on socket state changes. A better way than the
ares_getsock() to get full control over the socket state.

show more ...

6ca627ae02-May-2006 Daniel Stenberg

curl-config got a --checkfor option

80a0b81c02-May-2006 Daniel Stenberg

Make this code use the proper pointers

1...<<1041104210431044104510461047104810491050>>...1351