aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-04-147.20.1: 14 April 2010Daniel Stenberg
2010-04-13Use correct directory for c-ares git pullGuenter Knauf
Signed-off-by: Tor Arntsen <tor@spacetec.no>
2010-04-13fix compiler warning: variable might be clobbered by longjmp or vforkYang Tse
2010-04-13added last git commit output for c-ares too.Guenter Knauf
2010-04-13changed the git update block to take care of c-ares repo if detected.Guenter Knauf
2010-04-12updated timestamp of the script.Guenter Knauf
2010-04-12removed obsolete var in gitpull() functionGuenter Knauf
no need to create a var - lets just return the status var itself.
2010-04-12added a cast to silent compiler warning with 64bit systems.Guenter Knauf
2010-04-12fixed a path typo in src/Makefile.netware.Guenter Knauf
2010-04-12Added text for How To Make a Patch with gitDaniel Stenberg
2010-04-12update the section on timeoutsDaniel Stenberg
The section that describes how to work with timeouts was misleading and could easily trick users to use the wrong API.
2010-04-12update URL and cut out wrong info on ipv6Daniel Stenberg
c-ares has had its own URL for a while and we should point people to that. It also works with IPv6 since a long time.
2010-04-12refer to CURLMOPT_TIMERFUNCTION for multi_socket usersDaniel Stenberg
curl_multi_timeout(3) is simply the wrong function to use if you're using the multi_socket API and this document now states this pretty clearly to help guiding users.
2010-04-11s/CVS/gitDaniel Stenberg
2010-04-11modified to use the git file, not cvsDaniel Stenberg
I've done this blindly, and the last piece that works with ares should possibly be done differently now that c-ares isn't a subtree within the curl tree anymore...
2010-04-10mention missing test servers for <server>Daniel Stenberg
2010-04-09FTP quote commands prefixed with '*' now can fail without abortingDaniel Stenberg
Prefixing the FTP quote commands with an asterisk really only worked for the postquote actions. This is now fixed and test case 227 has been extended to verify.
2010-04-07qssl: reflect recent code changes in SSL interfaceKamil Dudka
Reported by Guenter Knauf.
2010-04-06nss: handle client certificate related errorsKamil Dudka
2010-04-06ssl: Fix build when SSL isn't enabledBen Greear
Signed-off-by: Ben Greear <greearb@candelatech.com>
2010-04-04refactorize interface of Curl_ssl_recv/Curl_ssl_sendKamil Dudka
2010-04-04simplify code of Curl_resolv_timeout()Kamil Dudka
2010-04-04eliminate a race condition in Curl_resolv_timeout()Kamil Dudka
2010-04-02fixed compiler warningsBen Greear
2010-04-02updated contributor countDaniel Stenberg
2010-04-02add contributors from the 7.20.0 release notesDaniel Stenberg
2010-04-01fix SFTP download hangDaniel Stenberg
Matt Wixson found and fixed a bug in the SCP/SFTP area where the code treated a 0 return code from libssh2 to be the same as EAGAIN while in reality it isn't. The problem caused a hang in SFTP transfers from a MessageWay server.
2010-03-31Fixed misleading test messageDan Fandrich
2010-03-31update the generic copyright year rangeDaniel Stenberg
2010-03-31removed README.cmake due to the improved situationDaniel Stenberg
2010-03-31fix compiler warning with a cast.Guenter Knauf
2010-03-31make folks use latest available dependent libraries.Guenter Knauf
2010-03-30Call curl_global_cleanup() in test 560 to avoid a memory leakDan Fandrich
2010-03-30Allow test 538 to run even when proxy support is disabledDan Fandrich
2010-03-29use (s)size_t for string lengths to fix compiler warnsDaniel Stenberg
2010-03-29use size_t to hold string lengthDaniel Stenberg
using int is not fine on 64bit systems
2010-03-29Fix compile warnings in ssh.cBen Greear
strlen() returns size_t, but ssh libraries are wanting 'unsigned int'. Add explicit casts and use _ex versions of the ssh library calls. Signed-off-by: Ben Greear <greearb@candelatech.com>
2010-03-29fix smtp compile warningBen Greear
Use ssize_t instead of int for the Curl_smtp_escape_eob nread argument. Signed-off-by: Ben Greear <greearb@candelatech.com>
2010-03-28Ben's POP3 changeDaniel Stenberg
2010-03-28pop3: Get message listing if no mailbox in URLBen Greear
If you pass a URL to pop3 that does not contain a message ID as part of the URL, it will currently ask for 'INBOX' which just causes the pop3 server to return an error. The change makes libcurl treat en empty message ID as a request for LIST (list of pop3 message IDs). User's code could then parse this and download individual messages as desired.
2010-03-28Allow running ./tests/testcurl.pl from within git repo.Ben Greear
My first instinct was to run the test script within the checked out repository. This small change to the script allows that to work as expected. Signed-off-by: Ben Greear <greearb@candelatech.com>
2010-03-27minor language fixDaniel Stenberg
2010-03-27allow user+password in the URL for all protocolsBen Greear
Ben Greear brought a patch that from now on allows all protocols to specify name and user within the URL, in the same manner HTTP and FTP have been allowed to in the past - although far from all of the libcurl supported protocols actually have that feature in their URL definition spec.
2010-03-27ignore pid files and stunnel.confDaniel Stenberg
all used while running tests
2010-03-27make sure git pull is actually done!Daniel Stenberg
2010-03-26changelogged: smoother rate limitingDaniel Stenberg
2010-03-26Make rate-limitation logic smootherBen Greear
This gives a smoother rate limitation performance by using sub-second pauses and also taking the buffer sizes into account.
2010-03-25remove all .cvsignore filesDaniel Stenberg
2010-03-25PROT_CLOSEACTION should not include TFTPDaniel Stenberg
TFTP is not a protocol that uses close actions so it should not be set in that bitmask!
2010-03-25Avoid double newline for the 'last commits' log in testcurl.plTor Arntsen
The backtick command which extracts 'git log' lines come with a newline, so chomp the newline before calling logit(), as the logit function adds a newline by itself.