cURL / Mailing Lists / curl-library / Single Mail

curl-library

Ann TclCurl 0.12.1

From: Andrés García <fandom_at_retemail.es>
Date: Fri, 1 Oct 2004 19:08:12 +0200

Hi,

 I have released the newest TclCurl for libcurl 7.12.1, the main changes
 since the last version are:

    * New features:

        * Third party ftp support, you can now transfer a file between
          two different ftp servers. Check the 'ftp options' in the docs
          page for details.

        * A new command for curl handles 'reset' which re-initializes all
          options previously set on a specified handle to the default values.

          This puts back the handle to the same state as it was in when it
          was just created with curl::init.

          It does not change the following information kept in the handle:
          live connections, the Session ID cache, the DNS cache, the cookies
          and shares.

        * Hooked the multi interface to Tcl's event loop, so you can have
          fire-and-forget transfers:

                set multiHandle [curl::multiinit]
                set easyHandle [curl::init]

                $easyHandle configure -file home.tar.gz \
                        -url http://127.0.0.1/~andres/HomePage.tar.gz

                $multiHandle addhandle $easyHandle
                $multiHandle auto -command "CleanUp $multiHandle $easyHandle"

          This support is experimental, so any comments are welcome.

          Thanks to Eric Boudaillier who answered my question about how to
          do it.

        * New ssl data types have been added to 'debugproc'.

        * In case of error when setting post data, the error will include a
          code about the nature of the error.

    * Bug fix:

        * The 'autoreferer' option should now work.

For more information, please visit:
http://personal1.iddeo.es/andresgarci/tclcurl/english/

Share the wonders,
Andres
Received on 2004-10-01