aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-01-15Bryan Henderson turned the 'initialized' variable for curl_global_init()Daniel Stenberg
into a counter, and thus you can now do multiple curl_global_init() and you are then supposed to do the same amount of calls to curl_global_cleanup(). Bryan also updated the docs accordingly.
2006-01-15adjusted to use curl_multi_setopt() to set the callbackDaniel Stenberg
2006-01-15adjusted to the new concept of the callbackDaniel Stenberg
2006-01-13Andrew Benham fixed a race condition in the test suite that could cause theDaniel Stenberg
test script to kill all processes in the current process group!
2006-01-12Fixed FTP_SKIP_PASV_IP and FTP_USE_EPSV to "do right" when used on FTP thruDaniel Stenberg
HTTP proxy.
2006-01-12Michael Jahn fixed ftp over CONNECTDaniel Stenberg
2006-01-10mention the "secret" option as I've got no feedback and it is actually presentDaniel Stenberg
in 7.15.1
2006-01-10When using a bad path over FTP, as in when libcurl couldn't CWD into allDaniel Stenberg
given subdirs, libcurl would still "remember" the full path as if it is the current directory libcurl is in so that the next curl_easy_perform() would get really confused if it tried the same path again - as it would not issue any CWD commands at all, assuming it is already in the "proper" dir. Starting now, a failed CWD command sets a flag that prevents the path to be "remembered" after returning.
2006-01-09Made the copyright year match the latest modification's year.Daniel Stenberg
2006-01-09Alexander Lazic improved the getservbyport_r() configure check.Daniel Stenberg
2006-01-08one more mirror, now fortunately in JapanDaniel Stenberg
2006-01-08use the proper dashDaniel Stenberg
2006-01-07Mike Jean fixed so that the second CONNECT when doing FTP over a HTTP proxyDaniel Stenberg
actually used a new connection and not sent the second request on the first socket!
2006-01-06buildconf fixesDaniel Stenberg
2006-01-06As Alexander Lazic pointed out, run the buildconf from the ares dir if thatDaniel Stenberg
is present instead of trying to duplicate that stuff in this script.
2006-01-06Use $ACLOCAL_FLAGS too, pointed out by Alexander LazicDaniel Stenberg
2006-01-05summary of what we haveDaniel Stenberg
2006-01-05James Bursa fixes: find the hosts file on RISC OS, and made it build withDaniel Stenberg
newer gcc versions that no longer defines "riscos".
2006-01-05Yang Tse has been helping outDaniel Stenberg
2006-01-04modified output to prevent the autobuild system to trap on the 'FAILED' outputDaniel Stenberg
mistaking it for an actual failed test case
2006-01-04Added ares_getsock.obj.Gisle Vanem
2006-01-04updated test programs to use the API as it currently worksDaniel Stenberg
2006-01-04removed easy handle argument from protoDaniel Stenberg
2006-01-04upcoming new error codeDaniel Stenberg
2006-01-04Andres Garcia made the TFTP test server build with mingw.Daniel Stenberg
2006-01-04not much recent stuff, but still I had this modified locallyDaniel Stenberg
2006-01-03Added remake of the arpa/tftp.h file to make the TFTP server build on systemsDaniel Stenberg
without the real header file.
2006-01-03killed trailing whitespaceDaniel Stenberg
2006-01-03Andres Garcia made the TFTP test server build with mingw ("I also had to copyDaniel Stenberg
the 'tftp.h' file from a linux box, since it doesn't come with mingw.")
2006-01-03CURLOPT_PROGRESSFUNCTION is really not a good idea when using the multiDaniel Stenberg
interface
2006-01-03fixed the prototypeDaniel Stenberg
2006-01-03modified to hush compiler warningsDaniel Stenberg
2006-01-02Removed inaccurate comment for upcoming curl_multi_socket() and family.Daniel Stenberg
Modified the callback proto used for it.
2006-01-02minor editsDaniel Stenberg
2006-01-02Initial description of the upcoming curl_multi_timeout() functionDaniel Stenberg
2006-01-02I removed the timeout argument from the socket callback and did some otherDaniel Stenberg
cleanups of this man page. The lengthy description has now also been removed from curl/multi.h since it immediately got tedious to maintain the info on two places when I did major updates...
2006-01-02Include <sys/ioctl.h> before redefining ioctl().Gisle Vanem
2006-01-021. sws now supports two new "commands" and 2. if built withDaniel Stenberg
CURL_SWS_FORK_ENABLED defined it forks for each new connection and thus can support any amount of connection clients (used for hiper tests and not for the standard plain curl test suite)
2006-01-02we're working on 1.3.1 (or more)Daniel Stenberg
2005-12-30fix questionable compareMarty Kuhrt
2005-12-30fix questionable compare compiler error (unsigned can't be < 0)Marty Kuhrt
2005-12-30removed defunct email addressMarty Kuhrt
2005-12-30removed .h and .sdlMarty Kuhrt
2005-12-30putting back into distMarty Kuhrt
2005-12-30put back into dist to lessen build confusion for someMarty Kuhrt
2005-12-30put back into dist since most people didn't want to use SDLMarty Kuhrt
2005-12-30changed HAVE_STRTOK to follow CRTL versionMarty Kuhrt
2005-12-30added TFTP errors to match curl.hMarty Kuhrt
2005-12-23Kirill Vasiliev fixed the 'release-ssl-dll' target to properly build aDaniel Stenberg
static libcurl using openssl as dll.
2005-12-23clarified that curl_global_init() isn't thread-safe and that it might affectDaniel Stenberg
curl_easy_init() if you don't call curl_global_init() explicitly in your app