aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2006-05-23David McCreedy's updateDaniel Stenberg
2006-05-11make sure the LASTSOCKET check only checks for SSL status if the socketDaniel Stenberg
truly use SSL
2006-05-11silence warningDaniel Stenberg
2006-05-10David McCreedy provided a fix for CURLINFO_LASTSOCKET that does extendedDaniel Stenberg
checks on the to-be-returned socket to make sure it truly seems to be alive and well. For SSL connection it (only) uses OpenSSL functions.
2006-05-101 - allow DICT with properly URL-escaped words, like using %20 for spacesDaniel Stenberg
2 - properly escape certain letters within a DICT word to comply to the RFC2229
2006-05-09oops, could return an uninitialized variableDaniel Stenberg
2006-05-09Robson Braga Araujo fixed two problems in the recently added non-blocking SSLDaniel 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-09Robson Braga Araujo fixed a memory leak when you added an easy handle to aDaniel 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-08check more return codes and skip the initial slash in given file namesDaniel Stenberg
2006-05-08no longer uses errno but Curl_sockerrno() and now acknowledges return codesDaniel Stenberg
from Curl_client_write
2006-05-08Stop sending retransmitted received blocks up to clientDan Fandrich
Fixed handling of retransmitted blocks on transmit Properly aligned data to transmit within packet Replaced calls to strerror() with Curl_strerror()
2006-05-08Fixed known bug #28. The TFTP code no longer assumes a packed struct andDaniel Stenberg
thus works reliably on more platforms.
2006-05-07Fix GnuTLS compile warning. Risking breakage with some older version of GnuTLS?Daniel Stenberg
2006-05-05Curl_https_getsock() was OpenSSL-specific and really should not be presentDaniel 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-05get the Curl_sockerrno protoDaniel Stenberg
2006-05-05additional renames of Curl_ourerrno => Curl_sockerrnoDaniel Stenberg
2006-05-04Roland Blom filed bug report #1481217Daniel 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-04Mark Eichin submitted bug report #1480821Daniel 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-04-26Added revision ID-tag.Gisle Vanem
2006-04-26Fixed signed/unsigned convertion errors in Salford-C.Gisle Vanem
#ifdef around WSAEDISCON in strerror.c.
2006-04-26Use the HAVE_MALLOC_H and HAVE_PROCESS_H definesGisle Vanem
(more logical).
2006-04-26djgpp has <process.h> too.Gisle Vanem
2006-04-26Added support for Salford-C under Win32 (scc). HAVE_MALLOC_H andGisle Vanem
HAVE_PROCESS_H added for all except scc.
2006-04-26crlf_conversions needs to be a curl_off_t for ASCII transfers > 4GB on 32bitDaniel Stenberg
systems
2006-04-26David McCreedy brought line end conversions when doing FTP ASCIIDaniel Stenberg
transfers. They are done on non-windows systems and translate CRLF to LF.
2006-04-25Paul Querna fixed libcurl to better deal with deflate content encoding whenDaniel Stenberg
the stream (wrongly) lacks a proper zlib header. This seems to be the case on too many actual server implementations.
2006-04-25prevent signed/unsigned warningsDaniel Stenberg
2006-04-21Ale Vesely fixed CURLOPT_INTERFACE when using a hostnameDaniel Stenberg
2006-04-21each socket is used by exactly one easy handle, but of course each easy handleDaniel Stenberg
can and will use more than one socket
2006-04-20removed -fpack-struct because gcc4 seems to know its obsolete and warns...Gunter Knauf
2006-04-19CURL_VERSION_CONV is returned by curl_version_info if libcurl has been builtDaniel Stenberg
to allow/support character conversions
2006-04-18Robson Braga Araujo provided a patch that makes libcurl less eager to closeDaniel Stenberg
the control connection when using FTP, for example when you remove an easy handle from a multi stack.
2006-04-18corrected the SSL timeout, as Ates Goral's patch did it and that works (opposedDaniel Stenberg
to my previous brain-damaged version)
2006-04-18attempt to silence the MIPSPro compiler warningDaniel Stenberg
2006-04-18avoid a warning about declaring a variable that shadows an earlier declaredDaniel Stenberg
one
2006-04-18there's an curl_easy_unescape too nowDaniel Stenberg
2006-04-17added missing symbol export.Gunter Knauf
2006-04-12added splayDaniel Stenberg
2006-04-12Added splay.c.Gisle Vanem
2006-04-12Add "multiif.h" for GETSOCK_WRITESOCK() macro.Gisle Vanem
2006-04-11adjusted to the new internal *_getsock() concept for providing info internallyDaniel Stenberg
about what sockets to wait for what action on
2006-04-11added docs and removed protoDaniel Stenberg
2006-04-10Ates Goral found out that if you specified both CURLOPT_CONNECTTIMEOUT andDaniel Stenberg
CURLOPT_TIMEOUT, the _longer_ time would wrongly be used for the SSL connection time-out!
2006-04-10First curl_multi_socket() commit. Should primarily be considered as an internalDaniel Stenberg
code rearrange to fit the future better.
2006-04-10added README.multi_socketDaniel Stenberg
2006-04-10state of the multi_socket API worksDaniel Stenberg
2006-04-10avoid duplicate typedefs, as this type is also defined in our public headersDaniel Stenberg
2006-04-09CURLE_FTP_USER_PASSWORD_INCORRECT is not returned by libcurl anymore!Daniel Stenberg
2006-04-08readint_le() not needed in USE_WINDOWS_SSPI code.Gisle Vanem
2006-04-08curl_easy_unescape() takes 4 arguments.Gisle Vanem