aboutsummaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2007-09-21Mark Davies fixed Negotiate authentication over proxy, and also introducedDaniel Stenberg
the --proxy-negotiate command line option to allow a user to explicitly select it.
2007-09-20reformatted 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-20Achint Mehta pointed out this dead linkDaniel Stenberg
2007-09-20the winsock stuff is made by curl_global_initDaniel Stenberg
2007-09-20fix bad linkDaniel Stenberg
2007-09-18Rob 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-18mention the prefered source code line length to be less than 80 columnsDaniel Stenberg
2007-09-13Compile samples with -DCURL_NO_OLDIESDan Fandrich
2007-09-13Remove remaining traces of ftp3rdparty.c and mention htmltidy.cDan Fandrich
2007-09-13added some further stuff from the feature-requests tracker, and a bunch of URLsDaniel Stenberg
to the specific tracker entries
2007-09-09A brand new binding for SP-Forth was writtenDaniel Stenberg
2007-09-06two new CONNECT response problems that have appearedDaniel Stenberg
2007-09-05Minor updatesDan Fandrich
2007-09-03added some comments for MingW32 builds.Gunter Knauf
2007-09-01bash is not required when compiling under MinixDan Fandrich
2007-08-31Renamed the CURLE_FTP_SSL_FAILED error code to CURLE_USE_SSL_FAILED.Dan Fandrich
Renamed the curl_ftpssl enum to curl_usessl and its enumerated constants, creating macros for backward compatibility.
2007-08-30Renamed several libcurl error codes and options to make them more generalDan Fandrich
and allow reuse by multiple protocols. Several unused error codes were removed. In all cases, macros were added to preserve source (and binary) compatibility with the old names. These macros are subject to removal at a future date, but probably not before 2009. An application can be tested to see if it is using any obsolete code by compiling it with the CURL_NO_OLDIES macro defined. Documented some newer error codes in libcurl-error(3)
2007-08-23Mention OS/400 and TPFDan Fandrich
2007-08-23--libcurl does not support -FDaniel Stenberg
2007-08-221) the talk about strings used by libcurl doesn't apply to libcurl >= 7.17.0Daniel Stenberg
2) added nroff header
2007-08-17ignore all the binaries and the .deps and .libsDaniel Stenberg
2007-08-17 NEXT soname bumpDaniel Stenberg
* #undef CURL_FTP_HTTPSTYLE_HEAD in lib/ftp.c to remove the HTTP-style headers from being output in NOBODY requests over ftp
2007-08-14LDAP is no longer excluded on Minix.Dan Fandrich
2007-08-14updated NetWare docu about recent LDAP changes.Gunter Knauf
2007-08-14the curl_multi_handle_control() ideaDaniel Stenberg
2007-08-11Patrick Monnerat modified the LDAP code and approach in curl. Starting now,Daniel Stenberg
the configure script checks for openldap and friends and we link with those libs just like we link all other third party libraries, and we no longer dlopen() those libraries. Our private header file lib/ldap.h was renamed to lib/curl_ldap.h due to this. I set a tag in CVS (curl-7_17_0-preldapfix) just before this commit, just in case.
2007-08-07Usage of the BCURLOPT_PROGRESSFUNCTION callback is not recommended when usingDaniel Stenberg
the multi interface, but having the comment in here caused more questions than we fixed problems so I remove it now. It still works fine.
2007-08-07add URL to more "generated public config.h" detailsDaniel Stenberg
2007-08-06Peteris Krumins pointed out that MingW32 doesnt provide a batch file to set ↵Gunter Knauf
the path to the bin folder.
2007-08-06ontributors from the 7.16.4 release notes and a removed duplicateDaniel Stenberg
2007-08-06removed the rsaglue hint since it doesn't apply to modern OpenSSL, and addedDaniel Stenberg
some brief hints about gssapi and libssh2
2007-08-06we now support GSS/Kerberos 5 for ftp file transfers!Daniel Stenberg
2007-08-03Peteris Krumins pointed out some MingW32 related build issues.Gunter Knauf
2007-08-02clarify that setting POSTFIELDS to NULL or "" is not enough to make a zero byteDaniel Stenberg
POST
2007-08-01Patrick Monnerat and I modified libcurl so that now it *copies* all stringsDaniel Stenberg
passed to it with curl_easy_setopt()! Previously it has always just refered to the data, forcing the user to keep the data around until libcurl is done with it. That is now history and libcurl will instead clone the given strings and keep private copies.
2007-07-30users should use the CURLMOPT_TIMERFUNCTION rather than curl_multi_timeoutDaniel Stenberg
when using the socket API
2007-07-30less blocking these daysDaniel Stenberg
2007-07-30updated based on suggestion from Jeff PohlmeyerDaniel Stenberg
2007-07-29Added "4.15 FTPS doesn't work" and updated a few other sections slightlyDaniel Stenberg
2007-07-20Document pwd as an sftp quote command for curl(1), and show it asDan Fandrich
lower case for consistency since sftp commands are case insensitive.
2007-07-19minor addition, re-count of the number of lines of codeDaniel Stenberg
2007-07-18SFTP also supports PWDJames Housley
2007-07-18Added the list of sftp quote commands.Dan Fandrich
2007-07-16Fixed some more simple compile warnings in the examples.Dan Fandrich
2007-07-1645. libcurl built to support ipv6 uses getaddrinfo() to resolve host names.Daniel Stenberg
getaddrinfo() sorts the response list which effectively kills how libcurl deals with round-robin DNS entries. All details: http://curl.haxx.se/mail/lib-2007-07/0168.html initial suggested function to use for randomizing the response: http://curl.haxx.se/mail/lib-2007-07/0178.html
2007-07-13The examples don't need access to curl internal source files.Dan Fandrich
2007-07-13Daniel Cater added the mentioning of CURL_DISABLE_TFTPDaniel Stenberg
2007-07-13Daniel Cater: libcurl-errors needs updating to reflect a couple of deprecatedDaniel Stenberg
error codes
2007-07-12Fixed some compile warnings and errors and improved portability in theDan Fandrich
examples. Removed ftp3rdparty.c since libcurl doesn't support 3rd party FTP transfers any longer.
2007-07-12make it compile fineDaniel Stenberg