Daniel Stenberg
6062a1bd68
include multi.h too
2002-03-19 10:35:02 +00:00
Daniel Stenberg
8d94688fd1
moved here from ../../lib/
2002-03-19 10:34:34 +00:00
Daniel Stenberg
6b4532b592
moved to ../include/curl/
2002-03-19 10:34:06 +00:00
Daniel Stenberg
286fb6f645
added the multi functions man pages
2002-03-19 10:19:56 +00:00
Daniel Stenberg
340caf5da3
multi interface overview and description
2002-03-19 10:16:12 +00:00
Daniel Stenberg
171c4fd49f
removed text that really belongs to very old libcurls that are no longer
...
being used widely
2002-03-19 09:41:06 +00:00
Daniel Stenberg
b8a0fb1dfe
point out that this describes the easy interface and also make a more
...
general statement about language bindings
2002-03-19 09:31:05 +00:00
Daniel Stenberg
e65993bccb
language
2002-03-19 09:08:57 +00:00
Daniel Stenberg
7ffb4660ec
added some text about PASV and PORT and stuff
2002-03-19 08:55:05 +00:00
Daniel Stenberg
974f314f57
copyright string (year) update
2002-03-19 07:54:55 +00:00
Daniel Stenberg
4cec22fa19
yaketiyak
2002-03-19 07:48:54 +00:00
Daniel Stenberg
069477d35c
automake -a for the depcomp
2002-03-19 07:48:33 +00:00
Daniel Stenberg
eaff1a344e
made it pass stricter compiler flags with less warnings
2002-03-19 07:32:35 +00:00
Daniel Stenberg
1fe1e39a88
test 32, try -d and -G
2002-03-18 22:26:22 +00:00
Daniel Stenberg
33b06f56f0
reverted 1.109, we can't set the request type when -d is used, as -G can be
...
used and it makes it a GET...
2002-03-18 22:21:16 +00:00
Daniel Stenberg
61a84abe2a
WRITEFUNCTION correction
2002-03-18 08:53:21 +00:00
Daniel Stenberg
3d03100079
Andreas Damm added thanks to his getdate overhaul
2002-03-18 08:52:46 +00:00
Daniel Stenberg
5297a52bf0
gopher
2002-03-18 08:52:15 +00:00
Daniel Stenberg
88631276e8
updated
2002-03-18 07:40:00 +00:00
Daniel Stenberg
2c0d9ad64c
clarified that it is only the + letter that isn't converted on the right
...
side of a ? letter
2002-03-17 08:28:51 +00:00
Daniel Stenberg
5c691ed835
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.
2002-03-16 16:59:47 +00:00
Daniel Stenberg
f73864a045
corrected SSL builds
2002-03-15 14:46:59 +00:00
Daniel Stenberg
94da04fcac
headers and security blurb added
2002-03-15 13:25:15 +00:00
Daniel Stenberg
5f758fbd11
make sure we return CURLE_WRITE_ERROR if the write callback returned
...
an error, even if we were decoding a chunked-encoded transfer
2002-03-15 12:42:41 +00:00
Daniel Stenberg
fb29529a52
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
2002-03-15 09:54:30 +00:00
Daniel Stenberg
3cd2673077
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().
2002-03-15 08:45:09 +00:00
Daniel Stenberg
d242214e18
new example for libcurl 7.9.6 or later
2002-03-14 14:53:00 +00:00
Daniel Stenberg
468b787272
if CURLOPT_POSTFIELDS isn't set, but CURLOPT_POST is, we will assume that
...
we should read the POST-data from the read callback
2002-03-14 14:39:23 +00:00
Daniel Stenberg
cfdb6f851c
2002
2002-03-14 14:37:41 +00:00
Daniel Stenberg
7886f120f3
CURLOPT_POST deserved a new comment with the new POST-by-callback support
2002-03-14 14:37:16 +00:00
Daniel Stenberg
76fe69b133
no longer attempts to SIZE a NULL pointer, as that wasn't very clever
...
(but didn't crash or anything)
2002-03-13 13:13:19 +00:00
Daniel Stenberg
e1bae4fc7e
Setting CURLOPT_PASSWDFUNCTION to NULL now restores the internal function.
2002-03-13 13:10:52 +00:00
Daniel Stenberg
bc9705f758
sendf() now deals with Curl_write() returning -1 properly, which it might
...
do if the write would've blocked
2002-03-13 13:09:37 +00:00
Daniel Stenberg
c819e234b8
now supports all options in arrays, except the CURLFORM_ARRAY itself
2002-03-13 12:10:20 +00:00
Daniel Stenberg
ce021b79a7
CURLFORM_ARRAYSTART and ARRAYEND are now history
2002-03-13 12:09:52 +00:00
Daniel Stenberg
805a2f6f99
removed some silly CRLF lines
2002-03-13 09:20:59 +00:00
Daniel Stenberg
eb78400b53
4 things since 7.9.5
2002-03-11 15:37:08 +00:00
Daniel Stenberg
4852f9ffbd
added test 39, tests the new -F features
2002-03-11 15:31:06 +00:00
Daniel Stenberg
c8d2ad2513
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.
2002-03-11 15:20:56 +00:00
Daniel Stenberg
9f374c2050
Added support for CURLFORM_FILENAME to set the filename field of a file
...
part.
2002-03-11 15:18:59 +00:00
Daniel Stenberg
5799852424
CURLFORM_FILENAME added and some cleanups, HttpPost is now curl_httppost
...
with a #define to preserve backwards compatibiltiy
2002-03-11 15:14:09 +00:00
Daniel Stenberg
6417fa95cf
corrected the use of the progress function
2002-03-11 15:00:57 +00:00
Daniel Stenberg
61f6284a35
minor edit
2002-03-11 08:39:00 +00:00
Daniel Stenberg
6b1a1a62a3
3.13 Why does my single/double quotes fail?
2002-03-11 08:29:26 +00:00
Daniel Stenberg
feacb4b481
completed the progress-bar fix
2002-03-08 16:12:00 +00:00
Daniel Stenberg
fe3c874001
detect fclose(NULL)
2002-03-08 15:31:44 +00:00
Daniel Stenberg
d9459b54d9
better treatment of the config->errors, only fclose() this if it was
...
truly fopen()ed. It could end up fclose()ing a NULL as discovered by
Clifford Wolf.
2002-03-08 15:18:03 +00:00
Daniel Stenberg
017be8a882
Jean-Philippe Barrette-LaPierre fixed the CURLOPT_PASSWDFUNCTION to make
...
NULL set back the internal default function
2002-03-08 15:06:42 +00:00
Daniel Stenberg
b86e543a13
closes bug report #527032 , --progress-bar works again and it adds a newline
...
after the transfer is done properly
2002-03-08 12:05:57 +00:00
Daniel Stenberg
c2d4fd876c
7.9.5 commit
2002-03-07 08:50:18 +00:00