aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2007-07-12Compile most of the example apps in docs/examples when doing a 'make check'.Dan Fandrich
2007-07-11Added the first libcurl version to which the SSH options were added.Dan Fandrich
2007-07-06add note about windows and dlls with CURLOPT_WRITEDATADaniel Stenberg
2007-07-02contributors from the 7.16.3 release notesDaniel Stenberg
2007-07-02Fix problem with the indenting noticed by PavelJames Housley
2007-07-01mention the old nameDaniel Stenberg
2007-07-01Thomas J. Moore provided a patch that introduces Kerberos5 support inDaniel Stenberg
libcurl. This also makes the options change name to --krb (from --krb4) and CURLOPT_KRBLEVEL (from CURLOPT_KRB4LEVEL) but the old names are still
2007-07-01updated NetWare docu.Gunter Knauf
2007-06-27James Bursa's improvementDaniel Stenberg
2007-06-27fix little flaw that could make the transfer loop end prematurelyDaniel Stenberg
2007-06-27Add two new options for the SFTP/SCP/FILE protocols: CURLOPT_NEW_FILE_PERMSJames Housley
and CURLOPT_NEW_DIRECTORY_PERMS. These control the premissions for files and directories created on the remote server. CURLOPT_NEW_FILE_PERMS defaults to 0644 and CURLOPT_NEW_DIRECTORY_PERMS defaults to 0755
2007-06-26add an FTP rename example to 3.7Daniel Stenberg
2007-06-1844. --ftp-method nocwd does not handle URLs ending with a slash properly (itDaniel Stenberg
should list the contents of that directory). See test case 351.
2007-06-18Daniel Johnson reported the tests now run fine on OS X!Daniel Stenberg
2007-06-13Update documentation to reflect SFTP's ability to create directories onJames Housley
upload. Some text provieded by Tom Regner
2007-06-11Daniel Black's clarfication about the NTLM supportDaniel Stenberg
2007-06-07bug #1720605, There seems to be a problem when connecting to the Microsoft ↵Daniel Stenberg
telnet server
2007-05-30Added CURLMOPT_MAXCONNECTS which is a curl_multi_setopt() option for settingDaniel Stenberg
the maximum size of the connection cache maximum size of the multi handle.
2007-05-26Clarify a bit about the fact that easy handles remain in the multi stack whenDaniel Stenberg
transfers are done and need to be removed and closed or re-added.
2007-05-26make it a WARNING since this hits people hard in their facesDaniel Stenberg
2007-05-25Rob Crittenden fixed bug #1705802Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=1705802), which was filed by Daniel Black identifying several FTP-SSL test cases fail when we build libcurl with NSS for TLS/SSL. Listed as #42 in KNOWN_BUGS.
2007-05-25updatedDaniel Stenberg
2007-05-23TFTP transfers are also blockingDaniel Stenberg
2007-05-23fix the formatting of the trailing listDaniel Stenberg
2007-05-17Added support for compiling under Minix 3.1.3 using ACK.Dan Fandrich
2007-05-15Added support for quote commands before a transfer using SFTP and testDan Fandrich
case 614. Allow SFTP quote commands chmod, chown, chgrp to set a value of 0.
2007-05-14Added SFTP directory listing test case 613.Dan Fandrich
2007-05-09Added the list of SFTP post-quote commands, and fixed a few typos.Dan Fandrich
2007-05-08CURLE_FTP_COULDNT_STOR_FILE is now known as CURLE_UPLOAD_FAILED. This isDaniel Stenberg
because I just made SCP uploads return this value if the file size of the upload file isn't given with CURLOPT_INFILESIZE*. Docs updated to reflect this news, and a define for the old name was added to the public header file.
2007-05-0342. Daniel Black filed bug report #1705802 where he accurately mentions thatDaniel Stenberg
several FTP-SSL test cases fail when we build libcurl with NSS for TLS/SSL: http://curl.haxx.se/bug/view.cgi?id=1705802
2007-05-03Fixed a few typos.Dan Fandrich
2007-05-03document the new 200alias behaviourDaniel Stenberg
2007-05-02- Jeff Pohlmeyer improved the hiperfifo.c example to use theDaniel Stenberg
CURLMOPT_TIMERFUNCTION callback option.
2007-04-22- Song Ma's warning if -r/--range is given with a "bad" range, also noted inDaniel Stenberg
the man page now.
2007-04-22clarify a bit on the follow-redirect logic and when curl switches from POSTDaniel Stenberg
to GET on redirect
2007-04-16- Robert Iakobashvil added curl_multi_socket_action() to libcurl, which is aDaniel Stenberg
function that deprecates the curl_multi_socket() function. Using the new function the application tell libcurl what action that was found in the socket that it passes in. This gives a significant performance boost as it allows libcurl to avoid a call to poll()/select() for every call to curl_multi_socket*().
2007-04-11add recent contributorsDaniel Stenberg
2007-04-10blahDaniel Stenberg
2007-04-1041. When doing an operation over FTP that requires the ACCT command (but notDaniel Stenberg
when logging in), the operation will fail since libcurl does detect this and thus fails to issue the correct command: http://curl.haxx.se/bug/view.cgi?id=1693337
2007-04-04Building Windows DLLs and C run-time (CRT) linkage issuesYang Tse
2007-03-31add units to a few infoDaniel Stenberg
2007-03-31new URL for wxWidgets bindingDaniel Stenberg
2007-03-29Added a libssh2 section.Dan Fandrich
2007-03-29Show an absolute sftp: file path to give an additional example.Dan Fandrich
2007-03-25Added the How to get your patches into the libcurl sources instruction postedDaniel Stenberg
recently
2007-03-25addressed (replied to with comments) most out-stading release issues and movedDaniel Stenberg
one over to KNOWN_BUGS
2007-03-23Added --pubkey option to curl and made --key also work for SCP/SFTP,Dan Fandrich
plus made --pass work on an SSH private key as well.
2007-03-22-z hasn't supported "yesterday" for quite some time...Daniel Stenberg
2007-03-17Added cvs id. Use TOPDIR variable. Updated CSOURCES.Gisle Vanem
Dependencies are now put in external file depend.dj.
2007-03-12RECV is for downloadDaniel Stenberg