curl/docs/examples
Daniel Stenberg 1afb67e31b - Jeff Pohlmeyer improved the hiperfifo.c example to use the
CURLMOPT_TIMERFUNCTION callback option.
2007-05-02 13:52:38 +00:00
..
.cvsignore makes things better 2002-08-08 23:05:50 +00:00
10-at-a-time.c Added comments about checking return code and the maxfd counter 2006-10-13 14:01:19 +00:00
Makefile.am Added ghiper.c, Jeff Pohlmeyer's example code using the curl_multi_socket() 2006-10-10 19:46:57 +00:00
Makefile.example re-order the compiler arguments to keep more compiler happy 2002-08-14 23:01:14 +00:00
README ghiper now uses the timer callback in the multi interface 2006-10-12 21:26:50 +00:00
adddocsref.pl add URLs in comments for all libcurl function calls 2004-11-22 13:39:23 +00:00
anyauthput.c HTTP "auth done right". See lib/README.httpauth 2004-11-24 16:11:35 +00:00
cacertinmem.c Theo Borm's example, as was posted here: 2005-08-24 17:07:27 +00:00
cookie_interface.c fixed example since this is how the interface works now 2005-07-28 21:51:20 +00:00
curlgtk.c renamed curl_thread to my_thread to avoid confusion 2004-11-22 13:43:52 +00:00
curlx.c Compiler warning fix 2006-10-29 21:19:23 +00:00
debug.c made the arrow for 'Send SSL data' point in the right direction! 2006-10-20 21:26:10 +00:00
fileupload.c Open "debugit" in binary mode ("rb"). 2004-10-16 13:17:15 +00:00
fopen.c Added comments about checking return code and the maxfd counter 2006-10-13 14:01:19 +00:00
ftp3rdparty.c FTP third transfer support overhaul. See CHANGES for details. 2005-01-21 09:32:32 +00:00
ftpget.c stripped trailing whitespace 2004-08-23 14:22:52 +00:00
ftpgetresp.c use the newer option names 2003-12-08 14:13:19 +00:00
ftpupload.c If you give a *_LARGE option you MUST make sure that the type of the passed-in 2005-01-20 14:24:56 +00:00
ftpuploadresume.c The new ftpuploadresume.c example by Philip Bock 2006-05-11 22:24:44 +00:00
getinfo.c trying a version with URLs for all function calls 2004-11-22 16:24:46 +00:00
getinmemory.c make it compile warning-free and free() the memory before exit 2005-10-10 20:58:18 +00:00
ghiper.c ghiper now uses the timer callback in the multi interface 2006-10-12 21:26:50 +00:00
hiperfifo.c - Jeff Pohlmeyer improved the hiperfifo.c example to use the 2007-05-02 13:52:38 +00:00
htmltidy.c HTML parsing example with libtidy, by Jeff Pohlmeyer 2005-02-02 19:25:37 +00:00
htmltitle.cc Some functions are static here, but extern in libxml's 2005-02-09 15:15:01 +00:00
http-post.c removed trailing whitespace 2004-11-22 14:41:36 +00:00
httpput.c typecast the number passed to CURLOPT_INFILESIZE_LARGE as a curl_off_t 2006-06-30 10:26:26 +00:00
https.c HTTP "auth done right". See lib/README.httpauth 2004-11-24 16:11:35 +00:00
makefile.dj Added cvs id. Use TOPDIR variable. Updated CSOURCES. 2007-03-17 17:58:45 +00:00
multi-app.c Added comments about checking return code and the maxfd counter 2006-10-13 14:01:19 +00:00
multi-debugcallback.c Added comments about checking return code and the maxfd counter 2006-10-13 14:01:19 +00:00
multi-double.c Added comments about checking return code and the maxfd counter 2006-10-13 14:01:19 +00:00
multi-post.c Added comments about checking return code and the maxfd counter 2006-10-13 14:01:19 +00:00
multi-single.c Added comments about checking return code and the maxfd counter 2006-10-13 14:01:19 +00:00
multithread.c mention the openssl callbacks for SSL multithread 2004-11-16 08:49:51 +00:00
opensslthreadlock.c Jeremy Brown's OpenSSL thread-locking example 2005-05-09 21:12:03 +00:00
persistant.c HTTP "auth done right". See lib/README.httpauth 2004-11-24 16:11:35 +00:00
post-callback.c Rene Bernhardt's corrections 2005-12-14 13:10:14 +00:00
postit2.c stripped trailing whitespace 2004-08-23 14:22:52 +00:00
sampleconv.c new little example using the new conversion callbacks added in 7.15.4 2006-04-09 08:39:08 +00:00
sepheaders.c ok stop using old and deprecated options 2006-11-08 08:49:27 +00:00
simple.c stripped trailing whitespace 2004-08-23 14:22:52 +00:00
simplepost.c HTTP "auth done right". See lib/README.httpauth 2004-11-24 16:11:35 +00:00
simplessl.c removed trailing whitespace, indented to curl-style levels 2004-08-12 07:01:20 +00:00
synctime.c Frank Teo provided an updated, mostly docs changed 2006-11-19 21:55:34 +00:00

