You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
curl/docs/examples
Daniel Stenberg 9533092511 Rene Bernhardt's corrections 18 years ago
..
.cvsignore makes things better 21 years ago
Makefile.am Theo Borm's example, as was posted here: 18 years ago
Makefile.example re-order the compiler arguments to keep more compiler happy 21 years ago
README htmltitle 19 years ago
adddocsref.pl add URLs in comments for all libcurl function calls 19 years ago
anyauthput.c HTTP "auth done right". See lib/README.httpauth 19 years ago
cacertinmem.c Theo Borm's example, as was posted here: 18 years ago
cookie_interface.c fixed example since this is how the interface works now 18 years ago
curlgtk.c renamed curl_thread to my_thread to avoid confusion 19 years ago
curlx.c re-indented to curl style 19 years ago
debug.c debug.c is a fresh new example showing how to use the DEBUGFUNCTION to get 19 years ago
fileupload.c Open "debugit" in binary mode ("rb"). 19 years ago
fopen.c remove curl_ prefix from functions not present in libcurl 19 years ago
ftp3rdparty.c FTP third transfer support overhaul. See CHANGES for details. 19 years ago
ftpget.c stripped trailing whitespace 19 years ago
ftpgetresp.c use the newer option names 20 years ago
ftpupload.c If you give a *_LARGE option you MUST make sure that the type of the passed-in 19 years ago
getinfo.c trying a version with URLs for all function calls 19 years ago
getinmemory.c make it compile warning-free and free() the memory before exit 18 years ago
htmltidy.c HTML parsing example with libtidy, by Jeff Pohlmeyer 19 years ago
htmltitle.cc Some functions are static here, but extern in libxml's 19 years ago
http-post.c removed trailing whitespace 19 years ago
httpput.c add a URL to an article about making Apache support PUT 19 years ago
https.c HTTP "auth done right". See lib/README.httpauth 19 years ago
makefile.dj Peteris Krumins added CURLOPT_COOKIELIST and CURLINFO_COOKIELIST, which is a 18 years ago
multi-app.c *** empty log message *** 19 years ago
multi-debugcallback.c multi interface, debug callback 19 years ago
multi-double.c Jeff pointed out this flaw in the example 21 years ago
multi-post.c HTTP "auth done right". See lib/README.httpauth 19 years ago
multi-single.c remove trailing whitespace 19 years ago
multithread.c mention the openssl callbacks for SSL multithread 19 years ago
opensslthreadlock.c Jeremy Brown's OpenSSL thread-locking example 18 years ago
persistant.c HTTP "auth done right". See lib/README.httpauth 19 years ago
post-callback.c Rene Bernhardt's corrections 18 years ago
postit2.c stripped trailing whitespace 19 years ago
sepheaders.c cut off old crappy win32 comments and use the proper global_init instead 20 years ago
simple.c stripped trailing whitespace 19 years ago
simplepost.c HTTP "auth done right". See lib/README.httpauth 19 years ago
simplessl.c removed trailing whitespace, indented to curl-style levels 19 years ago

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 the examples in this directory use that site
as an example 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
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 a FTP server
getinfo.c      - get the Content-Type from the recent transfer
getinmemory.c  - download a file to memory only
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
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
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