Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-12-06 | clarify that when curl_multi_timeout() returns -1 it just means that there | Daniel Stenberg | |
is no current timeout. It does not mean wait forever and it does not mean do not wait at all. It means there is no timeout value known at this point in time. | |||
2007-12-02 | Michal Marek introduced CURLOPT_PROXY_TRANSFER_MODE which is used to control | Daniel Stenberg | |
the appending of the "type=" thing on FTP URLs when they are passed to a HTTP proxy. Some proxies just don't like that appending (which is done unconditionally in 7.17.1), and some proxies treat binary/ascii transfers better with the appending done! | |||
2007-11-26 | more blurb | Daniel Stenberg | |
2007-11-26 | slightly less outdated | Daniel Stenberg | |
2007-11-22 | Alessandro Vesely helped me improve the --data-urlencode's syntax, parser | Daniel Stenberg | |
and documentation. | |||
2007-11-20 | clarify somewhat what happens to some data when a share is set to be used | Daniel Stenberg | |
2007-11-20 | rephrased | Daniel Stenberg | |
2007-11-20 | ILE RPG binding: OS/400 specific and contained in source distribution | Patrick Monnerat | |
2007-11-20 | Introuced --data-urlencode to the curl tool for easier url encoding of the | Daniel Stenberg | |
data sent in a post. | |||
2007-11-17 | Andres Garcia made the examples build fine on Windows (mingw + msys) when | Daniel Stenberg | |
the lib was built staticly. | |||
2007-11-11 | new ruby binding, curl-multi version 0.1 | Daniel Stenberg | |
2007-11-07 | Add a call to curl_global_cleanup to show how to do a proper shutdown. | Dan Fandrich | |
2007-11-05 | Andres Garcia made it build and run on windows | Daniel Stenberg | |
2007-11-05 | I check the code right now and while() and if() are in majority over while () | Daniel Stenberg | |
and if () so the rule is from now on => no space before the parenthesis. | |||
2007-10-30 | added new people from the 7.17.1 announcement | Daniel Stenberg | |
2007-10-26 | mention --static-libs as added in 7.17.1 | Daniel Stenberg | |
2007-10-25 | Added the --static-libs option to curl-config | Dan Fandrich | |
2007-10-15 | Mention first version with CURLOPT_COPYPOSTFIELDS. | Dan Fandrich | |
Don't confuse NUL with NULL. | |||
2007-10-15 | Updated minimum libcurl size | Dan Fandrich | |
2007-10-15 | Fix dynamic CURLOPT_POSTFIELDS bug: back to static. | Patrick Monnerat | |
CURLOPT_COPYPOSTFIELDS option added for dynamic. Fix some OS400 features. | |||
2007-10-13 | Chris Leighton: | Daniel Stenberg | |
My understanding is that we use "number" for discrete variables and "amount" for continuous variables. So you can say "The amount of flour required depends on..." or, "Last night I consumed a large amount of beer!". And, "That tank contains a large number of fish" or, "Over the week I consumed a number of cases of beer." I think that features are discrete, so the man page would read "...the number of features will make your head spin!". | |||
2007-10-09 | Documented error codes 77-80, and fixed the one for 60. | Dan Fandrich | |
2007-10-09 | Add a paragraph about CURLOPT_CUSTOMREQUEST not actually changing libcurl's | Daniel Stenberg | |
behavior, it only changes the actual request method keyword and this is not always what the user/app wants. | |||
2007-10-09 | Michal Marek removed the no longer existing return codes from the curl.1 | Daniel Stenberg | |
man page. | |||
2007-10-07 | Known bug #47, which confused libcurl if doing NTLM auth over a proxy with | Daniel Stenberg | |
a response that was larger than 16KB is now improved slightly so that now the restriction at 16KB is for the headers only and it should be a rare situation where the response-headers exceed 16KB. Thus, I consider #47 fixed and the header limitation is now known as known bug #48. | |||
2007-10-05 | add url to the wikipedia article for a longer description | Daniel Stenberg | |
2007-10-05 | Alexey Pesternikov documented CURLOPT_OPENSOCKETDATA and | Daniel Stenberg | |
CURLOPT_OPENSOCKETFUNCTION | |||
2007-10-05 | Michael Wallner made the CULROPT_COOKIELIST option support a new magic | Daniel Stenberg | |
string: "FLUSH". Using that will cause libcurl to flush its cookies to the CURLOPT_COOKIEJAR file. | |||
2007-10-04 | The new file docs/libcurl/ABI describes how we view ABI breakages, soname | Daniel Stenberg | |
bumps and what the version number's significance to all that is. | |||
2007-10-03 | people from the 7.17.0 announcement | Daniel Stenberg | |
2007-10-03 | I renamed the CURLE_SSL_PEER_CERTIFICATE error code to | Daniel Stenberg | |
CURLE_PEER_FAILED_VERIFICATION (standard CURL_NO_OLDIES style), and made this return code get used by the previous SSH MD5 fingerprint check in case it fails. | |||
2007-10-03 | Based on a patch brought by Johnny Luong, libcurl now offers | Daniel Stenberg | |
CURLOPT_SSH_HOST_PUBLIC_KEY_MD5 and the curl tool --hostpubmd5. They both make the SCP or SFTP connection verify the remote host's md5 checksum of the public key before doing a connect, to reduce the risk of a man-in-the-middle attack. | |||
2007-10-02 | known bug #46: chunked-encoded CONNECT responses from a http proxy now works. | Daniel Stenberg | |
Added test case 1008 to verify. Note that #47 is still there. | |||
2007-10-02 | document --post301, based on the phrasing in curl_easy_setopt.3 for | Daniel Stenberg | |
CURLOPT_POST301 written by Philip Langdale | |||
2007-10-02 | CURLOPT_POST301 section, added by Philip Langdale | Daniel Stenberg | |
2007-09-25 | a new Lua binding and I shortened the wording on several bindings by cutting | Daniel Stenberg | |
out "written" | |||
2007-09-24 | Immanuel Gregoire fixed KNOWN_BUGS #44: --ftp-method nocwd did not handle | Daniel Stenberg | |
URLs ending with a slash properly (it should list the contents of that directory). Test case 351 brought back and also test 1010 was added. | |||
2007-09-24 | Bad use of "its" replaceed with a rephrase. I noticed this flaw thanks to the | Daniel Stenberg | |
Debian bug report http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=443734 | |||
2007-09-21 | --proxy-negotiate is added in 7.17.1 | Daniel Stenberg | |
2007-09-21 | Mark Davies fixed Negotiate authentication over proxy, and also introduced | Daniel Stenberg | |
the --proxy-negotiate command line option to allow a user to explicitly select it. | |||
2007-09-20 | reformatted to be similar to the FAQ to make it look nicer on the site: | Daniel Stenberg | |
http://curl.haxx.se/docs/contribute.html | |||
2007-09-20 | Achint Mehta pointed out this dead link | Daniel Stenberg | |
2007-09-20 | the winsock stuff is made by curl_global_init | Daniel Stenberg | |
2007-09-20 | fix bad link | Daniel Stenberg | |
2007-09-18 | Rob Crittenden provided an NSS update with the following highlights: | Daniel Stenberg | |
o It looks for the NSS database first in the environment variable SSL_DIR, then in /etc/pki/nssdb, then it initializes with no database if neither of those exist. o If the NSS PKCS#11 libnspsem.so driver is available then PEM files may be loaded, including the ca-bundle. If it is not available then only certificates already in the NSS database are used. o Tries to detect whether a file or nickname is being passed in so the right thing is done o Added a bit of code to make the output more like the OpenSSL module, including displaying the certificate information when connecting in verbose mode o Improved handling of certificate errors (expired, untrusted, etc) The libnsspem.so PKCS#11 module is currently only available in Fedora 8/rawhide. Work will be done soon to upstream it. The NSS module will work with or without it, all that changes is the source of the certificates and keys. | |||
2007-09-18 | mention the prefered source code line length to be less than 80 columns | Daniel Stenberg | |
2007-09-13 | Compile samples with -DCURL_NO_OLDIES | Dan Fandrich | |
2007-09-13 | Remove remaining traces of ftp3rdparty.c and mention htmltidy.c | Dan Fandrich | |
2007-09-13 | added some further stuff from the feature-requests tracker, and a bunch of URLs | Daniel Stenberg | |
to the specific tracker entries | |||
2007-09-09 | A brand new binding for SP-Forth was written | Daniel Stenberg | |