diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-03-16 13:05:39 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-03-16 13:05:39 +0000 |
commit | d538241a58f293b3510b301eff1acdc3c5ee41c2 (patch) | |
tree | 3d524c34d3b93fec44821a42a1b924a43ebdb83e /perl/Curl_easy/Changes | |
parent | 71b4b2ffa99dc6c9da49dc4cf88436ba63e318c1 (diff) |
Georg Horn's Curl::easy interface for perl
Diffstat (limited to 'perl/Curl_easy/Changes')
-rw-r--r-- | perl/Curl_easy/Changes | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/perl/Curl_easy/Changes b/perl/Curl_easy/Changes new file mode 100644 index 000000000..a38cc34a4 --- /dev/null +++ b/perl/Curl_easy/Changes @@ -0,0 +1,35 @@ +Revision history for Perl extension Curl::easy. +Check out the file README for more info. + +1.0.2 Tue Oct 10 2000: + - runs with libcurl 7.4 + - modified curl_easy_getinfo(). It now calls curl_getinfo() that has + been added to libcurl in version 7.4. + +1.0.1 Tue Oct 10 2000: + - Added some missing features of curl_easy_setopt(): + - CURLOPT_ERRORBUFFER now works by passing the name of a perl + variable that shall be crated and the errormessage (if any) + be stored to. + - Passing filehandles (Options FILE, INFILE and WRITEHEADER) now works. + Have a look at test.pl to see how it works... + + - Added a new function, curl_easy_getinfo(), that for now always + returns the number of bytes that where written to disk during the last + download. If the curl_easy_getinfo() function is included in libcurl, + (as promised by Daniel ;-)) i will turn this into just a call to this + function. + +1.0 Thu Oct 5 2000: + - first released version + - runs with libcurl 7.3 + - some features of curl_easy_setopt() are still missing: + - passing function pointers doesn't work (options WRITEFUNCTION, + READFUNCTION and PROGRESSFUNCTION). + - passing FILE * pointers doesn't work (options FILE, INFILE and + WRITEHEADER). + - passing linked lists doesn't work (options HTTPHEADER and + HTTPPOST). + - setting the buffer where to store error messages in doesn't work + (option ERRORBUFFER). + |