aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2007-08-06Peteris Krumins pointed out that MingW32 doesnt provide a batch file to set ↵Gunter Knauf
the path to the bin folder.
2007-08-06ontributors from the 7.16.4 release notes and a removed duplicateDaniel Stenberg
2007-08-06removed the rsaglue hint since it doesn't apply to modern OpenSSL, and addedDaniel Stenberg
some brief hints about gssapi and libssh2
2007-08-06we now support GSS/Kerberos 5 for ftp file transfers!Daniel Stenberg
2007-08-03Peteris Krumins pointed out some MingW32 related build issues.Gunter Knauf
2007-08-02clarify that setting POSTFIELDS to NULL or "" is not enough to make a zero byteDaniel Stenberg
POST
2007-08-01Patrick Monnerat and I modified libcurl so that now it *copies* all stringsDaniel Stenberg
passed to it with curl_easy_setopt()! Previously it has always just refered to the data, forcing the user to keep the data around until libcurl is done with it. That is now history and libcurl will instead clone the given strings and keep private copies.
2007-07-30users should use the CURLMOPT_TIMERFUNCTION rather than curl_multi_timeoutDaniel Stenberg
when using the socket API
2007-07-30less blocking these daysDaniel Stenberg
2007-07-30updated based on suggestion from Jeff PohlmeyerDaniel Stenberg
2007-07-29Added "4.15 FTPS doesn't work" and updated a few other sections slightlyDaniel Stenberg
2007-07-20Document pwd as an sftp quote command for curl(1), and show it asDan Fandrich
lower case for consistency since sftp commands are case insensitive.
2007-07-19minor addition, re-count of the number of lines of codeDaniel Stenberg
2007-07-18SFTP also supports PWDJames Housley
2007-07-18Added the list of sftp quote commands.Dan Fandrich
2007-07-16Fixed some more simple compile warnings in the examples.Dan Fandrich
2007-07-1645. libcurl built to support ipv6 uses getaddrinfo() to resolve host names.Daniel Stenberg
getaddrinfo() sorts the response list which effectively kills how libcurl deals with round-robin DNS entries. All details: http://curl.haxx.se/mail/lib-2007-07/0168.html initial suggested function to use for randomizing the response: http://curl.haxx.se/mail/lib-2007-07/0178.html
2007-07-13The examples don't need access to curl internal source files.Dan Fandrich
2007-07-13Daniel Cater added the mentioning of CURL_DISABLE_TFTPDaniel Stenberg
2007-07-13Daniel Cater: libcurl-errors needs updating to reflect a couple of deprecatedDaniel Stenberg
error codes
2007-07-12Fixed some compile warnings and errors and improved portability in theDan Fandrich
examples. Removed ftp3rdparty.c since libcurl doesn't support 3rd party FTP transfers any longer.
2007-07-12make it compile fineDaniel Stenberg
2007-07-12fix include pathDaniel Stenberg
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