curl/docs/examples
Daniel Stenberg c927c92086 httpcustomheader.c: make use of more CURLOPT_HTTPHEADER features
... and only do a single request for clarity.
2014-10-16 11:38:32 +02:00
..
.gitignore
10-at-a-time.c
adddocsref.pl
anyauthput.c
asiohiper.cpp
cacertinmem.c Update instances of some obsolete CURLOPTs to their new names 2014-07-05 22:47:13 +02:00
certinfo.c
chkspeed.c
cookie_interface.c
curlgtk.c
curlx.c
debug.c
evhiperfifo.c examples: remove all use of CURLM_CALL_MULTI_PERFORM 2014-02-17 08:25:39 +01:00
externalsocket.c
fileupload.c
fopen.c
ftp-wildcard.c ftp-wildcard.c: spell fix 2014-09-09 11:10:18 +02:00
ftpget.c
ftpgetinfo.c
ftpgetresp.c Update instances of some obsolete CURLOPTs to their new names 2014-07-05 22:47:13 +02:00
ftpsget.c
ftpupload.c
ftpuploadresume.c
getinfo.c
getinmemory.c
ghiper.c examples: remove all use of CURLM_CALL_MULTI_PERFORM 2014-02-17 08:25:39 +01:00
hiperfifo.c examples: remove all use of CURLM_CALL_MULTI_PERFORM 2014-02-17 08:25:39 +01:00
href_extractor.c example: use correct type (long) for CURLOPT_FOLLOWLOCATION 2014-07-03 22:47:28 +02:00
htmltidy.c
htmltitle.cpp
http-post.c
httpcustomheader.c httpcustomheader.c: make use of more CURLOPT_HTTPHEADER features 2014-10-16 11:38:32 +02:00
httpput.c
https.c
imap-append.c imap-append.c: Fixed compilation errors on some platforms 2014-03-30 10:56:51 +01:00
imap-copy.c
imap-create.c
imap-delete.c
imap-examine.c
imap-fetch.c
imap-list.c
imap-lsub.c
imap-multi.c
imap-noop.c
imap-search.c
imap-ssl.c
imap-store.c
imap-tls.c
Makefile.am
makefile.dj
Makefile.example
Makefile.inc
Makefile.m32 Remove all traces of FBOpenSSL SPNEGO support 2014-07-16 17:26:08 +02:00
Makefile.netware Remove all traces of FBOpenSSL SPNEGO support 2014-07-16 17:26:08 +02:00
multi-app.c
multi-debugcallback.c
multi-double.c
multi-post.c
multi-single.c
multi-uv.c multi-uv.c: call curl_multi_info_read() better 2014-10-07 10:20:41 +02:00
multithread.c
opensslthreadlock.c
persistant.c
pop3-dele.c
pop3-list.c
pop3-multi.c
pop3-noop.c
pop3-retr.c
pop3-ssl.c
pop3-stat.c
pop3-tls.c
pop3-top.c
pop3-uidl.c
post-callback.c
postinmemory.c
postit2.c
progressfunc.c
README
resolve.c
rtsp.c Update instances of some obsolete CURLOPTs to their new names 2014-07-05 22:47:13 +02:00
sampleconv.c
sendrecv.c
sepheaders.c Update instances of some obsolete CURLOPTs to their new names 2014-07-05 22:47:13 +02:00
sessioninfo.c
sftpget.c
simple.c
simplepost.c
simplessl.c Update instances of some obsolete CURLOPTs to their new names 2014-07-05 22:47:13 +02:00
smooth-gtk-thread.c
smtp-expn.c
smtp-mail.c
smtp-multi.c
smtp-ssl.c
smtp-tls.c
smtp-vrfy.c
synctime.c
threaded-ssl.c
url2file.c Update instances of some obsolete CURLOPTs to their new names 2014-07-05 22:47:13 +02:00
usercertinmem.c Update instances of some obsolete CURLOPTs to their new names 2014-07-05 22:47:13 +02:00
version-check.pl
xmlstream.c

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

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
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
htmltidy.c     - download a document and use libtidy to parse the HTML
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
imap.c         - simple IMAP 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
multi-uv.c     - a multi-interface app using libuv
multithread.c  - an example using multi-treading transferring multiple files
opensslthreadlock.c - show how to do locking when using OpenSSL multi-threaded
persistant.c   - request two URLs with a persistent connection
pop3s.c        - POP3S transfer
pop3slist.c    - POP3S LIST
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 extracting date from remote HTTP servers
url2file.c     - download a document and store it in a file
xmlstream.c    - Stream-parse a document using the streaming Expat parser
10-at-a-time.c - Download many files simultaneously, 10 at a time.