Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-07 | tftp: silence bad-function-cast warning | Marcel Raad | |
The cases this warns about are handled elsewhere, so just use an intermediate variable to silence the warning. | |||
2017-05-07 | buildconf: fix hang on IRIX | canavan at github | |
Apparently, /usr/bin/m4 ignores the --version parameter and waits for input from stdin. Fixes #1471 | |||
2017-05-06 | opts: fix bad example formatting \n => \\n | Daniel Stenberg | |
...to render properly nroff. | |||
2017-05-06 | opts: examples added to 8 more libcurl option man pages | Daniel Stenberg | |
2017-05-06 | curl: remove tool_writeenv.[ch] | Daniel Stenberg | |
... and USE_ENVIRONMENT and --environment. It was once added for RISC OS support and its platform specific behavior has been annoying ever since. Added in commit c3c8bbd3b2688da8e, mostly unchanged since then. Most probably not actually used for years. Closes #1463 | |||
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. |