2c0d9ad6 | 17-Mar-2002 |
Daniel Stenberg |
clarified that it is only the + letter that isn't converted on the right side of a ? letter |
5c691ed8 | 16-Mar-2002 |
Daniel Stenberg |
verbose PASV transfers passed a bad buffer size to the name resolver functions and it cause cause a crash. Albert Choy found and fixed it. |
f73864a0 | 15-Mar-2002 |
Daniel Stenberg |
corrected SSL builds |
94da04fc | 15-Mar-2002 |
Daniel Stenberg |
headers and security blurb added |
5f758fbd | 15-Mar-2002 |
Daniel Stenberg |
make sure we return CURLE_WRITE_ERROR if the write callback returned an error, even if we were decoding a chunked-encoded transfer |
fb29529a | 15-Mar-2002 |
Daniel Stenberg |
Jun-ichiro itojun Hagino <itojun@itojun.org>: Now first check if IPv6 is supported, then use PF_UNSPEC. If not, use PF_INET. It'll solve both the "slow name lookup" problem on IPv4 and s
Jun-ichiro itojun Hagino <itojun@itojun.org>: Now first check if IPv6 is supported, then use PF_UNSPEC. If not, use PF_INET. It'll solve both the "slow name lookup" problem on IPv4 and still work fine on IPv6 hosts. Bug report #530204 has more details: http://sourceforge.net/tracker/?func=detail&atid=100976&aid=530204&group_id=976
show more ...
|
3cd26730 | 15-Mar-2002 |
Daniel Stenberg |
bug report #530204 correctly identified that revision 1.52 broke ipv6 functionality and this change reverts this. However, with this revert we bring back problems on (some/all?) non-IPv6
bug report #530204 correctly identified that revision 1.52 broke ipv6 functionality and this change reverts this. However, with this revert we bring back problems on (some/all?) non-IPv6 enabled Linux machines that have getaddrinfo().
show more ...
|
d242214e | 14-Mar-2002 |
Daniel Stenberg |
new example for libcurl 7.9.6 or later |
468b7872 | 14-Mar-2002 |
Daniel Stenberg |
if CURLOPT_POSTFIELDS isn't set, but CURLOPT_POST is, we will assume that we should read the POST-data from the read callback |
cfdb6f85 | 14-Mar-2002 |
Daniel Stenberg |
2002 |
7886f120 | 14-Mar-2002 |
Daniel Stenberg |
CURLOPT_POST deserved a new comment with the new POST-by-callback support |
76fe69b1 | 13-Mar-2002 |
Daniel Stenberg |
no longer attempts to SIZE a NULL pointer, as that wasn't very clever (but didn't crash or anything) |
e1bae4fc | 13-Mar-2002 |
Daniel Stenberg |
Setting CURLOPT_PASSWDFUNCTION to NULL now restores the internal function. |
bc9705f7 | 13-Mar-2002 |
Daniel Stenberg |
sendf() now deals with Curl_write() returning -1 properly, which it might do if the write would've blocked |
c819e234 | 13-Mar-2002 |
Daniel Stenberg |
now supports all options in arrays, except the CURLFORM_ARRAY itself |
ce021b79 | 13-Mar-2002 |
Daniel Stenberg |
CURLFORM_ARRAYSTART and ARRAYEND are now history |
805a2f6f | 13-Mar-2002 |
Daniel Stenberg |
removed some silly CRLF lines |
eb78400b | 11-Mar-2002 |
Daniel Stenberg |
4 things since 7.9.5 |
4852f9ff | 11-Mar-2002 |
Daniel Stenberg |
added test 39, tests the new -F features |
c8d2ad25 | 11-Mar-2002 |
Daniel Stenberg |
now -F supports 'filename=blabla' for parts that upload a file, to set the filename field of that part. A typical example line could look like: -F 'name=@filename;filename=/dev/null'
now -F supports 'filename=blabla' for parts that upload a file, to set the filename field of that part. A typical example line could look like: -F 'name=@filename;filename=/dev/null' This can be combined with type= too, in a manner similar to: -F "file=@log/test39.txt;filename=fakerfile;type=moo/foobar" Enjoy.
show more ...
|
9f374c20 | 11-Mar-2002 |
Daniel Stenberg |
Added support for CURLFORM_FILENAME to set the filename field of a file part. |
57998524 | 11-Mar-2002 |
Daniel Stenberg |
CURLFORM_FILENAME added and some cleanups, HttpPost is now curl_httppost with a #define to preserve backwards compatibiltiy |
6417fa95 | 11-Mar-2002 |
Daniel Stenberg |
corrected the use of the progress function |
61f6284a | 11-Mar-2002 |
Daniel Stenberg |
minor edit |
6b1a1a62 | 11-Mar-2002 |
Daniel Stenberg |
3.13 Why does my single/double quotes fail? |