Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-05-10 | 1 - allow DICT with properly URL-escaped words, like using %20 for spaces | Daniel Stenberg | |
2 - properly escape certain letters within a DICT word to comply to the RFC2229 | |||
2006-05-10 | removed variable declarations shadowing previously declared variables | Daniel Stenberg | |
2006-05-10 | Bram Matthys brought my attention to a libtool peculiarity where detecting | Daniel Stenberg | |
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. | |||
2006-05-09 | oops, could return an uninitialized variable | Daniel Stenberg | |
2006-05-09 | Andreas Ntaflos reported a bug in libcurl.m4: When configuring my GNU | Daniel Stenberg | |
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. | |||
2006-05-09 | mention the other TFTP cleanup sweep from yday | Daniel Stenberg | |
2006-05-09 | Robson Braga Araujo fixed two problems in the recently added non-blocking SSL | Daniel Stenberg | |
connects. The state machine was not reset properly so that subsequent connects using the same handle would fail, and there were two memory leaks. | |||
2006-05-09 | Robson Braga Araujo fixed a memory leak when you added an easy handle to a | Daniel Stenberg | |
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. | |||
2006-05-08 | check more return codes and skip the initial slash in given file names | Daniel Stenberg | |
2006-05-08 | no longer uses errno but Curl_sockerrno() and now acknowledges return codes | Daniel Stenberg | |
from Curl_client_write | |||
2006-05-08 | Stop sending retransmitted received blocks up to client | Dan Fandrich | |
Fixed handling of retransmitted blocks on transmit Properly aligned data to transmit within packet Replaced calls to strerror() with Curl_strerror() | |||
2006-05-08 | Fixed known bug #28. The TFTP code no longer assumes a packed struct and | Daniel Stenberg | |
thus works reliably on more platforms. | |||
2006-05-07 | Fix GnuTLS compile warning. Risking breakage with some older version of GnuTLS? | Daniel Stenberg | |
2006-05-05 | Curl_https_getsock() was OpenSSL-specific and really should not be present | Daniel Stenberg | |
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. | |||
2006-05-05 | get the Curl_sockerrno proto | Daniel Stenberg | |
2006-05-05 | two more contributors | Daniel Stenberg | |
2006-05-05 | additional renames of Curl_ourerrno => Curl_sockerrno | Daniel Stenberg | |
2006-05-04 | Roland Blom filed bug report #1481217 | Daniel Stenberg | |
(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. | |||
2006-05-04 | Mark Eichin submitted bug report #1480821 | Daniel Stenberg | |
(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. | |||
2006-05-03 | moved the curl_off_t check to within the --enable-debug block where it ↵ | Daniel Stenberg | |
belongs since it is a somewhat ugly hack | |||
2006-05-03 | Nick Mathewson added the ARES_OPT_SOCK_STATE_CB option that when set makes | Daniel Stenberg | |
c-ares call a callback on socket state changes. A better way than the ares_getsock() to get full control over the socket state. | |||
2006-05-02 | curl-config got a --checkfor option | Daniel Stenberg | |
2006-05-02 | Make this code use the proper pointers | Daniel Stenberg | |
2006-04-26 | Added revision ID-tag. | Gisle Vanem | |
2006-04-26 | Fixed signed/unsigned convertion errors in Salford-C. | Gisle Vanem | |
#ifdef around WSAEDISCON in strerror.c. | |||
2006-04-26 | Use the HAVE_MALLOC_H and HAVE_PROCESS_H defines | Gisle Vanem | |
(more logical). | |||
2006-04-26 | djgpp has <process.h> too. | Gisle Vanem | |
2006-04-26 | Added support for Salford-C under Win32 (scc). HAVE_MALLOC_H and | Gisle Vanem | |
HAVE_PROCESS_H added for all except scc. | |||
2006-04-26 | Added SalfordC support. | Gisle Vanem | |
2006-04-26 | crlf_conversions needs to be a curl_off_t for ASCII transfers > 4GB on 32bit | Daniel Stenberg | |
systems | |||
2006-04-26 | updated with more error codes | Daniel Stenberg | |
2006-04-26 | David McCreedy brought line end conversions when doing FTP ASCII | Daniel Stenberg | |
transfers. They are done on non-windows systems and translate CRLF to LF. | |||
2006-04-25 | --ftp-method was missing in the --help output, as mentioned by Manfred Schwarb | Daniel Stenberg | |
2006-04-25 | Paul Querna fixed libcurl to better deal with deflate content encoding when | Daniel Stenberg | |
the stream (wrongly) lacks a proper zlib header. This seems to be the case on too many actual server implementations. | |||
2006-04-25 | prevent signed/unsigned warnings | Daniel Stenberg | |
2006-04-24 | Mention my April 20 thoughts. I already changed the README in the lib dir | Daniel Stenberg | |
to be accurate on this. | |||
2006-04-24 | added the hipev build | Daniel Stenberg | |
2006-04-24 | the example that _is_ supposed to use libevent | Daniel Stenberg | |
2006-04-24 | this example does NOT use libevent! | Daniel Stenberg | |
2006-04-21 | Ale Vesely fixed CURLOPT_INTERFACE when using a hostname | Daniel Stenberg | |
2006-04-21 | each socket is used by exactly one easy handle, but of course each easy handle | Daniel Stenberg | |
can and will use more than one socket | |||
2006-04-21 | added SPL and XBLite | Daniel Stenberg | |
2006-04-20 | removed -fpack-struct because gcc4 seems to know its obsolete and warns... | Gunter Knauf | |
2006-04-19 | detect ICC and pass on "-we 147" so that the configure checks for function | Daniel Stenberg | |
arguments work properly - and the option is not harmful for the rest of the curl build either! | |||
2006-04-19 | the new conversion stuff documented (mostly by David McCreedy) | Daniel Stenberg | |
2006-04-19 | CURL_VERSION_CONV is returned by curl_version_info if libcurl has been built | Daniel Stenberg | |
to allow/support character conversions | |||
2006-04-18 | mention the recent thoughts/progress I had | Daniel Stenberg | |
2006-04-18 | Robson Braga Araujo provided a patch that makes libcurl less eager to close | Daniel Stenberg | |
the control connection when using FTP, for example when you remove an easy handle from a multi stack. | |||
2006-04-18 | mention Katie Wang as author of the patch | Daniel Stenberg | |
2006-04-18 | corrected the SSL timeout, as Ates Goral's patch did it and that works (opposed | Daniel Stenberg | |
to my previous brain-damaged version) |