summaryrefslogtreecommitdiff
path: root/docs/examples/ftpupload.c
Commit message (Collapse)AuthorAgeFilesLines
* spelling fixesViktor Szakats2018-02-231-1/+1
| | | | | | | | Detected using the `codespell` tool. Also contains one URL protocol upgrade. Closes https://github.com/curl/curl/pull/2334
* code style: use spaces around equals signsDaniel Stenberg2017-09-111-2/+2
|
* checksrc: stricter no-space-before-paren enforcementDaniel Stenberg2016-12-131-1/+1
| | | | In order to make the code style more uniform everywhere
* examples: adhere to curl code styleDaniel Stenberg2016-02-111-2/+2
| | | | | | | | | | 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.
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* examples: more descriptionsDaniel Stenberg2015-06-181-6/+5
|
* Added error checking for samples.Guenter Knauf2012-07-041-0/+4
|
* examples: fix compiler warningsYang Tse2012-04-131-3/+6
|
* Added a workaround for printing size_t.Guenter Knauf2011-09-231-1/+2
|
* sources: update source headersDaniel Stenberg2011-03-101-3/+15
| | | | | | 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.
* examples: fix compiler warningsDaniel Stenberg2010-12-171-1/+1
|
* examples: use example.com in example URLsDaniel Stenberg2010-10-051-1/+1
|
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-241-1/+0
|
* Use curl_off_t and CURL_FORMAT_CURL_OFF_T for file size.Yang Tse2009-06-081-2/+5
|
* docs/example patches for VMSYang Tse2009-06-051-1/+1
|
* Fixed a surprising number of example programs that were passing int argumentsDan Fandrich2008-05-221-1/+2
| | | | to curl_easy_setopt instead of long.
* fixed missing header; changed bail out from exit() to return().Gunter Knauf2008-02-211-1/+2
| | | | Mentioned on the list by Michal Marek.
* reformatted comment.Gunter Knauf2008-02-201-4/+3
|
* added read callback function in order to prevent crashs on Win32 when linked ↵Gunter Knauf2008-02-201-6/+19
| | | | against DLL:
* fix for new codestyle.Gunter Knauf2008-02-191-1/+1
|
* made changes to work with Win32;Gunter Knauf2008-02-191-8/+11
| | | | replaced fstat() with stat() call and bail out if local file not found.
* Fixed some more simple compile warnings in the examples.Dan Fandrich2007-07-161-0/+1
|
* Fixed some compile warnings and errors and improved portability in theDan Fandrich2007-07-121-4/+3
| | | | | | examples. Removed ftp3rdparty.c since libcurl doesn't support 3rd party FTP transfers any longer.
* If you give a *_LARGE option you MUST make sure that the type of the passed-inDaniel Stenberg2005-01-201-2/+6
| | | | | 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. */
* added comment for windows people about READFUNCTION being neededDaniel Stenberg2004-11-211-0/+6
|
* strip trailing whitespaceDaniel Stenberg2004-05-261-5/+5
|
* David J Meyer's large file support.Daniel Stenberg2004-01-051-1/+1
|
* use the newer option namesDaniel Stenberg2003-12-081-1/+1
|
* Andy Cedilnik's correctionsDaniel Stenberg2003-03-171-0/+3
|
* added ftpupload.cDaniel Stenberg2001-08-291-0/+88