aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-08-03Peteris Krumins pointed out that the standard MingW32 build depends on zlib; ↵Gunter Knauf
removed that, and added another option for zlib build, and renamed all other targets to reflect zlib dependency.
2007-08-03SCP and SFTP support now requires libssh2 0.16 or laterDaniel Stenberg
2007-08-03remove left-over partly support for libssh2 0.14Daniel Stenberg
2007-08-03The SSH code now only works with libssh2 0.16 or later. Thus we must notDaniel Stenberg
release the next curl until there is a libssh2 0.16 released.
2007-08-02Scott Cantor filed bug report #1766320Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=1766320) pointing out that the libcurl code accessed two curl_easy_setopt() options (CURLOPT_DNS_CACHE_TIMEOUT and CURLOPT_DNS_USE_GLOBAL_CACHE) as ints even though they're documented to be passed in as longs, and that makes a difference on 64 bit architectures.
2007-08-02Fixed a compiler warning.Dan Fandrich
2007-08-02Patrick Monnerat's cleanup fix after my alloc-strings commitDaniel Stenberg
2007-08-02Dmitriy Sergeyev reported a regression: resumed file:// transfers brokeDaniel Stenberg
after 7.16.2. This is much due to the different treatment file:// gets internally, but now I added test 231 to make it less likely to happen again without us noticing!
2007-08-02clarify that setting POSTFIELDS to NULL or "" is not enough to make a zero byteDaniel Stenberg
POST
2007-08-02argh, Greg Morse pointed out that the NTLM POST fix only worked if VERBOSEDaniel Stenberg
was set, this should make it work for all cases!
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-08-01Greg Morse reported a problem with POSTing using ANYAUTH to a server requiringDaniel Stenberg
NTLM, and he provided test code and a test server and we worked out a bug fix. We failed to count sent body data at times, which then caused internal confusions when libcurl tried to send the rest of the data in order to maintain the same connection alive. (and then I did some minor reformatting of code in lib/http.c)
2007-07-30AIX 4 and 5 get to use non-blocking socketsDaniel Stenberg
2007-07-30Peter O'Gorman pointed out (and fixed) that the non-blocking check inDaniel Stenberg
configure made libcurl use blocking sockets on AIX 4 and 5, while that wasn't the intention.
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-30Patrick Monnerat restored qssl successful compilation and loadingDaniel Stenberg
2007-07-30give credit to Greg ZavertnikDaniel Stenberg
2007-07-30Properly set USE_SSL on OS/400Dan Fandrich
2007-07-30Fixed compiler warning on non-SSL buildsDan Fandrich
2007-07-29Added "4.15 FTPS doesn't work" and updated a few other sections slightlyDaniel Stenberg
2007-07-29Bug report #1759542 (http://curl.haxx.se/bug/view.cgi?id=1759542). A bad useDaniel Stenberg
of a socket after it has been closed, when the FTP-SSL data connection is taken down.
2007-07-27added missing part for the qsossl supportDaniel Stenberg
2007-07-26added initial pkg-config file (attempt)Daniel Stenberg
2007-07-24Removed unused variable.Dan Fandrich
2007-07-23#if that should be #ifdefDaniel Stenberg
2007-07-23Implemented the parts of Patrick Monnerat's OS/400 patch that introducesDaniel Stenberg
support for the OS/400 Secure Sockets Layer library
2007-07-23Implemented only the parts of Patrick Monnerat's OS/400 patch that renamedDan Fandrich
some few internal identifiers to avoid conflicts, which could be useful on other platforms.
2007-07-23Log the "<CMD> wasn't handled" error normally since it is now expectedDan Fandrich
to occur in a couple of tests.
2007-07-23added 2 system libs necessary for linking OpenSSL 0.9.8e statically.Gunter Knauf
2007-07-22fix mess added in my previous commitDaniel Stenberg
2007-07-22HTTP Digest auth fix on a re-used connectionDaniel Stenberg
2007-07-22Added test case 354 that makes a simple FTP retrieval without password, whichDaniel Stenberg
verifies the bug fix in #1757328.
2007-07-21test and verify curl -I on a single FTP file somewhat more than beforeDaniel Stenberg
2007-07-21To allow more flexibility in FTP test cases, I've removed the enforced statesDaniel Stenberg
from the test server code as they served no real purpose. The test server is here to serve for the test cases, not to attempt to function as a real server!
2007-07-21newsDaniel Stenberg
2007-07-21Make the pointers of a few static const arrays const, too, for safety.Dan Fandrich
2007-07-20added curl include for debug builds.Gunter Knauf
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-20added lf to Win32 getpass_r() so that next output appears in new line.Gunter Knauf
2007-07-20PWD for SFTP is fixedDaniel Stenberg
2007-07-20the "libssh2 owns the memory don't free it" caseDaniel Stenberg
2007-07-20Ralf S. Engelschall filed bug report #1757328Daniel Stenberg
(http://curl.haxx.se/bug/view.cgi?id=1757328) and submitted a patch. It turns out we broke login to FTP servers that don't require (nor understand) PASS after the USER command
2007-07-20Fix a loop with PWDJames Housley
2007-07-20Made some const arrays static to avoid unnecessary stack usage.Dan Fandrich
2007-07-19minor addition, re-count of the number of lines of codeDaniel Stenberg
2007-07-19libssh2 fixDaniel Stenberg
2007-07-19Revert the 512 change since newer versions of OpenSSH don't support DSADan Fandrich
keys that small.
2007-07-18SFTP also supports PWDJames Housley