aboutsummaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2005-01-25Ian Ford asked about support for the FTP command ACCT, and I discovered it isDaniel Stenberg
present in RFC959... so now (lib)curl supports it as well. --ftp-account and CURLOPT_FTP_ACCOUNT set the account string. (The server may ask for an account string after PASS have been sent away. The client responds with "ACCT [account string]".) Added test case 228 and 229 to verify the functionality. Updated the test FTP server to support ACCT somewhat.
2005-01-22next release will be 7.13.0Daniel Stenberg
2005-01-21FTP third transfer support overhaul. See CHANGES for details.Daniel Stenberg
2005-01-18skip sys/socket.h on windows CEDaniel Stenberg
2004-12-20Fixed a compile warning introduced by making the protocol table const. ThisDan Fandrich
involves a binary-compatible change to the API struct curl_version_info_data
2004-12-20start working on 7.12.4Daniel Stenberg
2004-12-14Moved the CURLE_SSL_ENGINE_INITFAILED error code last in the list so thatDaniel Stenberg
the others remain at previous values.
2004-12-13Added CURLcode CURLE_SSL_ENGINE_INITFAILED,Gisle Vanem
Added CURLINFO_SLIST type for returing a 'struct slist' in curl_easy_getinfo(). Added CURLINFO_SSL_ENGINES.
2004-12-11undef more obsolete defines if CURL_NO_OLDIES is definedDaniel Stenberg
2004-11-24HTTP "auth done right". See lib/README.httpauthDaniel Stenberg
2004-11-13Update comment.Gisle Vanem
2004-11-12Netware target (hosted on Linux gcc) doesn't supportGisle Vanem
or need __declspec.
2004-11-11fix curl.h includeDaniel Stenberg
2004-11-09Changes for removing libcurl.def file on Win32.Gisle Vanem
Mark public functions with "CURL_EXTERN".
2004-11-02Paul Nolan fix to make libcurl build nicely on Windows CEDaniel Stenberg
2004-10-19CURLINFO_NUM_CONNECTS and moreDaniel Stenberg
2004-10-18start over on 7.12.3Daniel Stenberg
2004-10-06removed tabs and trailing whitespace from sourceDaniel Stenberg
2004-09-30- Larry Campbell added CURLINFO_OS_ERRNO to curl_easy_getinfo() that allows anDaniel Stenberg
app to retrieve the errno variable after a (connect) failure. It will make sense to provide this for more failures in a more generic way, but let's start like this.
2004-09-30Günter Knauf and Casey O'Donnell worked out an extra #if condition for theDaniel Stenberg
curl/multi.h header to work better in winsock-using apps.
2004-09-16Added CURLOPT_FTPSSLAUTHDaniel Stenberg
2004-09-10minor indent changeDaniel Stenberg
2004-08-17removed trailing whitespaceDaniel Stenberg
2004-08-107.12.2 work in progressDaniel Stenberg
2004-07-29oops, curl_easy_reset is a voidDaniel Stenberg
2004-07-29provide a curl_easy_reset() protoDaniel Stenberg
2004-07-24curl_easy_reset() added. Need testing and docs. I also think we should makeDaniel Stenberg
the initial setting up the struct should use this single function to avoid having the initialisation code at two places.
2004-06-21added CURL_READFUNC_ABORTDaniel Stenberg
2004-06-18Gisle's "SSL patch" from June 16th 2004, modified by me as discussed on theDaniel Stenberg
mailing list.
2004-06-09Added CURL_FORMADD_DISABLED when libcurl is built with HTTP disabledDaniel Stenberg
2004-06-08Kjetil Jacobsen pointed out that the CURLOPT_FILETIME option was wronglyDaniel Stenberg
marked as accepting an objectpoint argument while it actually assumes a long. The comment was also grossly misleading. The man page was and is correct though.
2004-06-02*seven* new options to support 3rd party FTP transfersDaniel Stenberg
2004-06-027.12.1-CVS in progressDaniel Stenberg
2004-06-02Gisle's adjustments to allow building with lcc-win32Daniel Stenberg
2004-05-24delete trailing whitespaceDaniel Stenberg
2004-05-14Added CURLSHE_NOMEMDaniel Stenberg
2004-05-11make the libidn pointer in the version struct a constDaniel Stenberg
2004-05-11curl_global_init_mem() allows the memory functions to be replaced.Daniel Stenberg
memory.h is included everywhere for this.
2004-05-04removed curl_formparse() from the libraryDaniel Stenberg
2004-04-30deprecated functionsDaniel Stenberg
2004-04-26typedef CURL in the curl.h file instead of only having a single useful typedefDaniel Stenberg
in the separate types.h
2004-04-26the next release is planned to become 7.12.0Daniel Stenberg
2004-04-23define the obsolete options to different values to prevent "duplicate case"Daniel Stenberg
situtations in bindings that still have switch() cases for them
2004-03-31we're working on 7.11.2-CVS right nowDaniel Stenberg
2004-03-25tcp-nodelay patch by Joe HalpinDaniel Stenberg
2004-03-25make clean now removes *dist files too that might be leftovers fromDaniel Stenberg
'maketgz'
2004-03-24Added protos for the upcoming curl_*_strerror() functionsDaniel Stenberg
2004-03-22Introducing curl/curlver.h for keeping the curl version info only.Daniel Stenberg
2004-03-17Günter Knauf's NetWare changes.Daniel Stenberg
2004-03-12Added CURLOPT_POSTFIELDSIZE_LARGE to offer a large file version of theDaniel Stenberg
CURLOPT_POSTFIELDSIZE option to allow really big HTTP POSTs.