Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-16 | resolvers: no more using AI_CANONNAME | Daniel Stenberg | |
No resolver anymore needs to use AI_CANONNAME and do reverse lookups. We should work hard to avoid having code that relies on it. | |||
2010-04-16 | KRB5: use given host name instead of reverse lookup'ed name | Daniel Stenberg | |
This code would previously use dns_entry->addr->ai_canonname instead of the given host name, which caused us grief and problems since not all our resolver options do the reverse lookup and I would also guess that it caused problems with KRB5/GSS with virtual name-based hosts. Now the host name from the URL is used. | |||
2010-04-15 | Remove redundant conditional | Dan Fandrich | |
2010-04-15 | Eliminated an unlikely race condition in some tests. | Dan Fandrich | |
Based on a patch from the FreeBSD ports by Peter Pentchev. | |||
2010-04-15 | changelog: prevent needless reverse name lookups | Daniel Stenberg | |
2010-04-15 | Curl_ipv4_resolve_r: only set AI_CANONNAME when needed | Daniel Stenberg | |
As reported in bug report #2987196, the code for ipv6 already did the setting of this bit correctly so we copied that logic into the Curl_ipv4_resolve_r() function as well. KRB code is the only code we know that might need the cannonical name so only resolve it for such requests! | |||
2010-04-14 | IGNORE: files generated by maketgz | Daniel Stenberg | |
2010-04-14 | bumped to start the journey towards 7.20.2 | Daniel Stenberg | |
2010-04-14 | added contributors from the 7.20.1 RELEASE-NOTES | Daniel Stenberg | |
2010-04-14 | ignore files generated by 'maketgz' | Daniel Stenberg | |
2010-04-14 | 7.20.1: 14 April 2010 | Daniel Stenberg | |
2010-04-13 | Use correct directory for c-ares git pull | Guenter Knauf | |
Signed-off-by: Tor Arntsen <tor@spacetec.no> | |||
2010-04-13 | fix compiler warning: variable might be clobbered by longjmp or vfork | Yang Tse | |
2010-04-13 | added last git commit output for c-ares too. | Guenter Knauf | |
2010-04-13 | changed the git update block to take care of c-ares repo if detected. | Guenter Knauf | |
2010-04-12 | updated timestamp of the script. | Guenter Knauf | |
2010-04-12 | removed obsolete var in gitpull() function | Guenter Knauf | |
no need to create a var - lets just return the status var itself. | |||
2010-04-12 | added a cast to silent compiler warning with 64bit systems. | Guenter Knauf | |
2010-04-12 | fixed a path typo in src/Makefile.netware. | Guenter Knauf | |
2010-04-12 | Added text for How To Make a Patch with git | Daniel Stenberg | |
2010-04-12 | update the section on timeouts | Daniel Stenberg | |
The section that describes how to work with timeouts was misleading and could easily trick users to use the wrong API. | |||
2010-04-12 | update URL and cut out wrong info on ipv6 | Daniel 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-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. |