curl/docs/examples
Patrick Monnerat 1a3f4c1991 mime: remove support "-" stdin pseudo-file name in curl_mime_filedata().
This feature is badly supported in Windows: as a replacement, a caller has
to use curl_mime_data_cb() with fread, fseek and possibly fclose
callbacks to process opened files.

The cli tool and documentation are updated accordingly.

The feature is however kept internally for form API compatibility, with
the known caveats it always had.

As a side effect, stdin size is not determined by the cli tool even if
possible and this results in a chunked transfer encoding. Test 173 is
updated accordingly.
2017-09-03 14:45:43 +01:00
..
.gitignore docs/examples: demonstrate how to select SSL backends 2017-08-28 14:56:59 +02:00
10-at-a-time.c
adddocsref.pl
anyauthput.c
asiohiper.cpp
cacertinmem.c
certinfo.c
chkspeed.c
cookie_interface.c
curlgtk.c
curlx.c
debug.c
evhiperfifo.c
externalsocket.c
fileupload.c
fopen.c
ftp-wildcard.c
ftpget.c
ftpgetinfo.c
ftpgetresp.c
ftpsget.c
ftpupload.c
ftpuploadfrommem.c
ftpuploadresume.c examples/ftpuploadresume: checksrc compliance 2017-08-16 14:44:50 -04:00
getinfo.c
getinmemory.c
getredirect.c
ghiper.c
hiperfifo.c
href_extractor.c
htmltidy.c
htmltitle.cpp
http2-download.c
http2-serverpush.c
http2-upload.c
http-post.c
httpcustomheader.c
httpput.c
https.c
imap-append.c
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 mime: tests and examples. 2017-09-02 19:08:45 +01:00
Makefile.m32
Makefile.netware
multi-app.c
multi-debugcallback.c
multi-double.c
multi-post.c mime: tests and examples. 2017-09-02 19:08:45 +01:00
multi-single.c
multi-uv.c
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 mime: tests and examples. 2017-09-02 19:08:45 +01:00
progressfunc.c
README
resolve.c
rtsp.c
sampleconv.c
sendrecv.c
sepheaders.c
sessioninfo.c
sftpget.c
simple.c
simplepost.c
simplessl.c
smooth-gtk-thread.c
smtp-expn.c
smtp-mail.c
smtp-mime.c mime: remove support "-" stdin pseudo-file name in curl_mime_filedata(). 2017-09-03 14:45:43 +01:00
smtp-multi.c
smtp-ssl.c
smtp-tls.c
smtp-vrfy.c
sslbackend.c examples/sslbackend.c: fix failure of 'make checksrc' 2017-08-30 14:16:35 +02:00
synctime.c
threaded-ssl.c examples/threaded-ssl: mention that this is for openssl before 1.1 2017-08-25 08:15:59 +02:00
url2file.c
usercertinmem.c
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

Each example source code file is designed to be and work stand-alone and
rather self-explanatory. The examples may at times lack the level of error
checks you need in a real world, but that is then only for the sake of
readability: to make the code smaller and easier to follow.