aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2016-01-27getredirect.c: fix variable nameDaniel Stenberg
Reported-by: Bernard Spil
2016-01-27examples/Makefile.inc: specify programs without .c!Daniel Stenberg
2016-01-26THANKS: 6 new contributors from 7.47.0 release notesDaniel Stenberg
2016-01-25FAQ: language fix in 4.19Daniel Stenberg
2016-01-24FAQ: Update to point to GitHubpaulehoffman
Current FAQ didn't make it clear where the main repo is. Closes #612
2016-01-24curl_multi_socket_action.3: line wrapDaniel Stenberg
2016-01-21TODO: "Create remote directories" for SMBSteve Holme
2016-01-16CURLINFO_RESPONSE_CODE.3: add exampleDaniel Schauenberg
2016-01-15ssh: make CURLOPT_SSH_PUBLIC_KEYFILE treat "" as NULLKamil Dudka
The CURLOPT_SSH_PUBLIC_KEYFILE option has been documented to handle empty strings specially since curl-7_25_0-31-g05a443a but the behavior was unintentionally removed in curl-7_38_0-47-gfa7d04f. This commit restores the original behavior and clarifies it in the documentation that NULL and "" have both the same meaning when passed to CURLOPT_SSH_PUBLIC_KEYFILE. Bug: http://curl.haxx.se/mail/lib-2016-01/0072.html
2016-01-13CURLOPT_RESOLVE.3: minor language polishDaniel Stenberg
2016-01-12TODO: "Try to URL encode given URL"Daniel Stenberg
Closes #514
2016-01-10mbedtls: implement CURLOPT_PINNEDPUBLICKEYThomas Glanzmann
2016-01-04curl_global_init.3: Add Windows-specific info for init via DLLJay Satiro
- Add to both curl_global_init.3 and libcurl.3 the caveat for Windows that initializing libcurl via a DLL's DllMain or static initializer could cause a deadlock. Bug: https://github.com/bagder/curl/issues/586 Reported-by: marc-groundctl@users.noreply.github.com
2016-01-04FAQ: clarify who to mail about ECCN clarificationsDaniel Stenberg
2016-01-04progressfunc.c: spellfix descriptionDaniel Stenberg
2016-01-04docs/examples/multi-app.c: fix bad desc formattingDaniel Stenberg
2016-01-04examples: added descriptionsDaniel Stenberg
2016-01-04example/simple.c: add descriptionDaniel Stenberg
2016-01-04getredirect.c: a new exampleDaniel Stenberg
2015-12-24CURLOPT_RANGE: for HTTP servers, range support is optionalDaniel Stenberg
2015-12-15curl --expect100-timeout: addedDaniel Stenberg
This is the new command line option to set the value for the existing libcurl option CURLOPT_EXPECT_100_TIMEOUT_MS
2015-12-14ROADMAP: implemented HTTP2 for HTTPS-onlyDaniel Stenberg
2015-12-14HTTP2.md: spell fix and remove TODO now implementedDaniel Stenberg
2015-12-13http: add libcurl option to allow HTTP/2 for HTTPS onlyDaniel Stenberg
... and stick to 1.1 for HTTP. This is in line with what browsers do and should have very little risk.
2015-12-07version: Add flag CURL_VERSION_PSL for libpslGisle Vanem
2015-12-01THANKS: new contributors from the 7.46.0 releaseDaniel Stenberg
2015-12-01THANKS-filter: single Tim Rühsen spellingDaniel Stenberg
2015-12-01docs/examples: gitignore some more built examplesDaniel Stenberg
2015-11-25examples/README: cut out the incomplete listDaniel Stenberg
... and add a generic explanation for them instead. Each example file should contain its own description these days.
2015-11-23CURLOPT_HEADERFUNCTION.3: fix typoDaniel Stenberg
Refer to _HEADERDATA not _WRITEDATA. Reported-by: Michał Piechowski
2015-11-23TODO: TCP Fast OpenDaniel Stenberg
2015-11-22examples: Added website parse-able descriptions to the e-mail examplesSteve Holme
2015-11-21TODO: Added another 'multi-interface' ideaSteve Holme
2015-11-21examples: Fixed compilation warningsSteve Holme
pop3-multi.c:96:5: warning: implicit declaration of function 'memset' imap-multi.c:96:5: warning: implicit declaration of function 'memset' http2-download.c:226:5: warning: implicit declaration of function 'memset' http2-upload.c:290:5: warning: implicit declaration of function 'memset' http2-upload.c:290:5: warning: implicit declaration of function 'memset'
2015-11-20TODO: remove duplicated titleDaniel Stenberg
2015-11-20TODO: added two more libcurl ideasDaniel Stenberg
Moved some ideas from "next major" to just ordinary ideas since we can always add new things while keeping the old without doing a "next major".
2015-11-20build: Fix theoretical infinite loopsDaniel Shahaf
Add error-checking to 'cd' in a few cases where omitting the checks might result in an infinite loop. Closes #535
2015-11-18FAQ: Grammar changesMaxGiting
Closes https://github.com/bagder/curl/pull/533
2015-11-16CURLMOPT_PUSHFUNCTION.3: *_byname() returns only the first headerDaniel Stenberg
... if there are more than one using the same name
2015-11-13symbols-in-versions: Added new CURLOPTTYPE_STRINGPOINT aliasSteve Holme
...following commit aba281e762 to fix test 1119.
2015-11-09ROADMAP: remove two items already doneDaniel Stenberg
2015-11-07opts: Corrected TLS protocols list to include POP3S rather than POP3Steve Holme
2015-11-06curl.1: remove the overlap --range exampleDaniel Stenberg
... it is just weird to include by default even if it still works.
2015-11-02symbols-in-version: add all CURL_HTTPPOST_* symbolsDaniel Stenberg
2015-11-02formadd: support >2GB files on windowsDaniel Stenberg
Closes #425
2015-10-28curl.1: -E: s/private certificate/client certificateDaniel Stenberg
... as the certificate is strictly speaking not private. Reported-by: John Levon
2015-10-26DISTRO-DILEMMA: removedDaniel Stenberg
Out of date and not kept accurate. It was sort of a problem of the past anyway.
2015-10-23curl.1: --ignore-content-length now works for FTP tooDaniel Stenberg
2015-10-23ftp: allow CURLOPT_IGNORE_CONTENT_LENGTH to ignore sizeKurt Fankhauser
This allows FTP transfers with growing (or shrinking) files without causing a transfer error. Closes #480
2015-10-23CURLOPT_STREAM_WEIGHT.3: call argument 'weight' tooDaniel Stenberg
... and add a little example of what the weight actually means. "Relative proportion of bandwidth".