aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2002-06-26T. Bharath fixed his mm lib timer resolution fixDaniel Stenberg
2002-06-15CURLOPT_BUFFERSIZE allows an application to set a prefered buffer sizeDaniel Stenberg
for receiving data from the network. It is meant as a hint, not as a forced limit.
2002-06-14- Yarram Sunil found out that the SocketIsDead() function performed a lotDaniel Stenberg
faster on Windows when removing the 1 microsecond timeout.
2002-06-14Hanno L. Kranzhoff fixed themDaniel Stenberg
2002-06-14Remade the FTP not-check status line and not-attempt-to-read-status-lineDaniel Stenberg
variables, conditions and things.
2002-06-13Tom Mattison's report found out, and this is the fix that should preventDaniel Stenberg
FTP from closing the connections a little too often!
2002-06-13Added 'dont_check' to be set during an FTP operation if the final statusDaniel Stenberg
message is supposed to be ignored.
2002-06-12when no FTP transfer was done, don't attempt to read the download transferDaniel Stenberg
thing. The 'resumed' flag is also causing confusions. I'll deal with that tomorrow.
2002-06-12Moved the secondarysocket cleanup. The 'conn' struct may have been clearedDaniel Stenberg
already at that other place.
2002-06-12Chris Combes added CURLFORM_BUFFER, CURLFORM_BUFFERPTR, CURLFORM_BUFFERLENGTHDaniel Stenberg
2002-06-12HAVE_SIGSETJMPDaniel Stenberg
2002-06-12added a connect failure error message that might get empty otherwiseDaniel Stenberg
2002-06-12Jörn fixes for 7.9.8 buildDaniel Stenberg
2002-06-12kris@freebsd.org fixed a bad format stringDaniel Stenberg
2002-06-12kris@freebsd.org fixed a few bad format stringsDaniel Stenberg
2002-06-11put #ifdefs around the sigjmp_buf declaration too, as it should beDaniel Stenberg
2002-06-11corrected the signal handlerDaniel Stenberg
2002-06-11Now uses sigsetjmp() and siglongjmp() to bail out from slow name lookups inDaniel Stenberg
case a timeout is set. This seems to work. God knows if it is good enough or what kind of side-effects we introduce here and now. I'll close my eyes and cross my fingers. Hard.
2002-06-11removed accidentally added debug-code!Daniel Stenberg
2002-06-11ftp range downloads make us ignore the final status message as the serverDaniel Stenberg
will most likely treat the download as failed as we might abort it pre-maturely
2002-06-11added disable-[protocol] support, largely provided by Miklos NemethDaniel Stenberg
2002-06-11added multi.objDaniel Stenberg
2002-06-11make sure data->set.postfields is non-NULL before doing strlen() on theDaniel Stenberg
pointer. Bugs item #566835.
2002-06-10getaddrinfo() failures now show port number too in informational outputDaniel Stenberg
2002-06-10added a missing failf() for certain connect failuresDaniel Stenberg
2002-06-10This fix MIGHT make us build nicely with OpenSSL 0.9.7. This fix is basedDaniel Stenberg
on a patch from Jacob Meuser, input from Götz Babin-Ebell and my own browsing of the latest include files.
2002-06-10Gautam Mani found a socket descriptor leak that happened when FTP transfersDaniel Stenberg
failed and you reinvoked curl_easy_perform().
2002-06-05Gustaf Hui fixed curl_multi_remove_handle() to prevent a potential crashDaniel Stenberg
2002-06-05set HAVE_RAND_STATUS tooDaniel Stenberg
2002-06-05hostcache_fixoffset() is now corrected to work on 64bit architecturesDaniel Stenberg
Bug report #564585.
2002-06-03T. Bharath's updates since curl now uses the winmm lib for higher resolutionDaniel Stenberg
timer
2002-06-03T. Bharath made the request size add up as it is documented to do.Daniel Stenberg
2002-06-03T. Bharath fixed higher resolution time for windows buildsDaniel Stenberg
2002-06-03T. Bharath fixed the TIMER_REDIRECT.Daniel Stenberg
2002-05-28Getting an empty FTP file no longer makes us return error 19. An empty fileDaniel Stenberg
is fine to get.
2002-05-28 Gustaf Hui provided new code that changes how curl_multi_info_read()Daniel Stenberg
messages are stored, so that they don't have to be kept around for the multi handle's entire life time. He also made it return failure codes properly which it didn't do before. I made the messages only get stored per easy-handle so that they can be independently killed easier without ruining the "master list". It makes the info_read() function slightly less beautiful as it has to scan for messages to return, but it makes removing individual handles a lot easier and less error prone.
2002-05-28Adjusted to make curl_multi_perform() work properly even whenDaniel Stenberg
curl_multi_fdset() is not used.
2002-05-28Cris Bailiff's CAPATH support addedDaniel Stenberg
2002-05-21When re-using a connection, make sure that we use the current host name asDaniel Stenberg
we might actually re-use a connection to a different host, when using proxies! This was what bug report #558888 was all about.
2002-05-21James Cone's efforts to add another netrc parsing "mode"Daniel Stenberg
2002-05-21maprintf() and vmaprintf() now work better when printfing "%s" with anDaniel Stenberg
empty string
2002-05-21ASN1 files don't work for the *chain_file(), make them use the previousDaniel Stenberg
version
2002-05-21curl_formadd() now returns 'CURLFORMcode' instead of int, to better enableDaniel Stenberg
checking for particular errors. curl/curl.h defines the errros
2002-05-20Roland Zimmermann's hint, we use SSL_CTX_use_certificate_chain_file() insteadDaniel Stenberg
of the previous one that used SSL_CTX_use_certificate_file()
2002-05-17Fixes bug report #556930 - we need to make sure that the data is all rightDaniel Stenberg
after we've realloc() the packed hostent struct.
2002-05-07support for ingoring session cookies addedDaniel Stenberg
2002-05-06the code for case CURLOPT_DEBUGDATA code broke the CURLOPT_STDERR one!Daniel Stenberg
2002-05-05Better support for being used with the multi interface without the *fd_set()Daniel Stenberg
and proper select()ing have been made.
2002-05-04made VERBOSE output more like it used to be, HEADER_IN is thus also ignoredDaniel Stenberg
by the internal debugfunction callback
2002-05-03CURL_MAX_WRITE_SIZE is a new exported define that informs about the biggestDaniel Stenberg
sized buffer that may be passed to a write callback