Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-04 | runtests: add -o to run test cases in scrambled order | Daniel Stenberg | |
... instead of numerical order. Closes #1466 | |||
2017-05-04 | sockfilt.c: shortened too long line | Dan Fandrich | |
2017-05-04 | tests/server: make string literals const | Marcel Raad | |
assign string literals to const char * instead of char * in order to avoid a lot of these warnings: cast from 'const char *' to 'char *' drops const qualifier [-Wcast-qual] | |||
2017-05-04 | schannel: return a more specific error code for SEC_E_UNTRUSTED_ROOT | Dan Fandrich | |
2017-05-04 | test557: set a known good numeric locale | Dan Fandrich | |
Windows does not allow setting the locale with environment variables (as the test attempted to do), so the test failed when run with a user locale that has a comma as radixchar. Changed the test to call setlocale() explicitly to ensure that a known working locale is set even on Windows. | |||
2017-05-04 | curl: fix warning "comma at end of enumerator list" | Daniel Stenberg | |
2017-05-04 | test559: verify use of minimum CURLOPT_BUFFERSIZE | Daniel Stenberg | |
2017-05-04 | curl_setup_once: use SEND_QUAL_ARG2 for swrite | Marcel Raad | |
SEND_QUAL_ARG2 had to be set, but was never used. Use it in swrite to avoid warnings about casting away low-level const. Closes https://github.com/curl/curl/pull/1464 | |||
2017-05-04 | CURLINFO_REDIRECT_URL.3: add example | Daniel Stenberg | |
2017-05-04 | CURLINFO_EFFECTIVE_URL.3: add example | Daniel Stenberg | |
2017-05-03 | lib: fix compiler warnings | Marcel Raad | |
Fix the following warnings when building the tests by using the correct types: cast from 'const char *' to 'void *' drops const qualifier [-Wcast-qual] implicit conversion changes signedness [-Wsign-conversion] | |||
2017-05-03 | typecheck-gcc: add support for CURLINFO_SOCKET | Marcel Raad | |
Closes https://github.com/curl/curl/pull/1452 | |||
2017-05-03 | typecheck-gcc: add missing string options | Marcel Raad | |
Closes https://github.com/curl/curl/pull/1452 | |||
2017-05-03 | abstract-unix-socket.d: shorten the help text to fit within 79 cols | Daniel Stenberg | |
2017-05-02 | RELEASE-NOTES: synced with 862b02f89 | Daniel Stenberg | |
2017-05-02 | Telnet: Write full buffer instead of byte-by-byte | Richard Hsu | |
Previous TODO wanting to write in chunks. We should support writing more at once since some TELNET servers may respond immediately upon first byte written such as WHOIS servers. Closes #1389 | |||
2017-05-02 | curl: non-boolean command line args reject --no- prefixes | Daniel Stenberg | |
... and instead properly respond with an error message to the user instead of silently ignoring. Fixes #1453 Closes #1458 | |||
2017-05-02 | testpart: remove _MPRINTF_REPLACE | Marcel Raad | |
Support for _MPRINTF_REPLACE in mprintf.h was removed in 55452ebdff47f98bf3cc383f1dfc3623fcaefefd, replaced with curl_printf.h. | |||
2017-05-02 | gtls: fixed a lingering BUFSIZE reference | Dan Fandrich | |
2017-05-02 | ssh: fix compiler warning from e40e9d7f0de | Daniel Stenberg | |
2017-05-02 | url: let CURLOPT_BUFFERSIZE realloc to smaller sizes too | Daniel Stenberg | |
Closes #1449 | |||
2017-05-01 | BUFSIZE: rename to READBUFFER_*, make separate MASTERBUF_SIZE | Daniel Stenberg | |
2017-05-01 | openssl: use local stack for temp storage | Daniel Stenberg | |
2017-05-01 | sendf: remove use of BUFSIZE from debug data conversions | Daniel Stenberg | |
The buffer can have other sizes. | |||
2017-05-01 | buffer: use data->set.buffer_size instead of BUFSIZE | Daniel Stenberg | |
... to properly use the dynamically set buffer size! | |||
2017-05-01 | krb5: use private buffer for temp string, not receive buffer | Daniel Stenberg | |
2017-05-01 | upload: UPLOAD_BUFSIZE is now for the upload buffer | Daniel Stenberg | |
2017-05-01 | unit1606: do not print/access buffer | Daniel Stenberg | |
It was a wrong assumption that it could do that! | |||
2017-05-01 | http-proxy: use a dedicated CONNECT response buffer | Daniel Stenberg | |
To make it suitably independent of the receive buffer and its flexible size. | |||
2017-05-01 | transfer: fix minor buffer_size mistake | Daniel Stenberg | |
2017-05-01 | failf: use private buffer, don't clobber receive buffer | Daniel Stenberg | |
2017-05-01 | pingpong: use the set buffer size | Daniel Stenberg | |
2017-05-01 | http2: use the correct set buffer size | Daniel Stenberg | |
2017-05-01 | http: don't clobber the receive buffer for timecond | Daniel Stenberg | |
2017-05-01 | buffer_size: make sure it always has the correct size | Daniel Stenberg | |
Removes the need for CURL_BUFSIZE | |||
2017-05-01 | file: use private buffer for C-L output | Daniel Stenberg | |
... instead of clobbering the download buffer. | |||
2017-05-01 | CURLOPT_BUFFERSIZE: 1024 bytes is now the minimum size | Daniel Stenberg | |
The buffer is needed to receive FTP, HTTP CONNECT responses etc so already at this size things risk breaking and smaller is certainly not wise. | |||
2017-05-01 | ftp: use private buffer for temp storage, not receive buffer | Daniel Stenberg | |
2017-05-01 | http: use private user:password output buffer | Daniel Stenberg | |
Don't clobber the receive buffer. | |||
2017-05-01 | anyauthput: remove unused code | Marcel Raad | |
The definition of TRUE was introduced in 4a728747e6f8845e500910e397dfc99aaf4a7984 and is not used anymore since e664cd5826d43930fcc5b5dbaedbec94af33184b. The usage of intptr_t was removed in 32e38b8f42477cf5ce3c3fef2fcc9db82f7fb7be. | |||
2017-05-01 | tool: Fix missing prototype warnings for CURL_DOES_CONVERSIONS | Jay Satiro | |
- Include tool_convert.h where needed. Bug: https://github.com/curl/curl/issues/1460 Reported-by: Gisle Vanem | |||
2017-05-01 | curl_setup: Ensure no more than one IDN lib is enabled | Jay Satiro | |
Prior to this change it was possible for libcurl to be built with both Windows' native IDN lib (normaliz) and libidn2 enabled. It appears that doesn't offer any benefit --and could cause a bug-- since libcurl's IDN handling is written to use either one but not both. Bug: https://github.com/curl/curl/issues/1441#issuecomment-297689856 Reported-by: Gisle Vanem | |||
2017-05-01 | getpart: use correct variable type | Marcel Raad | |
This fixes the following clang warning: getpart.c:201:17: warning: cast from function call of type 'CURLcode' to non-matching type 'int' [-Wbad-function-cast] | |||
2017-05-01 | tests: declare TU-local variables static | Marcel Raad | |
This fixes missing-variable-declarations warnings when building with clang. | |||
2017-05-01 | tool_cb_prg: fix double-promotion warning | Marcel Raad | |
clang complains: tool_cb_prg.c:86:22: error: implicit conversion increases floating-point precision: 'float' to 'double' [-Werror,-Wdouble-promotion] Fix this by using a double instead of a float constant. | |||
2017-05-01 | examples: fixed too long line and too long string warnings | Dan Fandrich | |
2017-04-30 | examples: declare TU-local variables static | Marcel Raad | |
This fixes missing-variable-declarations warnings when building with clang. | |||
2017-04-30 | http2: declare TU-local variables static | Marcel Raad | |
This fixes the following clang warnings: http2.c:184:27: error: no previous extern declaration for non-static variable 'Curl_handler_http2' [-Werror,-Wmissing-variable-declarations] http2.c:204:27: error: no previous extern declaration for non-static variable 'Curl_handler_http2_ssl' [-Werror,-Wmissing-variable-declarations] | |||
2017-04-30 | unit1604: fixed indentation | Dan Fandrich | |
2017-04-30 | unit1604: fixed compilation under Windows, broken in the previous commit | Dan Fandrich | |