README

                                  _   _ ____  _
                              ___| | | |  _ \| |
                             / __| | | | |_) | |
                            | (__| |_| |  _ <| |___
                             \___|\___/|_| \_\_____|

This directory is for libcurl programming examples. They are meant to show
some simple steps on how you can build your own application to take full
advantage of libcurl.

If you end up with other small but still useful example sources, please mail
them for submission in future packages and on the web site.

BUILDING

The Makefile.example is an example makefile that could be used to build these
examples. Just edit the file according to your system and requirements first.

Most examples should build fine using a command line like this:

  $ `curl-config --cc --cflags --libs` -o example example.c

Some compilers don't like having the arguments in this order but instead
want you do reorganize them like:

  $ `curl-config --cc` -o example example.c `curl-config --cflags --libs`

*PLEASE* do not use the curl.haxx.se site as a test target for your libcurl
applications/experiments. Even if some of the examples use that site as a URL
at some places, it doesn't mean that the URLs work or that we expect you to
actually torture our web site with your tests!  Thanks.

EXAMPLES

anyauthput.c   - HTTP PUT using "any" authentication method
cacertinmem.c  - Use a built-in PEM certificate to retrieve a https page
cookie_interface.c - shows usage of simple cookie interface
curlgtk.c      - download using a GTK progress bar
curlx.c        - getting file info from the remote cert data
debug.c        - showing how to use the debug callback
fileupload.c   - uploading to a file:// URL
fopen.c        - fopen() layer that supports opening URLs and files
ftp3rdparty.c  - FTP 3rd party transfer
ftpget.c       - simple getting a file from FTP
ftpgetresp.c   - get the response strings from the FTP server
ftpupload.c    - upload a file to an FTP server
ftpuploadresume.c - resume an upload to an FTP server
getinfo.c      - get the Content-Type from the recent transfer
getinmemory.c  - download a file to memory only
ghiper.c       - curl_multi_socket() using code with glib-2
hiperfifo.c    - downloads all URLs written to the fifo, using
                 curl_multi_socket() and libevent
htmltitle.cc   - download a HTML file and extract the <title> tag from a HTML
                 page using libxml
http-post.c    - HTTP POST
httpput.c      - HTTP PUT a local file
https.c        - simple HTTPS transfer
multi-app.c    - a multi-interface app
multi-debugcallback.c - a multi-interface app using the debug callback
multi-double.c - a multi-interface app doing two simultaneous transfers
multi-post.c   - a multi-interface app doing a multipart formpost
multi-single.c - a multi-interface app getting a single file
multithread.c  - an example using multi-treading transfering multiple files
opensslthreadlock.c - show how to do locking when using OpenSSL multi-threaded
persistant.c   - request two URLs with a persistant connection
post-callback.c - send a HTTP POST using a callback
postit2.c      - send a HTTP multipart formpost
sampleconv.c   - showing how a program on a non-ASCII platform would invoke
                 callbacks to do its own codeset conversions instead of using
                 the built-in iconv functions in libcurl
sepheaders.c   - download headers to a separate file
simple.c       - the most simple download a URL source
simplepost.c   - HTTP POST
simplessl.c    - HTTPS example with certificates many options set
synctime.c     - Sync local time by extracing date from remote HTTP servers
10-at-a-time.c - Download many files simultaneously, 10 at a time.