Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-06 | runtests.pl: simplify the datacheck read section | Dan Fandrich | |
Also, document that numbered datacheck sections are possible. | |||
2017-05-05 | tests: fix -Wcast-qual warnings | Marcel Raad | |
Avoid casting string literals to non-const char *. | |||
2017-05-05 | docs/opts: 24 more man pages now have examples | Daniel Stenberg | |
2017-05-05 | docs/opts: 23 more man pages now have examples | Daniel Stenberg | |
2017-05-05 | tests/server: run checksrc by default in debug-builds | Daniel Stenberg | |
2017-05-05 | curl_slist_append.3: clarify a NULL input creates a new list | Daniel Stenberg | |
2017-05-05 | unit1305: fix compiler warning | Marcel Raad | |
calloc and ai_addrlen expect different (usually unsigned) types. | |||
2017-05-05 | runtests: use -R for random order | Daniel Stenberg | |
Suggested-by: Dan Fandrich | |||
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 |