aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/ftpupload.c
AgeCommit message (Collapse)Author
2019-11-08copyrights: fix copyright year rangeDaniel Stenberg
.. because checksrc's copyright year check stopped working. Ref: https://github.com/curl/curl/pull/4547 Closes https://github.com/curl/curl/pull/4549
2018-02-23spelling fixesViktor Szakats
Detected using the `codespell` tool. Also contains one URL protocol upgrade. Closes https://github.com/curl/curl/pull/2334
2017-09-11code style: use spaces around equals signsDaniel Stenberg
2016-12-13checksrc: stricter no-space-before-paren enforcementDaniel Stenberg
In order to make the code style more uniform everywhere
2016-02-11examples: adhere to curl code styleDaniel Stenberg
All plain C examples now (mostly) adhere to the curl code style. While they are only examples, they had diverted so much and contained all sorts of different mixed code styles by now. Having them use a unified style helps users and readability. Also, as they get copy-and-pasted widely by users, making sure they're clean and nice is a good idea. 573 checksrc warnings were addressed.
2016-02-03URLs: change all http:// URLs to https://Daniel Stenberg
2015-06-18examples: more descriptionsDaniel Stenberg
2012-07-04Added error checking for samples.Guenter Knauf
2012-04-13examples: fix compiler warningsYang Tse
2011-09-23Added a workaround for printing size_t.Guenter Knauf
2011-03-10sources: update source headersDaniel Stenberg
All C and H files now (should) feature the proper project curl source code header, which includes basic info, a copyright statement and some basic disclaimers.
2010-12-17examples: fix compiler warningsDaniel Stenberg
2010-10-05examples: use example.com in example URLsDaniel Stenberg
2010-03-24remove the CVSish $Id$ linesDaniel Stenberg
2009-06-08Use curl_off_t and CURL_FORMAT_CURL_OFF_T for file size.Yang Tse
2009-06-05docs/example patches for VMSYang Tse
2008-05-22Fixed a surprising number of example programs that were passing int argumentsDan Fandrich
to curl_easy_setopt instead of long.
2008-02-21fixed missing header; changed bail out from exit() to return().Gunter Knauf
Mentioned on the list by Michal Marek.
2008-02-20reformatted comment.Gunter Knauf
2008-02-20added read callback function in order to prevent crashs on Win32 when linked ↵Gunter Knauf
against DLL:
2008-02-19fix for new codestyle.Gunter Knauf
2008-02-19made changes to work with Win32;Gunter Knauf
replaced fstat() with stat() call and bail out if local file not found.
2007-07-16Fixed some more simple compile warnings in the examples.Dan Fandrich
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.
2005-01-20If you give a *_LARGE option you MUST make sure that the type of the passed-inDaniel Stenberg
argument is a curl_off_t. If you use CURLOPT_INFILESIZE (without _LARGE) you must make sure that to pass in a type 'long' argument. */
2004-11-21added comment for windows people about READFUNCTION being neededDaniel Stenberg
2004-05-26strip trailing whitespaceDaniel Stenberg
2004-01-05David J Meyer's large file support.Daniel Stenberg
2003-12-08use the newer option namesDaniel Stenberg
2003-03-17Andy Cedilnik's correctionsDaniel Stenberg
2001-08-29added ftpupload.cDaniel Stenberg