Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-12-10 | examples/anyauthput.c: fix Tru64 compilation issue | Yang Tse | |
2012-12-05 | examples: fix compilation issues - commit 7332a7cafb follow-up | Yang Tse | |
2012-12-05 | examples: fix compilation issues - commit 23f8dca6fb follow-up | Yang Tse | |
2012-12-05 | examples: fix compilation issues | Yang Tse | |
2012-12-04 | build: explain current role of LIBS in our Makefile.am files | Yang Tse | |
BLANK_AT_MAKETIME may be used in our Makefile.am files to blank LIBS variable used in generated makefile at makefile processing time. Doing this functionally prevents LIBS from being used for all link targets in given makefile. | |||
2012-11-30 | build: prevent global LIBS from influencing examples build targets | Yang Tse | |
2012-11-25 | examples: Updated asiohiper.cpp to remove connect from opensocket | Lijo Antony | |
Blocking connect on the socket has been removed from opensocket callback. opensocket just opens a new socket and gives it back to libcurl and libcurl will take care of the connect. sockopt_callback has also been removed, as it is no longer required. | |||
2012-11-21 | htmltitle: use .cpp extension for C++ examples | Daniel Stenberg | |
2012-11-21 | examples: Added a c++ example of using multi with boost::asio | Lijo Antony | |
Added an example for demonstrating the usage of curl multi interface with boost::asio in c++ | |||
2012-11-06 | httpcustomheader.c: free the headers after use | Daniel Stenberg | |
2012-11-06 | uniformly use AM_CPPFLAGS, avoid deprecated INCLUDES | Dave Reisner | |
Since automake 1.12.4, the warnings are issued on running automake: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') Avoid INCLUDES and roll these flags into AM_CPPFLAGS. Compile tested on: Ubuntu 10.04 (automake 1:1.11.1-1) Ubuntu 12.04 (automake 1:1.11.3-1ubuntu2) Arch Linux (automake 1.12.4) | |||
2012-11-01 | evhiperfifo: fix the pointer passed to WRITEDATA | Daniel Stenberg | |
Bug: http://curl.haxx.se/bug/view.cgi?id=3582407 Reported by: Oscar Norlander | |||
2012-10-18 | href_extractor.c: fix the URL | Daniel Stenberg | |
2012-10-18 | href_extractor: example code extracting href elements | MichaĆ Kowalczyk | |
It does so in a streaming manner using the "Streaming HTML parser". | |||
2012-10-01 | https.c example: remember to call curl_global_init() | Kamil Dudka | |
... in order not to leak memory on initializing an SSL library. Reported by: Tomas Mlcoch | |||
2012-08-27 | examples: use do/while loop for multi examples | Dave Reisner | |
It's conceivable that after the first time curl_multi_perform returns, the outvalue still_running will be 0, but work will have been done. This is shown by a workload of small, purely file:// based URLs. Ensure that we always read pending messages off the multi handle by forcing the while loop to run at least once. | |||
2012-08-27 | ftpsget: simple example showing a FTPS fetch | Daniel Stenberg | |
2012-08-27 | sftpget: SFTP is not "SSH FTP" | Daniel Stenberg | |
2012-08-27 | sftpget: example showing a simple SFTP download | Armel Asselin | |
... using SSH-agent | |||
2012-08-21 | https.c example: spell check used define | Daniel Stenberg | |
Bug: http://curl.haxx.se/bug/view.cgi?id=3559845 Reported by: Olivier Berger | |||
2012-07-12 | Added error checking for curl_global_init(). | Guenter Knauf | |
2012-07-12 | Added curl_global_* functions. | Guenter Knauf | |
2012-07-12 | Added curl_global_* functions. | Guenter Knauf | |
2012-07-04 | Removed non-used variable. | Guenter Knauf | |
2012-07-04 | Added error checking for samples. | Guenter Knauf | |
2012-07-03 | MinGW makefile tweaks for running from sh. | Guenter Knauf | |
Added function macros to make path converting easier. Added CROSSPREFIX to all compile tools. | |||
2012-05-27 | Enabled OpenSSL static linkage. | Guenter Knauf | |
2012-05-22 | Updated dependency libary versions. | Guenter Knauf | |
2012-04-26 | Updated dependency lib versions. | Guenter Knauf | |
2012-04-20 | Updated dependency lib versions. | Guenter Knauf | |
2012-04-13 | examples: fix compiler warnings | Yang Tse | |
2012-04-09 | configure: Windows cross-compilation fixes | Yang Tse | |
BUILDING_LIBCURL and CURL_STATICLIB are no longer defined in curl_config.h, configure will generate appropriate conditionals so that mentioned symbols get defined and used in Makefiles at compilation time | |||
2012-01-20 | examples: updated README with two new example programs | Dan Fandrich | |
2012-01-16 | url2file: new simple example | Daniel Stenberg | |
Just showing how to download the contents of a given URL into a local file. Based on a suggestion and example code by Georg Potthast | |||
2012-01-16 | imap.c: a dead simple imap example | Daniel Stenberg | |
Just to show that IMAP is used just like other protocols | |||
2012-01-04 | OpenSSL: remove reference to openssl internal struct | Peter Sylvester | |
With this change, curl compiles with the new OPENSSL_NO_SSL_INTERN cflag. This flag might become the default in some distant future. | |||
2011-12-30 | examples: update README, Makefile.inc and gitignore with pop3s examples | Alessandro Ghedini | |
2011-12-30 | examples: add a couple of simple pop3s examples | Alessandro Ghedini | |
These examples show how to fetch a single message (RETR command) and how to list all the messages in a given mailbox (LIST command), with authentication via SSL. They were both based on the https.c example. | |||
2011-12-30 | removed trailing whitespace | Yang Tse | |
2011-12-06 | Added some include files in a couple of example programs | Dan Fandrich | |
This improves portability of the examples. This patch was submitted to the OpenBSD ports collection by naddy. | |||
2011-12-05 | progress function example: include timed interval | Rob Ward | |
Adds a timer based off of CURLINFO_TOTAL_TIME that is used to perform certain actions after a minimum amount of time has passed using the progress function. As a consequence the curl handle is now also passed into the progress function. Progress example now also includes an example of how to retreive the TOTAL_TIME and print it out. | |||
2011-11-14 | curl_easy_setopt arguments should be of type long in the examples | Dan Fandrich | |
2011-09-27 | Added SPNEGO to NetWare build. | Guenter Knauf | |
2011-09-25 | Fixed MinGW examples makefile. | Guenter Knauf | |
2011-09-25 | NetWare makefile tweaks to select different builds. | Guenter Knauf | |
2011-09-24 | Added header to be included by dist script. | Guenter Knauf | |
Probably the wrong place, but I dont know better. | |||
2011-09-23 | MinGW64 has this prototype already. | Guenter Knauf | |
2011-09-23 | Fixed scanf format for WORD = unsigned short. | Guenter Knauf | |
2011-09-23 | Added Win32-only samples. | Guenter Knauf | |
2011-09-23 | Added a workaround for printing size_t. | Guenter Knauf | |