Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-12 | refer to CURLMOPT_TIMERFUNCTION for multi_socket users | Daniel 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-11 | s/CVS/git | Daniel Stenberg | |
2010-04-11 | modified to use the git file, not cvs | Daniel 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-10 | mention missing test servers for <server> | Daniel Stenberg | |
2010-04-09 | FTP quote commands prefixed with '*' now can fail without aborting | Daniel 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-07 | qssl: reflect recent code changes in SSL interface | Kamil Dudka | |
Reported by Guenter Knauf. | |||
2010-04-06 | nss: handle client certificate related errors | Kamil Dudka | |
2010-04-06 | ssl: Fix build when SSL isn't enabled | Ben Greear | |
Signed-off-by: Ben Greear <greearb@candelatech.com> | |||
2010-04-04 | refactorize interface of Curl_ssl_recv/Curl_ssl_send | Kamil Dudka | |
2010-04-04 | simplify code of Curl_resolv_timeout() | Kamil Dudka | |
2010-04-04 | eliminate a race condition in Curl_resolv_timeout() | Kamil Dudka | |
2010-04-02 | fixed compiler warnings | Ben Greear | |
2010-04-02 | updated contributor count | Daniel Stenberg | |
2010-04-02 | add contributors from the 7.20.0 release notes | Daniel Stenberg | |
2010-04-01 | fix SFTP download hang | Daniel 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-31 | Fixed misleading test message | Dan Fandrich | |
2010-03-31 | update the generic copyright year range | Daniel Stenberg | |
2010-03-31 | removed README.cmake due to the improved situation | Daniel Stenberg | |
2010-03-31 | fix compiler warning with a cast. | Guenter Knauf | |
2010-03-31 | make folks use latest available dependent libraries. | Guenter Knauf | |
2010-03-30 | Call curl_global_cleanup() in test 560 to avoid a memory leak | Dan Fandrich | |
2010-03-30 | Allow test 538 to run even when proxy support is disabled | Dan Fandrich | |
2010-03-29 | use (s)size_t for string lengths to fix compiler warns | Daniel Stenberg | |
2010-03-29 | use size_t to hold string length | Daniel Stenberg | |
using int is not fine on 64bit systems | |||
2010-03-29 | Fix compile warnings in ssh.c | Ben 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-29 | fix smtp compile warning | Ben 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-28 | Ben's POP3 change | Daniel Stenberg | |
2010-03-28 | pop3: Get message listing if no mailbox in URL | Ben 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-28 | Allow 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-27 | minor language fix | Daniel Stenberg | |
2010-03-27 | allow user+password in the URL for all protocols | Ben 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-27 | ignore pid files and stunnel.conf | Daniel Stenberg | |
all used while running tests | |||
2010-03-27 | make sure git pull is actually done! | Daniel Stenberg | |
2010-03-26 | changelogged: smoother rate limiting | Daniel Stenberg | |
2010-03-26 | Make rate-limitation logic smoother | Ben Greear | |
This gives a smoother rate limitation performance by using sub-second pauses and also taking the buffer sizes into account. | |||
2010-03-25 | remove all .cvsignore files | Daniel Stenberg | |
2010-03-25 | PROT_CLOSEACTION should not include TFTP | Daniel Stenberg | |
TFTP is not a protocol that uses close actions so it should not be set in that bitmask! | |||
2010-03-25 | Avoid double newline for the 'last commits' log in testcurl.pl | Tor 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. | |||
2010-03-25 | Change to version-independent git option for 'git log --oneline' | Tor Arntsen | |
'git log --oneline' is a relatively recent Git function. It is documented to be the same as 'git log --pretty=oneline --abbrev-commit', so use that instead. It works all the way back to Git 1.5.0. | |||
2010-03-25 | show 5 commits even if no git pull was made | Daniel Stenberg | |
2010-03-25 | don't touch ares/aclocal.m4 and show recent git commits | Daniel Stenberg | |
since c-ares no longer embedded, we must not touch such files anymore we show the 5 last git commits if git was proven in use, to help us see exactly what's being tested | |||
2010-03-25 | use CURL_SIZEOF_LONG instead of SIZEOF_LONG | Daniel Stenberg | |
That's the symbol we have or generate in include/curl/curlbuild.h | |||
2010-03-25 | s/CVS/DEV in the version string from the git repo | Daniel Stenberg | |
2010-03-24 | Merge branch 'master' of github.com:bagder/curl | Bill Hoffman | |
2010-03-24 | Add .gitattributes files to turn off CRLF translation for some files | Bill Hoffman | |
2010-03-24 | provide a version number as today's date | Daniel Stenberg | |
It should at least help visualize which autobuilds that are using this script. | |||
2010-03-24 | testcurl now uses git instead of CVS | Daniel Stenberg | |
2010-03-24 | Merge branch 'master' of github.com:bagder/curl | Bill Hoffman | |
2010-03-24 | Enable LDAP by default since it is now disabled when ldap.h is not found, | Bill Hoffman | |
2010-03-24 | CMake fixes for Linux. | Bill Hoffman | |
Make sure <sys/socket.h> is included if around when testing/using socklen_t. Also, disable LDAP if LDAP_H is not found on the system. |