93e084e0 | 05-Oct-2004 |
Gisle Vanem |
djgpp has basename() |
1a61bcec | 05-Oct-2004 |
Daniel Stenberg |
minor edit to re-use a variable and to hopefully avoid a (moot) warning about code that won't be reached |
3d9fb701 | 05-Oct-2004 |
Daniel Stenberg |
recent fixes |
19a568a9 | 05-Oct-2004 |
Daniel Stenberg |
make the given path to --with-libidn override any other installation |
70c3f6a8 | 05-Oct-2004 |
Daniel Stenberg |
avoid warning for unused variable |
bb999d82 | 05-Oct-2004 |
Daniel Stenberg |
use idna_strerror() if it is available (only in libidn 0.5.6 or later) |
121197bc | 05-Oct-2004 |
Daniel Stenberg |
Only include libgen.h if we have a basename as well. 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 l
Only include libgen.h if we have a basename as well. 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.
show more ...
|
d5dd8e0f | 05-Oct-2004 |
Daniel Stenberg |
let our basename() be static |
c3688008 | 04-Oct-2004 |
Daniel Stenberg |
name mix fix |
6eb58549 | 04-Oct-2004 |
Daniel Stenberg |
closing in on release |
95def480 | 04-Oct-2004 |
Daniel Stenberg |
Made the dns entry remain locked while a connection to the host remains to allow verbose output during this period. Bertrand Demiddelaer reported and helped fixing. |
2ee6c334 | 03-Oct-2004 |
Daniel Stenberg |
set async.done to TRUE last in the addrinfo callback to prevent the risk that the multi-threaded resolver does wrong |
be7ce435 | 03-Oct-2004 |
Daniel Stenberg |
Replaced the use of isspace() with our own version instead since we have most data as 'char *' and that makes us pass in negative values if there is 8bit data in the string. Changing to unsig
Replaced the use of isspace() with our own version instead since we have most 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.
show more ...
|
f4252f86 | 03-Oct-2004 |
Daniel Stenberg |
when building with libidn support, check for idna_strerror() which is included in very recent versions |
f4f961c4 | 03-Oct-2004 |
Daniel Stenberg |
added info about how users get info (like the CURLcode return code) from individual transfers |
e2fe03df | 03-Oct-2004 |
Daniel Stenberg |
removed trailing whitespace |
19b284c2 | 02-Oct-2004 |
Daniel Stenberg |
Gisle Vanem provided code that displays an error message when the (libidn based) IDN conversion fails. This is really due to a missing suitable function in the libidn API that I hope we can r
Gisle Vanem provided code that displays an error message when the (libidn 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.
show more ...
|
6b3e3095 | 02-Oct-2004 |
Daniel Stenberg |
removed weird preprocessor juggling not needed |
fd2aad1d | 01-Oct-2004 |
Daniel Stenberg |
someone should hit me |
d239fc5d | 01-Oct-2004 |
Daniel Stenberg |
Aleksandar Milivojevic reported a problem in the Redhat bugzilla (see https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=134133) and not to anyone involved in the curl project! This happens
Aleksandar Milivojevic reported a problem in the Redhat bugzilla (see 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.
show more ...
|
ec4da97a | 01-Oct-2004 |
Daniel Stenberg |
fixed the basename() replacement, reported by Gisle |
bb48cced | 01-Oct-2004 |
Daniel Stenberg |
mention when this option was added |
afc0dfb1 | 01-Oct-2004 |
Daniel Stenberg |
reflect the last few changes |
8e872231 | 01-Oct-2004 |
Daniel Stenberg |
- Based on Fedor Karpelevitch's formpost path basename patch, file parts in formposts no longer include the path part. If you _really_ want them, you must provide your preferred full file
- Based on Fedor Karpelevitch's formpost path basename patch, file parts in 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.
show more ...
|
be1cece6 | 30-Sep-2004 |
Daniel Stenberg |
- Larry Campbell added CURLINFO_OS_ERRNO to curl_easy_getinfo() that allows an app to retrieve the errno variable after a (connect) failure. It will make sense to provide this for more fa
- Larry Campbell added CURLINFO_OS_ERRNO to curl_easy_getinfo() that allows an 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.
show more ...
|