Jay Satiro
3d144ab99b
url: don't use bad offset in tld_check_name to show error
...
libidn's tld_check_lz returns an error offset of the first character
that it failed to process, however that offset is not a byte offset and
may not even be in the locale encoding therefore we can't use it to show
the user the character that failed to process.
Bug: https://github.com/curl/curl/issues/731
Reported-by: Karlson2k
2016-03-26 14:41:35 -04:00
Steve Holme
4adee1947c
http_negotiate: Combine GSS-API and SSPI source files
...
As the GSS-API and SSPI based source files are no longer library/API
specific, following the extraction of that authentication code to the
vauth directory, combine these files rather than maintain two separate
versions.
2016-03-26 17:21:22 +00:00
Steve Holme
6d6f9ca1d9
vauth: Moved the Negotiate authentication code to the new vauth directory
...
Part 2 of 2 - Moved the GSS-API based Negotiate authentication code.
2016-03-26 17:21:22 +00:00
Steve Holme
ad5e9bfd5d
vauth: Moved the Negotiate authentication code to the new vauth directory
...
Part 1 of 2 - Moved the SSPI based Negotiate authentication code.
2016-03-26 17:21:22 +00:00
Steve Holme
65f972b2e8
warnless.h: Removed spurious character from commit 696bc6b9c9
...
Not picked up by checksrc or Visual Studio but my own code review, this
would haven broken Intel based Unix builds - Perhaps I should learn to
type on my laptop's keyboard before committing!
2016-03-26 11:35:07 +00:00
Steve Holme
107cb78487
schannel: Fixed compilation warning from commit f8d88a4913
...
warning C4244: '=': conversion from 'int' to 'unsigned short', possible
loss of data
2016-03-26 11:14:07 +00:00
Steve Holme
696bc6b9c9
warnless?: Added some integer based conversion functions
2016-03-26 11:09:01 +00:00
Steve Holme
e04f5c576d
build: Corrected typos from commit 70e56939aa
2016-03-25 18:23:07 +00:00
Steve Holme
58a7bc96ec
vauth: Refactored function names after move to new vauth directory
...
Renamed all the SASL functions that moved to the new vauth directory to
include the correct module name.
2016-03-25 17:40:12 +00:00
Steve Holme
7d2a5a05f6
vauth: Updated the copyright year after recent changes
...
As most of this work was performed in 2015 but not pushed until 2016
updated the copyright year to reflect the public facing changes.
2016-03-25 17:40:12 +00:00
Steve Holme
70e56939aa
vauth: Moved the OAuth 2.0 authentication code to the new vauth directory
2016-03-25 15:11:10 +00:00
Steve Holme
6012fa5aee
vauth: Moved the NTLM authentication code to the new vauth directory
2016-03-25 15:11:09 +00:00
Steve Holme
e1dca8a117
vauth: Moved the Kerberos V5 authentication code to the new vauth directory
2016-03-25 15:11:07 +00:00
Steve Holme
568d26e0f5
digest.c: Fixed checksrc warnings
2016-03-25 12:17:34 +00:00
Steve Holme
51358a3f40
vauth: Moved the DIGEST authentication code to the new vauth directory
2016-03-25 12:05:23 +00:00
Steve Holme
ec5b8dc647
vauth: Moved the CRAM-MD5 authentication code to the new vauth directory
2016-03-25 12:05:23 +00:00
Steve Holme
6101e35819
vauth: Moved the ClearText authentication code to the new vauth directory
2016-03-25 12:05:23 +00:00
Steve Holme
685fee3828
vauth: Moved Curl_sasl_build_spn() to create the initial vauth source files
2016-03-25 09:12:01 +00:00
Steve Holme
dc72f8df0c
build: Updated all makefiles and project files for the new vauth directory
...
Updated the makefiles and Visual Studio project files to support moving
the authentication code to the new lib/vauth directory that was started
in commit 0d04e859e1
.
2016-03-25 09:11:59 +00:00
JDepooter
f8d88a4913
schannel: Add ALPN support
...
Add ALPN support for schannel. This allows cURL to negotiate
HTTP/2.0 connections when built with schannel.
Closes #724
2016-03-24 09:56:12 +01:00
Steve Holme
96fff9f6b5
http: Minor update based on CODE_STYLE guidelines
2016-03-24 06:35:23 +00:00
Daniel Stenberg
726ae07b07
multi: fix "Operation timed out after" timer
...
Use the local, reasonably updated, 'now' value when creating the message
string to output for the timeout condition.
Fixes #619
2016-03-23 23:03:08 +01:00
Daniel Stenberg
23ab481644
openssl: boringssl provides the same numbering as openssl
...
... so we don't need extra boringssl precautions for for
HAVE_ERR_REMOVE_THREAD_STATE_NOARG.
Pointed-out-by: David Benjamin
2016-03-23 14:59:41 +01:00
Daniel Stenberg
240cd84b49
openssl: fix ERR_remove_thread_state() for boringssl/libressl
...
The removed arg is only done in OpenSSL
Bug: https://twitter.com/xtraemeat/status/712564874098917376
2016-03-23 10:05:29 +01:00
Steve Holme
f974ffdd4b
hostip6: Fixed compilation warnings when verbose strings disabled
...
warning C4189: 'data': local variable is initialized but not referenced
...and some minor formatting/spacing changes.
2016-03-22 06:16:06 +00:00
Steve Holme
9351383745
connect/ntlm/http: Fixed compilation warnings when verbose strings disabled
...
warning C4189: 'data': local variable is initialized but not referenced
2016-03-20 17:51:06 +00:00
Steve Holme
89f397d7eb
openssl: Fixed compilation warning when /Wall enabled
...
warning C4706: assignment within conditional expression
2016-03-20 17:35:31 +00:00
Steve Holme
f046ac48d6
inet_pton.c: Fixed compilation warnings
...
warning: conversion to 'unsigned char' from 'int' may alter its value
2016-03-20 11:14:58 +00:00
Daniel Stenberg
80851028ef
mbedtls: fix compiler warning
...
vtls/mbedtls.h:67:36: warning: implicit declaration of function
‘mbedtls_sha256’ [-Wimplicit-function-declaration]
2016-03-19 22:37:21 +01:00
Steve Holme
4ff5cfd5fa
easy: Minor coding standard and style updates
...
Following commit c5744340db
. Additionally removes the need for a second
'result code' variable as well.
2016-03-19 20:37:12 +00:00
Jay Satiro
c5744340db
easy: Remove poll failure check in easy_transfer
...
.. because curl_multi_wait can no longer signal poll failure.
follow-up to 77e1726
Bug: https://github.com/curl/curl/issues/707
2016-03-19 15:29:52 -04:00
Steve Holme
c142e73142
ftp/imap/pop3/smtp: Fixed compilation warning when /Wall enabled
...
warning C4706: assignment within conditional expression
2016-03-19 17:15:53 +00:00
Steve Holme
4ff2fbd1d5
config-w32.h: Fixed compilation warning when /Wall enabled
...
warning C4668: 'USE_IPV6' is not defined as a preprocessor macro,
replacing with '0' for '#if/#elif'
2016-03-19 11:05:06 +00:00
Steve Holme
97c9d2ae8c
imap.c: Fixed compilation warning with /Wall enabled
...
warning C4701: potentially uninitialized local variable 'size' used
Technically this can't happen, as the usage of 'size' is protected by
'if(parsed)' and 'parsed' is only set after 'size' has been parsed.
Anyway, lets keep the compiler happy.
2016-03-19 11:01:36 +00:00
Steve Holme
7e312bdfdd
formdata.c: Fixed compilation warning
...
formdata.c:390: warning: cast from pointer to integer of different size
Introduced in commit ca5f9341ef
this happens because a char*, which is
32-bits wide in 32-bit land, is being cast to a curl_off_t which is
64-bits wide where 64-bit integers are supported by the compiler.
This doesn't happen in 64-bit land as a pointer is the same size as a
curl_off_t.
This fix doesn't address the fact that a 64-bit value cannot be used
for CURLFORM_CONTENTLEN when set in a form array and compiled on a
32-bit platforms, it does at least suppress the compilation warning.
2016-03-18 07:19:31 +00:00
Gisle Vanem
d816e8cf52
openssl: adapt to API breakage in ERR_remove_thread_state()
...
The OpenSSL API change that broke this is "Convert ERR_STATE to new
multi-threading API": openssl commit 8509dcc.
Closes #713
2016-03-17 10:42:33 +01:00
Daniel Stenberg
8d9d03a157
version: init moved to private name space, added protos
...
follow-up to 80015cdd52
2016-03-17 00:55:46 +01:00
Daniel Stenberg
5f5b626357
openssl: verbose: show matching SAN pattern
...
... to allow users to see which specfic wildcard that matched when such
is used.
Also minor logic cleanup to simplify the code, and I removed all tabs
from verbose strings.
2016-03-17 00:49:02 +01:00
Jay Satiro
80015cdd52
version: thread safety
2016-03-16 19:13:42 -04:00
Steve Holme
0e18b8b107
transfer: Removed redundant HTTP authentication include files
...
It would also seem that share.h is not required here either as there
are no references to the Curl_share structure or functions.
2016-03-16 07:13:16 +00:00
Steve Holme
cd869cf1c1
easy: Removed redundant HTTP authentication include files
2016-03-16 06:59:42 +00:00
Steve Holme
3ccc2621a1
curl_sasl: Minor code indent fixes
2016-03-15 06:47:13 +00:00
Daniel Stenberg
b51f04bf23
easy: add check to malloc() when running event-based
...
... to allow torture tests then too.
2016-03-14 15:37:03 +01:00
Daniel Stenberg
6a353b105a
memdebug: skip logging the limit countdown, fflush when reached
2016-03-14 15:36:40 +01:00
Daniel Stenberg
3c6238b3eb
curl_sasl.c: minor code indent fixes
2016-03-14 09:55:38 +01:00
Daniel Stenberg
c3aca6ed47
multi: simplified singlesocket
...
Since sh_getentry() now checks for invalid sockets itself and by
narrowing the scope of the remove_sock_from_hash variable.
2016-03-14 09:44:14 +01:00
Daniel Stenberg
8eaf884417
multi: introduce sh_getentry() for looking up sockets in the sockhash
...
Simplify the code by using a single entry that looks for a socket in the
socket hash. As indicated in #712 , the code looked for CURL_SOCKET_BAD
at some point and that is ineffective/wrong and this makes it easier to
avoid that.
2016-03-14 09:18:01 +01:00
Jaime Fullaondo
c0717a7059
multi hash: ensure modulo performed on curl_socket_t
...
Closes #712
2016-03-14 08:16:52 +01:00
Steve Holme
5dc43b975b
base64: Minor coding standard and style updates
2016-03-13 17:59:06 +00:00
Steve Holme
0e16de870f
base64: Use 'CURLcode result' for curl result codes
2016-03-13 17:14:57 +00:00