summaryrefslogtreecommitdiff
path: root/docs/examples/threaded-ssl.c
Commit message (Collapse)AuthorAgeFilesLines
* code style: use spaces around equals signsDaniel Stenberg2017-09-111-7/+7
|
* examples/threaded-ssl: mention that this is for openssl before 1.1Daniel Stenberg2017-08-251-2/+2
|
* examples: adhere to curl code styleDaniel Stenberg2016-02-111-5/+5
| | | | | | | | | | 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 more http to httpsViktor Szakats2016-02-021-2/+2
|
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* examples: added descriptionsDaniel Stenberg2016-01-041-1/+6
|
* sources: update source headersDaniel Stenberg2011-03-101-2/+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: use example.com in example URLsDaniel Stenberg2010-10-051-4/+4
|
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-241-1/+0
|
* Fixed a surprising number of example programs that were passing int argumentsDan Fandrich2008-05-221-2/+2
| | | | to curl_easy_setopt instead of long.
* Made sure that curl_global_init is called in all the multithreadedDan Fandrich2008-04-031-4/+9
| | | | example programs.
* now builds and runs with GnuTLS-built libcurls tooDaniel Stenberg2008-02-231-4/+25
|
* threaded-ssl.c is a little example that does multi-threaded downloads fromDaniel Stenberg2008-02-031-0/+124
HTTPS sites with OpenSSL-enabled libcurl (and pthreads) and thus do the thread-locking and things openssl-style.