aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-10-06Dan Fandrich fix for hosts that need both -lnsl and -lsocketDaniel Stenberg
2004-10-06untabifyDaniel Stenberg
2004-10-05djgpp has basename()Gisle Vanem
2004-10-05minor edit to re-use a variable and to hopefully avoid a (moot) warningDaniel Stenberg
about code that won't be reached
2004-10-05recent fixesDaniel Stenberg
2004-10-05make the given path to --with-libidn override any other installationDaniel Stenberg
2004-10-05avoid warning for unused variableDaniel Stenberg
2004-10-05use idna_strerror() if it is available (only in libidn 0.5.6 or later)Daniel Stenberg
2004-10-05Only include libgen.h if we have a basename as well.Daniel Stenberg
Mainly meant to deal with the IRIX case which seems to requrie a "-lgen" lib to find the basename function and thus without the gen lib, it finds the header but not the function and our replacement function has a prototype that doesn't match the IRIX one. A different approach would be to make configure detect and use -lgen for the systems that require it.
2004-10-05let our basename() be staticDaniel Stenberg
2004-10-04name mix fixDaniel Stenberg
2004-10-04closing in on releaseDaniel Stenberg
2004-10-04Made the dns entry remain locked while a connection to the host remains toDaniel Stenberg
allow verbose output during this period. Bertrand Demiddelaer reported and helped fixing.
2004-10-03set async.done to TRUE last in the addrinfo callback to prevent the risk thatDaniel Stenberg
the multi-threaded resolver does wrong
2004-10-03Replaced the use of isspace() with our own version instead since we have mostDaniel Stenberg
data as 'char *' and that makes us pass in negative values if there is 8bit data in the string. Changing to unsigned causes too much warnings or too many required typecasts to the normal string functions.
2004-10-03when building with libidn support, check for idna_strerror() which isDaniel Stenberg
included in very recent versions
2004-10-03added info about how users get info (like the CURLcode return code) fromDaniel Stenberg
individual transfers
2004-10-03removed trailing whitespaceDaniel Stenberg
2004-10-02Gisle Vanem provided code that displays an error message when the (libidnDaniel Stenberg
based) IDN conversion fails. This is really due to a missing suitable function in the libidn API that I hope we can remove once libidn gets a function like this.
2004-10-02removed weird preprocessor juggling not neededDaniel Stenberg
2004-10-01someone should hit meDaniel Stenberg
2004-10-01Aleksandar Milivojevic reported a problem in the Redhat bugzilla (seeDaniel Stenberg
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=134133) and not to anyone involved in the curl project! This happens when you try to curl a file from a proftpd site using SSL. It seems proftpd sends a somewhat unorthodox PASS response code (232 instead of 230). I relaxed the response code check to deal with this and similar cases.
2004-10-01fixed the basename() replacement, reported by GisleDaniel Stenberg
2004-10-01mention when this option was addedDaniel Stenberg
2004-10-01reflect the last few changesDaniel Stenberg
2004-10-01- Based on Fedor Karpelevitch's formpost path basename patch, file parts inDaniel Stenberg
formposts no longer include the path part. If you _really_ want them, you must provide your preferred full file name with CURLFORM_FILENAME. Added detection for libgen.h and basename() to configure. My custom basename() replacement function for systems without it, might be a bit too naive... Updated 6 test cases to make them work with the stripped paths.
2004-09-30- Larry Campbell added CURLINFO_OS_ERRNO to curl_easy_getinfo() that allows anDaniel Stenberg
app to retrieve the errno variable after a (connect) failure. It will make sense to provide this for more failures in a more generic way, but let's start like this.
2004-09-30killed trailing whitespaceDaniel Stenberg
2004-09-30Günter Knauf and Casey O'Donnell worked out an extra #if condition for theDaniel Stenberg
curl/multi.h header to work better in winsock-using apps.
2004-09-30Jean-Philippe Barrette-LaPierre made buildconf run better on Mac OS X byDaniel Stenberg
properly using glibtoolize instead of plain libtoolize. (This is made if glibtool was found and used instead of plain libtool.)
2004-09-30--max-redirs is _not_ -ZDaniel Stenberg
2004-09-3048 - Harshal Pradhan's isspace() fix for 8bit cookie contentDaniel Stenberg
2004-09-30issue 47 - Peter Sylvester's patch related to the new SRP on the TLS layerDaniel Stenberg
2004-09-30fix the multi.h tooDaniel Stenberg
2004-09-30added issue 45 "Chris' suspected race condition in the windows threadedDaniel Stenberg
resolver"
2004-09-30added five things I want fixed before the next releaseDaniel Stenberg
2004-09-29Fixed an error message: we use CWD, we don't cd into dirs with FTPDaniel Stenberg
2004-09-28Bertrand Demiddelaer fixed curl_easy_reset() so that it doesn't mistakinglyDaniel Stenberg
enable the progress meter.
2004-09-28- Henrik Stoerner fix: got a report that Tru64 Unix (the unix from DigitalDaniel Stenberg
when they made Alpha's) uses /etc/svc.conf for the purpose fixed below for other OSes. He made c-ares check for and understand it if present. - Now c-ares will use local host name lookup _before_ DNS resolving by default if nothing else is told.
2004-09-28recent stuffDaniel Stenberg
2004-09-28made pkg-config not get used if a path is given with --with-sslDaniel Stenberg
2004-09-28Only active the engine code if ssl is enabled. This is how the actual engineDaniel Stenberg
member in the struct is used.
2004-09-26- Henrik Stoerner: found out that C-ARES does not look at the /etc/host.confDaniel Stenberg
file to determine the sequence in which to search /etc/hosts and DNS. So on systems where this order is defined by /etc/host.conf instead of a "lookup" entry in /etc/resolv.conf, C-ARES will always default to looking in DNS first, and /etc/hosts second. c-ares now looks at 1) resolv.conf (for the "lookup" line); 2) nsswitch.fon (for the "hosts:" line); 3) host.conf (for the "order" line). First match wins.
2004-09-26Dominick Meglio host file path discovery patch for windowsDaniel Stenberg
2004-09-26Ben Greear's minor fix to build (better) with cross-compiled(?) mingwDaniel Stenberg
2004-09-25allow setting CURLOPT_SSLENGINE to NULL even if no SSL engine is supportedDaniel Stenberg
2004-09-22Dan Fandrich patched three testsDaniel Stenberg
2004-09-22Dan Fandrich's fix to use 127.0.0.1 instead of localhost to not depend onDaniel Stenberg
it resolving nicely
2004-09-22Jean-Claude Chauve is a friend!Daniel Stenberg
2004-09-22typoDaniel Stenberg