Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-09-24 | Makefile.vc6: Follow up on 0c8ccf7 | Marc Hoersken | |
2012-09-23 | Makefile.vc6: Added missing default library advapi32.lib | Marc Hoersken | |
2012-09-19 | HTTP_ONLY: disable more protocols | Daniel Stenberg | |
2012-09-18 | test2006: Updated expected output to include hash name | Daniel Stenberg | |
Output changed in commit a34197ef77cb | |||
2012-09-17 | cmake: use standard findxxx modules for cmake v2.8+ | Sergei Nikulov | |
2012-09-17 | setup.h: fixed for MS VC10 build | Sergei Nikulov | |
Bug: http://curl.haxx.se/bug/view.cgi?id=3568327 | |||
2012-09-17 | TODO-RELEASE: push new features to 7.29 | Daniel Stenberg | |
Leave two bug fixes as possibly fixed for 7.28 but as nobody seems to be working on them I have little hope... | |||
2012-09-17 | metalink tests: Updated expected output to include hash name | Marc Hoersken | |
2012-09-16 | curl_multi_wait: Add parameter to return number of active sockets | Sara Golemon | |
Minor change to recently introduced function. BC breaking, but since curl_multi_wait() doesn't exist in any releases that should be fine. | |||
2012-09-14 | socks.c: Fixed warning: conversion to 'int' from 'long unsigned int' | Marc Hoersken | |
2012-09-14 | http_negotiate.c: Fxied warning: unused variable 'rc' | Marc Hoersken | |
2012-09-14 | ssh.c: Fixed warning: implicit conversion from enumeration type | Marc Hoersken | |
2012-09-14 | socks.c: Check that IPv6 is enabled before using it's features | Marc Hoersken | |
2012-09-14 | checksrc: Fixed line length and comment indentation | Marc Hoersken | |
2012-09-14 | socks.c: Updated error messages to handle hostname and IPv6 | Marc Hoersken | |
2012-09-14 | socks.c: Added support for IPv6 connections through SOCKSv5 proxy | Marc Hoersken | |
2012-09-13 | parse_proxy: treat "socks://x" as a socks4 proxy | Daniel Stenberg | |
Selected socks proxy in Google's Chrome browser. Resulting in the following environment variables: NO_PROXY=localhost,127.0.0.0/8 ALL_PROXY=socks://localhost:1080/ all_proxy=socks://localhost:1080/ no_proxy=localhost,127.0.0.0/8 ... and libcurl didn't treat 'socks://' as socks but instead picked HTTP proxy. Reported by: Scott Bailey Bug: http://curl.haxx.se/bug/view.cgi?id=3566860 | |||
2012-09-12 | ssh: do not crash if MD5 fingerprint is not provided by libssh2 | Kamil Dudka | |
The MD5 fingerprint cannot be computed when running in FIPS mode. | |||
2012-09-12 | ssh: move the fingerprint checking code to a separate fnc | Kamil Dudka | |
2012-09-12 | tool_metalink.c: Added name of validation hash to messages | Marc Hoersken | |
This makes it easier to debug broken hashes or hash functions. | |||
2012-09-11 | wincrypt: Fixed cross-compilation issues caused by include name | Marc Hoersken | |
For some reason WinCrypt.h is named wincrypt.h under MinGW. | |||
2012-09-11 | md5.c: Added support for Microsoft Windows CryptoAPI | Marc Hoersken | |
2012-09-11 | Makefile.m32: Updated to build against libmetalink 0.1.2 | Marc Hoersken | |
The include and library path were moved within libmetalink, this patch adjusts the defaults provided within the curl MinGW makefile. | |||
2012-09-11 | tool_metalink.c: Added support for Microsoft Windows CryptoAPI | Marc Hoersken | |
Since Metalink support requires a crypto library for hash functions and Windows comes with the builtin CryptoAPI, this patch adds that API as a fallback to the supported crypto libraries. It is automatically used on Windows if no other library is provided. | |||
2012-09-11 | libntlmconnect.c: Fixed typo and conversion | Marc Hoersken | |
2012-09-11 | libntlmconnect.c: Fixed warning: curl_easy_getinfo expects long pointer | Marc Hoersken | |
Fixed tests/libtest/libntlmconnect.c:52: warning: call to '_curl_easy_getinfo_err_long' declared with attribute warning: curl_easy_getinfo expects a pointer to long for this info | |||
2012-09-11 | sws.c: Fixed warning: 'err' may be used uninitialized in this function | Marc Hoersken | |
2012-09-11 | libntlmconnect.c: Fixed warning: comparison of signed/unsigned integer | Marc Hoersken | |
Windows does not use -1 to represent invalid sockets and the SOCKET type is unsigned. | |||
2012-09-11 | nss.c: Fixed warning: 'err' may be used uninitialized in this function | Marc Hoersken | |
2012-09-11 | tool_metalink.c: Fixed error: 'O_BINARY' undeclared | Marc Hoersken | |
Check for O_BINARY which is not available on every system. | |||
2012-09-11 | tool_metalink.c: Fixed validation of binary files containing EOF | Marc Hoersken | |
Since Windows/MinGW threat 0x1A as the EOF character, reading binary files which contain that byte does not work using text mode. The read function will only read until the first 0x1A byte. This means that the hash is not computed from the whole file and the final validation check using hash comparision fails. | |||
2012-09-10 | winbuild: Added support for building with SPNEGO enabled | Marc Hoersken | |
Since Simple and Protected GSSAPI Negotiation Mechanism is already implemented in curl and supported by the MinGW builds, this change adds build support to winbuild makefiles. | |||
2012-09-10 | winbuild: Adjusted order of options to generated config name | Marc Hoersken | |
Cleaned up order of handled build options by ordering them nearly alphabetically by using the order of the generated config name. Preparation for future/more build options. | |||
2012-09-09 | MANUAL: clarified user+password in HTTP URLs | Anthony Bryan | |
2012-09-09 | RELEASE-NOTES: synced with 6c6f1f64c2 | Daniel Stenberg | |
6 bug fixes to mention, 5 contributors | |||
2012-09-09 | TODO-RELEASE: CURLSSH_AUTH_AGENT and curl_multi_wait() are done | Daniel Stenberg | |
-321 - CURLSSH_AUTH_AGENT patch by Armel Asselin -324 - curl_multi_select() vs curl_multi_fdvec() etc | |||
2012-09-09 | curl_schannel.c: Reference count the credential/session handle | Marc Hoersken | |
Reference counting the credential handle should avoid that such a handle is freed while it is still required for connection shutdown | |||
2012-09-08 | darwinssl: fixed for older Mac OS X versions | Nick Zitzmann | |
SSL didn't work on older cats if built on a newer cat with weak-linking turned on to support the older cat | |||
2012-09-06 | tool_easysrc.c: Test pointers against NULL | David Blaikie | |
While validating a new Clang diagnostic (-Wnon-literal-null-conversion - yes, the name isn't quite correct in this case, but it suffices) I found a few violations of it in Curl. | |||
2012-09-06 | SOCKS: truly disable it if CURL_DISABLE_PROXY is defined | Daniel Stenberg | |
Bug: http://curl.haxx.se/bug/view.cgi?id=3561305 Patch by: Marcel Raad | |||
2012-09-04 | mk-ca-bundle: detect start of trust section better | Daniel Stenberg | |
Each certificate section of the input certdata.txt file has a trust section following it with details. This script failed to detect the start of the trust for at least one cert[*], which made the script continue pass that section into the next one where it found an 'untrusted' marker and as a result that certficate was not included in the output. [*] = "Hellenic Academic and Research Institutions RootCA 2011" Bug: http://curl.haxx.se/mail/lib-2012-09/0019.html | |||
2012-09-04 | gnutls: do not fail on non-fatal handshake errors | Alessandro Ghedini | |
Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685402 | |||
2012-09-04 | FILEFORMAT: the FTP commands work for more protocols | Daniel Stenberg | |
2012-09-04 | test1411: verify SMTP without SIZE support | Daniel Stenberg | |
2012-09-04 | SMTP: only send SIZE if supported | František Kučera | |
SMTP client will send SIZE parameter in MAIL FROM command only if server supports it. Without this patch server might say "504 Command parameter not implemented" and reject the message. Bug: http://curl.haxx.se/bug/view.cgi?id=3564114 | |||
2012-09-04 | ftpserver: respond with a 250 to SMTP EHLO | Daniel Stenberg | |
... and specify that SIZE is supported. 250 is the "correct" response code according to RFC 2821 | |||
2012-09-03 | RELEASE-NOTES: synced with abb0da919300e | Daniel Stenberg | |
2012-09-03 | Updated Symbian build files | Dan Fandrich | |
This is untested, but at least Symbian still has a chance of still working now. | |||
2012-09-03 | Updated build docs w.r.t. Android and binary sizes | Dan Fandrich | |
2012-09-01 | symbols-in-versions: new CURL_WAIT_* symbols | Daniel Stenberg | |