Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-04-26 | progress callback: can be called more than once per sec | Daniel Stenberg | |
2010-04-26 | SSH: init and cleanup libssh2 in global_init/cleanup | Daniel Stenberg | |
The necessary libssh2 functions require libssh2 1.2.5 or later. | |||
2010-04-25 | new configure option --enable-threaded-resolver | Daniel Stenberg | |
2010-04-25 | configure: check for libssh2_init and libssh2_exit | Daniel Stenberg | |
2010-04-24 | nss: fix SSL handshake timeout underflow | Kamil Dudka | |
2010-04-24 | encourage users to take latest lib dependencies. | Guenter Knauf | |
2010-04-24 | socks5: please static code analyzer | Daniel Stenberg | |
Make sure we don't call memcpy() if the argument is NULL even though we also passed a zero length then, as the clang analyzer whined and we want to limit warnings (even false positives) when they're this easy to fix. The change of (char) to (unsigned char) will fix long user names and passwords on systems that have the char type signed by default. | |||
2010-04-24 | gzip: Value stored to 'data' is never read | Daniel Stenberg | |
2010-04-24 | RELEASE-NOTES: update top numbers | Daniel Stenberg | |
2010-04-24 | changelog: added the --proto and -proto-redir options | Daniel Stenberg | |
2010-04-24 | curl: added --proto and --proto-redir | Alex Bligh | |
--proto tells curl to use the listed protocols for its initial retrieval --proto-redir tells curl to use the listed protocols after a redirect | |||
2010-04-24 | test536: do not fail with threaded DNS resolver | Kamil Dudka | |
Also tweaked comments in certain examples using curl_multi_fdset(). | |||
2010-04-21 | curl: -O crash on windows | Daniel Stenberg | |
The -O option caused curl to crash on windows and DOS due to the tool writing out of boundary memory. | |||
2010-04-20 | hmac.c related compilation adjustment | Yang Tse | |
2010-04-20 | hmac.c related compilation adjustment | Yang Tse | |
2010-04-20 | Add compilation directives for hmac in Watcom,riscos and vc6 ↵ | monnerat | |
platform-specific makefiles. | |||
2010-04-20 | replaced wsock32.lib usage with ws2_32.lib in MSVC makefiles | Ruslan Gazizov | |
2010-04-19 | Merge branch 'master' of github.com:bagder/curl | monnerat | |
2010-04-19 | Remove null-effect leftover code. | monnerat | |
2010-04-19 | changelog: -J/--remote-header-name strips CRLF | Daniel Stenberg | |
2010-04-19 | parse_filename: strip trailing CRs and LFs | Daniel Stenberg | |
The feature that uses the file name given in a Content-disposition: header didn't properly skip trailing carriage returns and linefeed characters from the end of the file name when it was given without quotes. | |||
2010-04-19 | Curl_HMAC_MD5: fix the array init to not warn with picky compilers | Daniel Stenberg | |
2010-04-19 | Fix GnuTLS compilation problem in md5.c | monnerat | |
2010-04-19 | Fix compilation problem: declare Curl_HMAC_MD5 as extern in include file. | monnerat | |
2010-04-19 | Merge branch 'master' of github.com:bagder/curl | monnerat | |
2010-04-19 | Implement SMTP authentication | monnerat | |
2010-04-17 | parseconfig: Value stored to 'line' is never read | Daniel Stenberg | |
Make the function call with (void) as we don't care about the return code. | |||
2010-04-17 | parsedate: Value stored to 'found' is never read | Daniel Stenberg | |
2010-04-17 | check_gzip_header: Value stored to 'data' is never read | Daniel Stenberg | |
2010-04-16 | dprintf_formatf: Value stored to 'left' is never read | Daniel Stenberg | |
2010-04-16 | curl_version: remove superfluous assignments | Daniel Stenberg | |
2010-04-16 | FTP PORT: Value stored to 'rc' is never read | Daniel Stenberg | |
2010-04-16 | Curl_setup_transfer: no longer returns anything | Daniel Stenberg | |
This function could only return CURLE_OK and by changing it to a void instead, we can simplify code all over. | |||
2010-04-16 | PASV response: Value stored to 'rc' is never read | Daniel Stenberg | |
2010-04-16 | Curl_perform: Value stored to 'res2' is never read | Daniel Stenberg | |
2010-04-16 | sftp range: remove unnecessary check for NULL pointer | Daniel Stenberg | |
2010-04-16 | ftp_range: remove unnecessary check for NULL pointer | Daniel Stenberg | |
2010-04-16 | file_range: remove unnecessary check for NULL pointer | Daniel Stenberg | |
2010-04-16 | SOCKS4: Value stored to 'rc' is never read | Daniel Stenberg | |
2010-04-16 | FTP PASV: Value stored to 'rc' is never read | Daniel Stenberg | |
2010-04-16 | ftp_range: Value stored to 'totalsize' is never read | Daniel Stenberg | |
Simplified the code by removing a local variable completely. | |||
2010-04-16 | SOCKS5: when name resolves fail return immediately | Daniel Stenberg | |
This makes the code flow more obvious and reacts on the return code properly, even if the code acted the same way before. | |||
2010-04-16 | POP3: when USER command fails, don't even try PASS | Daniel Stenberg | |
2010-04-16 | tftp_rx: Value stored to 'sbytes' is never read | Daniel Stenberg | |
2010-04-16 | file_range: Value stored to 'totalsize' is never read | Daniel Stenberg | |
2010-04-16 | changelog: GnuTLS: SSL handshake phase is non-blocking | Daniel Stenberg | |
2010-04-16 | GnuTLS: make the connection phase non-blocking | Jerome Vouillon | |
When multi interface is used, the SSL handshake is no longer blocking when GnuTLS is used. | |||
2010-04-16 | krb5_auth: fix my previous change to compile | Daniel Stenberg | |
2010-04-16 | OS400 version V5R2M0 not supported anymore by IBM: default target release ↵ | unknown | |
changed to V5R3M0. | |||
2010-04-16 | changelog: GnuTLS fix, no reverse loopkups and fixed GSS detection | Daniel Stenberg | |