summaryrefslogtreecommitdiff
path: root/docs/examples/ghiper.c
Commit message (Collapse)AuthorAgeFilesLines
* code style: use spaces around plusesDaniel Stenberg2017-09-111-1/+1
|
* code style: use spaces around equals signsDaniel Stenberg2017-09-111-21/+21
|
* ghiper.c/hiperfifo.c: add comment about missing timer functionalityDaniel Stenberg2017-05-191-1/+10
| | | | | | | | | It takes someone to read up on the APIs of these libraries to figure out how to do this correctly. Reported-by: Michael Kaufmann Closes #1253
* checksrc: stricter no-space-before-paren enforcementDaniel Stenberg2016-12-131-9/+9
| | | | In order to make the code style more uniform everywhere
* checksrc: move open braces to comply with function declaration styleDaniel Stenberg2016-11-241-1/+2
|
* checksrc: white space edits to comply to stricter checksrcDaniel Stenberg2016-11-241-1/+2
|
* docs/examples: remove spurious white spaces all overDaniel Stenberg2016-04-031-2/+2
| | | | ... to please the new, slightly picker, checksrc.pl
* examples: adhere to curl code styleDaniel Stenberg2016-02-111-128/+100
| | | | | | | | | | 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 all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* examples: more descriptionsDaniel Stenberg2015-06-181-1/+5
|
* examples: remove all use of CURLM_CALL_MULTI_PERFORMDaniel Stenberg2014-02-171-2/+1
| | | | ... since it is never returned since a long while back.
* 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.
* multi & hiper examples: updates and cleanupsDirk Manske2010-09-301-62/+41
| | | | | | | | | | | | | | | | | | | | | | | | all multi and hiper examples: * don't loop curl_multi_perform calls, that was <7.20.0 style, currently the exported multi functions will not return CURLM_CALL_MULTI_PERFORM all hiper examples: * renamed check_run_count to check_multi_info * don't compare current running handle count with previous value, this was the wrong way to check for finished requests, simply call curl_multi_info_read * it's also safe to call curl_multi_remove_handle inside the curl_multi_info_read loop. ghiper.c: * replaced curl_multi_socket (that function is marked as obsolete) calls with curl_multi_socket_action calls (as in hiperfifo.c and evhiperfifo.c) ghiper.c and evhiperfifo.c: * be smart as hiperfifo.c, don't do uncessary curl_multi_* calls in new_conn and main
* 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-6/+6
| | | | to curl_easy_setopt instead of long.
* Fixed some compile warnings and errors and improved portability in theDan Fandrich2007-07-121-4/+4
| | | | | | examples. Removed ftp3rdparty.c since libcurl doesn't support 3rd party FTP transfers any longer.
* ghiper now uses the timer callback in the multi interfaceDaniel Stenberg2006-10-121-15/+14
|
* repair id stringDaniel Stenberg2006-10-101-1/+1
|
* Added ghiper.c, Jeff Pohlmeyer's example code using the curl_multi_socket()Daniel Stenberg2006-10-101-0/+462
API with glib2