- Feb 19, 2013
-
-
Yang Tse authored
-
- Feb 18, 2013
-
-
Nick Zitzmann authored
Schannel and darwinssl use the certificates built into the OS to do vert verification instead of bundles. darwinssl is thread-safe. Corrected typos in the NSS docs.
-
Daniel Stenberg authored
The attempt to use gai_strerror() or alternative function didn't work as the 'sock_error' field didn't contain the proper error code. But since this hasn't been reported and thus isn't really a big deal I decided to just scrap the whole attempt to output the detailed resolver error and instead remain with just stating that the resolving of the name failed.
-
Kim Vandry authored
-
Daniel Stenberg authored
conversion to 'int' from 'long int' may alter its value
-
Daniel Stenberg authored
follow-up to commit ed7174c6, rename 'wait' to 'block'
-
- Feb 17, 2013
-
-
Daniel Stenberg authored
It seems older gcc installations (at least) will cause warnings if we name a variable 'wait'. Now changed to 'block' instead. Reported by: Jiří Hruška Bug: http://curl.haxx.se/mail/lib-2013-02/0247.html
-
Nick Zitzmann authored
Apple made a number of changes to Xcode 4. The SDKs were moved, the entire Developer folder was moved, and PowerPC support was removed. The script will now adapt to those changes and should be future-proofed against additional changes in case Apple moves the Developer folder ever again. Also, the minimum OS X version compiler option was removed, so that the framework can be built against the latest SDK but still run in older cats.
-
Daniel Stenberg authored
-
- Feb 16, 2013
-
-
Steve Holme authored
Tidied up result variables to be consistent in name, declaration order and default values.
-
Nick Zitzmann authored
Fixed a 64-to-32 compiler warning raised when building with clang and the --with-darwinssl option.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Pointed out by Steve Holme
-
Steve Holme authored
Due to the reordering of functions in commit 586f5d36 the forward declaration to state_upgrade_tls() are no longer required.
-
Steve Holme authored
-
- Feb 15, 2013
-
-
Willem Sparreboom authored
Repaired all curl/lib/checksrc.pl warnings in the previous four patches
-
Willem Sparreboom authored
Added WIN32 threading support for PolarSSL entropy if --enable-threaded-resolver config flag is set and process.h can be found.
-
Willem Sparreboom authored
Added pthread support for polarssl entropy if --enable-threaded-resolver config flag is set and pthread.h can be found.
-
Willem Sparreboom authored
Add non-threaded entropy and ctr_drbg and removed HAVEGE_RANDOM define
-
Willem Sparreboom authored
Print out human readable error strings for PolarSSL related errors
-
Steve Holme authored
-
Steve Holme authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Since the function takes no argument, the macro shouldn't take one as some compilers will error out on that.
-
Daniel Stenberg authored
... since they're not used by the easy interface really, I wanted to remove the association. Also, I unified the pingpong statemachine driver into a single function with a 'wait' argument: Curl_pp_statemach.
-
Gisle Vanem authored
-
Gisle Vanem authored
-
Gisle Vanem authored
-
Gisle Vanem authored
-
- Feb 14, 2013
-
-
Steve Holme authored
Remove tailing whitespace introduced in commit 7ed689d2.
-
Steve Holme authored
A call to Curl_ssl_connect() was accidentally left in when the SSL/TLS connection layer was reworked in 7.29. Not only would this cause the connection to block but had the additional overhead of calling the non-blocking connect a little bit later.
-
Steve Holme authored
Renamed smtp_state_auth_resp() function to match the implementations in IMAP and POP3.
-
Daniel Stenberg authored
Clarify the code by reducing ifdefs
-
Daniel Stenberg authored
This function was only used twice, both in places where performance isn't crucial (socks + if2ip). Removing the use of this function removes the need to have our private version for systems without it == reduced amount of code. Also, in the SOCKS case it is clearly better to fail gracefully rather than to truncate the results. This work was triggered by a bug report on the strcal prototype in strequal.h. strlcat was added in commit db70cd28 in February 2001! Bug: http://curl.haxx.se/bug/view.cgi?id=1192 Reported by: Jeremy Huddleston
-
Daniel Stenberg authored
As Curl_FormBoundary() is no longer used outside of this file (since commit ad7291c1), it is now renamed to formboundary() and is made static.
-
- Feb 13, 2013
-
-
Daniel Stenberg authored
Instead of just abusing the pseudo-randomizer from Curl_FormBoundary(), this now uses Curl_ossl_random() to get entropy.
-
Steve Holme authored
Replaced two explicit comparisons of CURLE_OK with boolean alternatives. General tidy up of comments.
-
Steve Holme authored
The smtp_connect() function was setting the member variables of the pingpong structure twice, once before calling Curl_pp_init() and once after!
-
Yang Tse authored
Use 'vs' directory tree given that 'vc' intended one clashes with an already existing build target in file Makefile.dist.
-
Daniel Stenberg authored
Version 7.29.0 uses Makefiles generated with a newer version of the autotools than the previous 7.28.1. These Makefiles try to install e.g. header files by calling install-sh with multiple source files as arguments. The bundled install-sh is to old and does not support this. The problem only occurs, if install-sh is actually being used, ie. the platform install executable is to old or not usable. Example: Solaris 10. The files install-sh and mkinstalldirs are now updated with the automake 1.11.3 versions. A better fix might be to completely remove them from git and force the files to be added/created during buildconf. Bug: http://curl.haxx.se/bug/view.cgi?id=1195 Reported by: Rainer Jung
-