- Sep 08, 2013
-
-
Steve Holme authored
In preparation for additional POP3 tests, re-ordered the command function defintions to be sorted alphabetically.
-
Steve Holme authored
Fixed incorrect indentation used in both the RETR_pop3 and LIST_pop3 functions which was 5 and 9 characters rather than 4 and 8.
-
- Sep 07, 2013
-
-
Steve Holme authored
-
Steve Holme authored
-
Daniel Stenberg authored
Detected by test 1132
-
Nick Zitzmann authored
When building the code using LLVM Clang without NGHTTP2, I was getting this warning: ../lib/http.h:155:1: warning: empty struct is a GNU extension [-Wgnu] Placing a dummy variable into the data structure silenced the warning.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Since it now actually says if 1.1 or a later version should be used.
-
Daniel Stenberg authored
The compiler test used a variable before it was assigned when it tried to see how it acts on a mismatching prototype, which could cause a false positive.
-
- Sep 06, 2013
-
-
Petr Písař authored
Recent OpenSSL uses user interface abstraction to negotiate access to private keys in the cryprographical engines. An OpenSSL application is expected to implement the user interface. Otherwise a default one provided by OpenSSL (interactive standard I/O) will be used and the aplication will have no way how to pass a password to the engine. Longer-desc: http://curl.haxx.se/mail/lib-2013-08/0265.html
-
Daniel Stenberg authored
Introduce a convenience macro and keep of the column better so that it can point out the offending column better. Updated test 75 accordingly.
-
Daniel Stenberg authored
By using the correct values from the start we don't have to translate them!
-
Daniel Stenberg authored
Thanks to clang-analyzer
-
Gisle Vanem authored
Using the first little merge of nghttp2 into libcurl, I stumbeled on the missing 'snprintf' in MSVCRT. Isn't this how we do it for other libcurl files? I.e. use 'curl_msnprintf' and not 'snprintf' directly:
-
Daniel Stenberg authored
-
Geoff Beier authored
When an error occurs parsing an LDAP URL, The ludp->lud_attrs[i] entries could be freed even though they sometimes point to data within an allocated area. This change introduces a lud_attrs_dup[] array for the duplicated string pointers, and it removes the unused lud_exts array. Bug: http://curl.haxx.se/mail/lib-2013-08/0209.html
-
- Sep 05, 2013
-
-
Nick Zitzmann authored
I also documented the fact that the OpenSSL engine also supports them.
-
Daniel Stenberg authored
CURL_HTTP_VERSION_2_0 and CURL_VERSION_HTTP2 are new
-
Daniel Stenberg authored
Fixes the test 1014 failure
-
Daniel Stenberg authored
I broke it in 2eabb7d5
-
- Sep 04, 2013
-
-
Daniel Stenberg authored
comparison between signed and unsigned integer expressions suggest parentheses around '&&' within '||' (twice)
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
It isn't added as a separate protocol as HTTP2 will be done over HTTP:// URLs that can be upgraded to HTTP2 if the server supports it as well.
-
Steve Holme authored
XOAUTH2 would be selected in preference to LOGIN and PLAIN if the IMAP or SMTP server advertised support for it even though a user's password was supplied but bearer token wasn't. Modified the selection logic so that XOAUTH2 will only be selected if the server supports it and A) The curl user/libcurl programmer has specifically asked for XOAUTH via the ;AUTH=XOAUTH login option or 2) The bearer token is specified. Obviously if XOAUTH is asked for via the login option but no token is specified the user will receive a authentication failure which makes more sense than no known authentication mechanisms supported!
-
Daniel Stenberg authored
Initial library considerations documented in lib/README.http2
-
Daniel Stenberg authored
-
- Sep 03, 2013
-
-
Daniel Stenberg authored
The commit 7b074a46 to CURL_CHECK_CA_BUNDLE in 7.31 (don't check for paths when cross-compiling) causes --without-ca-path to no longer works when cross-compiling, since ca and capath only ever get set to "no" when not cross-compiling, I attach a patch that works for me. Also in the cross-compilation case, no ca-path seems to be a better default (IMVHO) than empty ca-path. Bug: http://curl.haxx.se/bug/view.cgi?id=1273 Patch-by: Stefan Neis
-
- Sep 02, 2013
-
-
Steve Holme authored
An enumerated type is mixed with another type. ...as well as a small coding style error.
-
- Sep 01, 2013
-
-
Guenter Knauf authored
-
Steve Holme authored
An enumerated type is mixed with another type
-
Steve Holme authored
warning: `code' might be used uninitialized in this function
-
- Aug 31, 2013
-
-
Daniel Stenberg authored
-
Steve Holme authored
-
Steve Holme authored
-
Guenter Knauf authored
-