Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-05-27 | opts: more examples added in option man pages | Daniel Stenberg | |
2017-05-25 | TODO: 6.4 is done, send telnet data in chunks | Daniel Stenberg | |
2017-05-25 | docs/CURLOPT_SSLVERSION.3: Correct define name in example | Phil Crump | |
Closes #1509 | |||
2017-05-24 | examples: fix Wimplicit-fallthrough warnings | Marcel Raad | |
This is contained in -Wextra with GCC 7. | |||
2017-05-24 | LDAP: documentation update per #878 changes (#1506) | Sergei Nikulov | |
2017-05-23 | redirect: store the "would redirect to" URL when max redirs is reached | Daniel Stenberg | |
Test 1261 added to verify. Reported-by: Lloyd Fournier Fixes #1489 Closes #1497 | |||
2017-05-19 | ghiper.c/hiperfifo.c: add comment about missing timer functionality | Daniel Stenberg | |
It takes someone to read up on the APIs of these libraries to figure out how to do this correctly. Reported-by: Michael Kaufmann Closes #1253 | |||
2017-05-19 | asiohiper.cpp / evhiperfifo.c: deal with negative timerfunction input | Daniel Stenberg | |
That means delete the timer. Reported-by: Michael Kaufmann Ref: #1253 | |||
2017-05-18 | cmdline-opts/write-out.d: s/-L/--location | Daniel Stenberg | |
Since the man page generator wants the long option name version to generate the proper output. | |||
2017-05-17 | oauth2-bearer.d: mention the <token> argument | Daniel Stenberg | |
2017-05-16 | docs/cmdline-opts/config.d: edit for language | Daniel Stenberg | |
2017-05-15 | SecureTransport/DarwinSSL: Implement public key pinning | moparisthebest | |
Closes #1400 | |||
2017-05-15 | man pages: fix example syntax errors | Daniel Stenberg | |
follow-up to 5ddad099b42b50 | |||
2017-05-15 | docs/libcurl/opts: added more examples in man pages | Daniel Stenberg | |
2017-05-15 | CURLOPT_HTTPPROXYTUNNEL: clarify, add example | Daniel Stenberg | |
2017-05-13 | url.c: add a compile-time check that CURL_MAX_WRITE_SIZE is large enough | Dan Fandrich | |
Some code (e.g. Curl_fillreadbuffer) assumes that this buffer is not exceedingly tiny and will break if it is. This same check is already done at run time in the CURLOPT_BUFFERSIZE option. | |||
2017-05-13 | THANKS: add a few missing names | Daniel Stenberg | |
... I found them in the commit logs from the early years | |||
2017-05-12 | FAQ: add 7.4 to toc | Daniel Stenberg | |
... and delete trailing whitespace Fixes #1484 | |||
2017-05-11 | cookie_interface: fix -Wcomma warning | Marcel Raad | |
clang 5.0 complains: possible misuse of comma operator here [-Wcomma] | |||
2017-05-08 | curl: generate the --help output | Daniel Stenberg | |
... using the docs/cmdline-opts/gen.pl script, so that we get all the command line option documentation from the same source. The generation of the list has to be done manually and pasted into the source code. Closes #1465 | |||
2017-05-08 | curl.1: depend the build on the Makefile.inc too | Daniel Stenberg | |
... to also make it update when we remove files, like we did for --environment in commit a8e388dd1095. | |||
2017-05-07 | sendrecv: fix MinGW-w64 warning | Marcel Raad | |
The first argument to select is an int, while curl_socket_t is unsigned long long when using WinSock. It's ignored anyway [1]. [1] https://msdn.microsoft.com/en-us/library/windows/desktop/ms740141.aspx | |||
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-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-04 | CURLINFO_REDIRECT_URL.3: add example | Daniel Stenberg | |
2017-05-04 | CURLINFO_EFFECTIVE_URL.3: add example | Daniel Stenberg | |
2017-05-03 | abstract-unix-socket.d: shorten the help text to fit within 79 cols | Daniel Stenberg | |
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 | 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-27 | cookie_interface.c: changed the other domain to example.com too | Daniel Stenberg | |
2017-04-27 | cookie_interface.c: fix cookie domain so the example works | Daniel Stenberg | |
2017-04-26 | Makefile: fix make dist | Dan Fandrich | |
Commit 80a87e8a broke 'make dist' as it can't handle installing from absolute target names. Rearranged the dependencies so the absolute name is used for building but the relative name is use for distributing. | |||
2017-04-25 | examples: ftpuploadfrommem.c | Daniel Stenberg | |
Uploads data to an FTP site, directly from memory. Closes #1451 | |||
2017-04-25 | nss: load libnssckbi.so if no other trust is specified | Kamil Dudka | |
The module contains a more comprehensive set of trust information than supported by nss-pem, because libnssckbi.so also includes information about distrusted certificates. Reviewed-by: Kai Engert Closes #1414 | |||
2017-04-24 | Makefile: avoid use of GNU-specific form of $< | Dan Fandrich | |
$< is only allowed in implicit rules in some non-GNU makes (e.g. BSD, AIX) so avoid use elsewhere by referencing the dependent curl.1 file directly instead. This is somewhat tricky because the file is supplied in the packaged tar ball (but not in git) but must still be able to be rebuilt when its dependencies change. The right thing must happen in both tar ball and git source trees, as well as in both in-tree and out-of-tree builds. | |||
2017-04-19 | THANKS: add contributors from 7.54.0 release notes | Daniel Stenberg | |
2017-04-10 | libcurl-thread.3: fixed a bad macro that caused test 1140 to fail | Dan Fandrich | |
2017-04-09 | libcurl-thread.3: also mention threaded-resolver | Daniel Stenberg | |
Reported-by: Alex Bligh Bug: https://curl.haxx.se/mail/lib-2017-04/0044.html | |||
2017-04-08 | CURLINFO_SCHEME.3: fix variable type | Jay Satiro | |
- Change documented param type to char ** from incorrect long *. | |||
2017-04-08 | INSTALL.md: fix secure transport configure arguments | Marcel Raad | |
--without-ssl is needed instead of --with-winssl. | |||
2017-04-07 | BUGS: "Bugs in old versions" | Daniel Stenberg | |
2017-04-06 | INSTALL.cmake: more problems | Daniel Stenberg | |
and mention specific issues where they are discussed | |||
2017-04-04 | docs: minor typo in write-out.d | Richlv | |
Closes #1382 | |||
2017-04-03 | docs: added examples for CURLINFO_FILETIME.3 and CURLOPT_FILETIME.3 | Daniel Stenberg | |