aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2001-05-30include strtok.h to get the prototypeDaniel Stenberg
2001-05-30finally fixed the 'ret' compiler warningDaniel Stenberg
2001-05-30curl_global_init() support for CURL_GLOBAL_NOT_SSLDaniel Stenberg
2001-05-29curl_ => Curl_Daniel Stenberg
2001-05-29re-indented to follow "project curl"-style, renamed curl_ prefix to Curl_Daniel Stenberg
2001-05-29strtok() replaced with strtok_r()Daniel Stenberg
2001-05-29Added strtok.[ch]Daniel Stenberg
2001-05-29global_init() takes that flag argumentDaniel Stenberg
2001-05-28increased interface ageDaniel Stenberg
2001-05-28T. Bharath's comments about SSL cleanup incorporated, and the two newDaniel Stenberg
curl_global_* functions
2001-05-23Added Andres' comments about field 2 in netscape cookie filesDaniel Stenberg
2001-05-23Andrés García's netscape cookie file parser fixDaniel Stenberg
2001-05-22store httpcode _before_ doing the FAILONERROR check so that getinfo worksDaniel Stenberg
afterwards (bug #426442)
2001-05-21turned newlines into DOS stylesDaniel Stenberg
2001-05-21made it binary in CVS to maintain DOS newlines and turned those newlinesDaniel Stenberg
into the DOS kind!
2001-05-21slightly "hackish" approach to disable SSL during download if the connectionDaniel Stenberg
is a FTPS connection as the data transfer is then done unencrypted!
2001-05-18our internal strlcat() is now named Curl_strlcat()Daniel Stenberg
2001-05-18strlcat() is now Curl_strlcat() instead to prevent collisions when used withDaniel Stenberg
other libs
2001-05-18strlcpy() turned staticDaniel Stenberg
2001-05-15Pawel A. Gajda fixed resumed transfers on persistent connectionsDaniel Stenberg
2001-05-14Jun-ichiro itojun Hagino fixed FTP PORT for IPv6-enabled libcurlDaniel Stenberg
2001-05-12Added tons of comments all overDaniel Stenberg
2001-05-12Uses the Curl_SSLConnect() according to the new return typeDaniel Stenberg
2001-05-12fixed Curl_SSLConnect() to return CURLcode errors, including the new errorDaniel Stenberg
code for peer certificate errors
2001-05-11removed unused #ifdef'ed sectionDaniel Stenberg
2001-05-11when asking for a resumed FTP transfer, even though the entire file hasDaniel Stenberg
already been transfered no longer returns error but instead is OK. The reasoning behind this is of course that no extra actions need to be taken and it is as if a transfer had been successfully performed.
2001-05-11checkheader() added to check headers+contents instead of the previousDaniel Stenberg
strnequal() approach that really didn't follow the RFC properly
2001-05-11another multiple FTP transfer fixDaniel Stenberg
2001-05-11Ingo Wilken's redirect fixesDaniel Stenberg
2001-05-10Ingo Wilken's patch to support multiple spaces after "Location:"Daniel Stenberg
2001-05-10When re-using a connection, the path pointers were not setup properly soDaniel Stenberg
that multiple FTP transfers were not possible
2001-05-08when getting a FTP file with NOBODY, we will no longer return error ifDaniel Stenberg
SIZE doesn't work, we just don't output any size info!
2001-05-07corrected the read-callback typecase since FILE * was replaced with void *Daniel Stenberg
2001-05-07fixed 'storefread' to not make a warningDaniel Stenberg
2001-05-04'FILE *' changed to 'void *' in all callback functionsDaniel Stenberg
2001-05-03Cris Bailiff's fix to disable chunked transfers on re-used persistentDaniel Stenberg
connections.
2001-05-03Cris Bailiff's fix to never attempt to get the body of a 304-reply!Daniel Stenberg
2001-04-27When Content-Length:0 is received, we now bail now and return successDaniel Stenberg
directly after all the headers are received!
2001-04-27improved treatment of "Content-Length: 0", which is done by havingDaniel Stenberg
maxdownload set to -1 when not used
2001-04-26Curl_GetFTPResponse() is rewritten to read all incoming data in largeDaniel Stenberg
chunks, which makes it a lot faster and will make ftps work better...
2001-04-25connection re-using didn't work on non-default ports when not using proxyDaniel Stenberg
until now
2001-04-24include debugmem for memory leak detectionDaniel Stenberg
2001-04-24on albert chin's comment I remade the fix to set '\0' instead of 0 sinceDaniel Stenberg
they're chars
2001-04-23Added zero termination, as the OpenSSL version string was written withoutDaniel Stenberg
it!
2001-04-23no need to copy the name when re-using the connection, we already have theDaniel Stenberg
same name in that buffer from the URL parsing!
2001-04-22Rosimildo da Silva corrected them to build a proper lib and to use optionsDaniel Stenberg
for multi-threading compiling
2001-04-22copy the name properly when re-using a connectionDaniel Stenberg
2001-04-22old krb4 fix for strlcat() prototypeDaniel Stenberg
2001-04-18Remade resume stuff to keep data in the connectdata struct instead of theDaniel Stenberg
main handle struct to work with persistant connections
2001-04-17init the speed index variable between transfersDaniel Stenberg