Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-07-12 | Fixed some compile warnings and errors and improved portability in the | Dan Fandrich | |
examples. Removed ftp3rdparty.c since libcurl doesn't support 3rd party FTP transfers any longer. | |||
2007-07-12 | make it compile fine | Daniel Stenberg | |
2007-07-12 | fix include path | Daniel Stenberg | |
2007-07-12 | Compile most of the example apps in docs/examples when doing a 'make check'. | Dan Fandrich | |
2007-07-11 | Added the first libcurl version to which the SSH options were added. | Dan Fandrich | |
2007-07-06 | add note about windows and dlls with CURLOPT_WRITEDATA | Daniel Stenberg | |
2007-07-02 | contributors from the 7.16.3 release notes | Daniel Stenberg | |
2007-07-02 | Fix problem with the indenting noticed by Pavel | James Housley | |
2007-07-01 | mention the old name | Daniel Stenberg | |
2007-07-01 | Thomas J. Moore provided a patch that introduces Kerberos5 support in | Daniel 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-01 | updated NetWare docu. | Gunter Knauf | |
2007-06-27 | James Bursa's improvement | Daniel Stenberg | |
2007-06-27 | fix little flaw that could make the transfer loop end prematurely | Daniel Stenberg | |
2007-06-27 | Add two new options for the SFTP/SCP/FILE protocols: CURLOPT_NEW_FILE_PERMS | James 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-26 | add an FTP rename example to 3.7 | Daniel Stenberg | |
2007-06-18 | 44. --ftp-method nocwd does not handle URLs ending with a slash properly (it | Daniel Stenberg | |
should list the contents of that directory). See test case 351. | |||
2007-06-18 | Daniel Johnson reported the tests now run fine on OS X! | Daniel Stenberg | |
2007-06-13 | Update documentation to reflect SFTP's ability to create directories on | James Housley | |
upload. Some text provieded by Tom Regner | |||
2007-06-11 | Daniel Black's clarfication about the NTLM support | Daniel Stenberg | |
2007-06-07 | bug #1720605, There seems to be a problem when connecting to the Microsoft ↵ | Daniel Stenberg | |
telnet server | |||
2007-05-30 | Added CURLMOPT_MAXCONNECTS which is a curl_multi_setopt() option for setting | Daniel Stenberg | |
the maximum size of the connection cache maximum size of the multi handle. | |||
2007-05-26 | Clarify a bit about the fact that easy handles remain in the multi stack when | Daniel Stenberg | |
transfers are done and need to be removed and closed or re-added. | |||
2007-05-26 | make it a WARNING since this hits people hard in their faces | Daniel Stenberg | |
2007-05-25 | Rob Crittenden fixed bug #1705802 | Daniel 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-25 | updated | Daniel Stenberg | |
2007-05-23 | TFTP transfers are also blocking | Daniel Stenberg | |
2007-05-23 | fix the formatting of the trailing list | Daniel Stenberg | |
2007-05-17 | Added support for compiling under Minix 3.1.3 using ACK. | Dan Fandrich | |
2007-05-15 | Added support for quote commands before a transfer using SFTP and test | Dan Fandrich | |
case 614. Allow SFTP quote commands chmod, chown, chgrp to set a value of 0. | |||
2007-05-14 | Added SFTP directory listing test case 613. | Dan Fandrich | |
2007-05-09 | Added the list of SFTP post-quote commands, and fixed a few typos. | Dan Fandrich | |
2007-05-08 | CURLE_FTP_COULDNT_STOR_FILE is now known as CURLE_UPLOAD_FAILED. This is | Daniel 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-03 | 42. Daniel Black filed bug report #1705802 where he accurately mentions that | Daniel 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-03 | Fixed a few typos. | Dan Fandrich | |
2007-05-03 | document the new 200alias behaviour | Daniel Stenberg | |
2007-05-02 | - Jeff Pohlmeyer improved the hiperfifo.c example to use the | Daniel Stenberg | |
CURLMOPT_TIMERFUNCTION callback option. | |||
2007-04-22 | - Song Ma's warning if -r/--range is given with a "bad" range, also noted in | Daniel Stenberg | |
the man page now. | |||
2007-04-22 | clarify a bit on the follow-redirect logic and when curl switches from POST | Daniel Stenberg | |
to GET on redirect | |||
2007-04-16 | - Robert Iakobashvil added curl_multi_socket_action() to libcurl, which is a | Daniel 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-11 | add recent contributors | Daniel Stenberg | |
2007-04-10 | blah | Daniel Stenberg | |
2007-04-10 | 41. When doing an operation over FTP that requires the ACCT command (but not | Daniel 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-04 | Building Windows DLLs and C run-time (CRT) linkage issues | Yang Tse | |
2007-03-31 | add units to a few info | Daniel Stenberg | |
2007-03-31 | new URL for wxWidgets binding | Daniel Stenberg | |
2007-03-29 | Added a libssh2 section. | Dan Fandrich | |
2007-03-29 | Show an absolute sftp: file path to give an additional example. | Dan Fandrich | |
2007-03-25 | Added the How to get your patches into the libcurl sources instruction posted | Daniel Stenberg | |
recently | |||
2007-03-25 | addressed (replied to with comments) most out-stading release issues and moved | Daniel Stenberg | |
one over to KNOWN_BUGS | |||
2007-03-23 | Added --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. |