- May 05, 2011
-
-
Daniel Stenberg authored
Code cleanup to check less for protocols and more for the specific relevant feature. Like if SSL is required.
-
Daniel Stenberg authored
No need to check for HTTP as this is now a HTTP-specific function
-
Daniel Stenberg authored
make it static, remove Curl_ prefix
-
Daniel Stenberg authored
Also, convert the BANPROXY flag into NONETWORK for the protocols (file:// only atm) that don't work over networks.
-
Daniel Stenberg authored
As we now can specify all the socks proxy types with the regular --proxy option using protocol prefix.
-
Daniel Stenberg authored
Using 'socks5h' as proxy protocol will make it a CURLPROXY_SOCKS5_HOSTNAME proxy which is SOCKS5 and asking the proxy to resolve host names. I found no "standard" protocol name for this.
-
Daniel Stenberg authored
-
Jari Aalto authored
Follow style of GNU layout (cp, mv ...) where options are separated with comma: -o, --option Order item alphabetically (by length also): -o, -O, --option Follow style of GNU layout by moving help related options to the end: --help, -M, --version
-
- May 04, 2011
-
-
Daniel Stenberg authored
closepolicy has been deprecated and unused for years
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- May 03, 2011
-
-
Daniel Stenberg authored
-
- May 02, 2011
-
-
Daniel Stenberg authored
The internal defaults are important info
-
Daniel Stenberg authored
-
Daniel Stenberg authored
As it is a separate option it should have a .IP title
-
Daniel Stenberg authored
Clarify that the '-', '.', '_' or '~' letters are also not escaped since they shouldn't according to RFC3986 section 2.3. This is how this function has behaved since sep 2010, commit 5df13c31.
-
- May 01, 2011
-
-
Daniel Stenberg authored
Introduce an INIT state for the SSH state machine and set libssh2 non-blocking in that so that it is set properly before libssh2_session_startup() is called. Bug: http://curl.haxx.se/mail/archive-2011-05/0001.html
-
- Apr 30, 2011
-
-
Daniel Stenberg authored
As the code already checks for it we can just as well make it official!
-
- Apr 29, 2011
-
-
Daniel Stenberg authored
When checking for connections that are bound to a particular device we must make sure we don't compare with a NULL pointer.
-
Daniel Stenberg authored
-
- Apr 28, 2011
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
As it is already included by curlbuild.h if it exists on the platform it was included here superfluously anyway. Reported by: Dagobert Michelsen Bug: http://curl.haxx.se/bug/view.cgi?id=3294509
-
Daniel Stenberg authored
There are systems (like NetWare) without its own gai_strerror() function.
-
Daniel Stenberg authored
Now use gai_strerror() to get proper error messages when getaddrinfo() has failed. Detect the function in configure. Code based on work and suggestions by Jeff Pohlmeyer and Guenter Knauf
-
Daniel Stenberg authored
Inspired by a patch from OB.Conseil. Added test case 708 to verify.
-
Zmey Petroff authored
Improved library search by check_function_exists_concat() macro: it does not revert the list of libraries any more. Improved OpenSSL library search: first find zlib, then search for openssl libraries that may depend on zlib. For Unix: openssl libraries can now be detected in nonstandard locations. Supply CMAKE_LIBRARY_PATH to CMake on command line. Added installation capability (very basic one yet).
-
Daniel Stenberg authored
When connecting to a socks or similar proxy we do the proxy handshake at once when we know the TCP connect is completed and we only consider the "connection" complete after the proxy handshake. This fixes test 564 which is now no longer considered disabled. Reported by: Dmitri Shubin Bug: http://curl.haxx.se/mail/lib-2011-04/0127.html
-
Daniel Stenberg authored
-
- Apr 27, 2011
-
-
Dan Fandrich authored
Source files given with absolute paths do not have the -D directory specifier prepended.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
The make target checksrc now works in the root makefile and in both the src and lib directories. It is also run automatically on "all" if configure --enable-debug was used.
-
Daniel Stenberg authored
Make everything adhere to the standards upheld by checksrc.pl and now run checksrc from the makefile on debug builds.
-
Daniel Stenberg authored
Useful when a known file just doesn't comply and there's no intention to make it do so.
-
Daniel Stenberg authored
"if(a)" is our style, not "if( a )"
-
Daniel Stenberg authored
Since it now supports multiple files this will be faster and will show problems for more file than one at a time - more convenient.
-
Daniel Stenberg authored
It now scans multiple files and outputs an error+warning count summary at the end in case at least one was detected. -D can be used to specify in which dir the files are located The script now scans for conditions that starts with a space for if/while/for lines.
-
Daniel Stenberg authored
And make the build fail if a warning or error was detected
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
By the use of a the new lib/checksrc.pl script that checks that our basic source style rules are followed.
-