Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-03-25 | build: Corrected typos from commit 70e56939aa | Steve Holme | |
2016-03-25 | vauth: Refactored function names after move to new vauth directory | Steve Holme | |
Renamed all the SASL functions that moved to the new vauth directory to include the correct module name. | |||
2016-03-25 | vauth: Updated the copyright year after recent changes | Steve Holme | |
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 | vauth: Moved the OAuth 2.0 authentication code to the new vauth directory | Steve Holme | |
2016-03-25 | vauth: Moved the NTLM authentication code to the new vauth directory | Steve Holme | |
2016-03-25 | vauth: Moved the Kerberos V5 authentication code to the new vauth directory | Steve Holme | |
2016-03-25 | digest.c: Fixed checksrc warnings | Steve Holme | |
2016-03-25 | vauth: Moved the DIGEST authentication code to the new vauth directory | Steve Holme | |
2016-03-25 | vauth: Moved the CRAM-MD5 authentication code to the new vauth directory | Steve Holme | |
2016-03-25 | vauth: Moved the ClearText authentication code to the new vauth directory | Steve Holme | |
2016-03-25 | vauth: Moved Curl_sasl_build_spn() to create the initial vauth source files | Steve Holme | |
2016-03-25 | build: Updated all makefiles and project files for the new vauth directory | Steve Holme | |
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-24 | schannel: Add ALPN support | JDepooter | |
Add ALPN support for schannel. This allows cURL to negotiate HTTP/2.0 connections when built with schannel. Closes #724 | |||
2016-03-24 | http: Minor update based on CODE_STYLE guidelines | Steve Holme | |
2016-03-23 | multi: fix "Operation timed out after" timer | Daniel Stenberg | |
Use the local, reasonably updated, 'now' value when creating the message string to output for the timeout condition. Fixes #619 | |||
2016-03-23 | openssl: boringssl provides the same numbering as openssl | Daniel Stenberg | |
... so we don't need extra boringssl precautions for for HAVE_ERR_REMOVE_THREAD_STATE_NOARG. Pointed-out-by: David Benjamin | |||
2016-03-23 | openssl: fix ERR_remove_thread_state() for boringssl/libressl | Daniel Stenberg | |
The removed arg is only done in OpenSSL Bug: https://twitter.com/xtraemeat/status/712564874098917376 | |||
2016-03-22 | hostip6: Fixed compilation warnings when verbose strings disabled | Steve Holme | |
warning C4189: 'data': local variable is initialized but not referenced ...and some minor formatting/spacing changes. | |||
2016-03-20 | connect/ntlm/http: Fixed compilation warnings when verbose strings disabled | Steve Holme | |
warning C4189: 'data': local variable is initialized but not referenced | |||
2016-03-20 | openssl: Fixed compilation warning when /Wall enabled | Steve Holme | |
warning C4706: assignment within conditional expression | |||
2016-03-20 | inet_pton.c: Fixed compilation warnings | Steve Holme | |
warning: conversion to 'unsigned char' from 'int' may alter its value | |||
2016-03-19 | mbedtls: fix compiler warning | Daniel Stenberg | |
vtls/mbedtls.h:67:36: warning: implicit declaration of function ‘mbedtls_sha256’ [-Wimplicit-function-declaration] | |||
2016-03-19 | easy: Minor coding standard and style updates | Steve Holme | |
Following commit c5744340db. Additionally removes the need for a second 'result code' variable as well. | |||
2016-03-19 | easy: Remove poll failure check in easy_transfer | Jay Satiro | |
.. 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 | ftp/imap/pop3/smtp: Fixed compilation warning when /Wall enabled | Steve Holme | |
warning C4706: assignment within conditional expression | |||
2016-03-19 | config-w32.h: Fixed compilation warning when /Wall enabled | Steve Holme | |
warning C4668: 'USE_IPV6' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' | |||
2016-03-19 | imap.c: Fixed compilation warning with /Wall enabled | Steve Holme | |
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-18 | formdata.c: Fixed compilation warning | Steve Holme | |
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-17 | openssl: adapt to API breakage in ERR_remove_thread_state() | Gisle Vanem | |
The OpenSSL API change that broke this is "Convert ERR_STATE to new multi-threading API": openssl commit 8509dcc. Closes #713 | |||
2016-03-17 | version: init moved to private name space, added protos | Daniel Stenberg | |
follow-up to 80015cdd52145 | |||
2016-03-17 | openssl: verbose: show matching SAN pattern | Daniel Stenberg | |
... 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-16 | version: thread safety | Jay Satiro | |
2016-03-16 | transfer: Removed redundant HTTP authentication include files | Steve Holme | |
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 | easy: Removed redundant HTTP authentication include files | Steve Holme | |
2016-03-15 | curl_sasl: Minor code indent fixes | Steve Holme | |
2016-03-14 | easy: add check to malloc() when running event-based | Daniel Stenberg | |
... to allow torture tests then too. | |||
2016-03-14 | memdebug: skip logging the limit countdown, fflush when reached | Daniel Stenberg | |
2016-03-14 | curl_sasl.c: minor code indent fixes | Daniel Stenberg | |
2016-03-14 | multi: simplified singlesocket | Daniel Stenberg | |
Since sh_getentry() now checks for invalid sockets itself and by narrowing the scope of the remove_sock_from_hash variable. | |||
2016-03-14 | multi: introduce sh_getentry() for looking up sockets in the sockhash | Daniel Stenberg | |
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 | multi hash: ensure modulo performed on curl_socket_t | Jaime Fullaondo | |
Closes #712 | |||
2016-03-13 | base64: Minor coding standard and style updates | Steve Holme | |
2016-03-13 | base64: Use 'CURLcode result' for curl result codes | Steve Holme | |
2016-03-13 | negotiate: Use 'CURLcode result' for curl result codes | Steve Holme | |
2016-03-13 | multi_runsingle: avoid loop in CURLM_STATE_WAITPROXYCONNECT | Maksim Kuzevanov | |
Closes #703 | |||
2016-03-12 | digest: Use boolean based success code for Curl_sasl_digest_get_pair() | Steve Holme | |
Rather than use a 0 and 1 integer base result code use a TRUE / FALSE based success code. | |||
2016-03-12 | digest: Corrected some typos in comments | Steve Holme | |
2016-03-12 | krb5: Corrected some typos in function descriptions | Steve Holme | |
2016-03-12 | ntlm: Corrected some typos in function descriptions | Steve Holme | |
2016-03-11 | url: Corrected indentation when calling idna_to_ascii_lz() | Steve Holme | |