summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Revert changes relative to lib/*.[ch] recent renamingYang Tse2013-01-063-57/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts renaming and usage of lib/*.h header files done 28-12-2012, reverting 2 commits: f871de0... build: make use of 76 lib/*.h renamed files ffd8e12... build: rename 76 lib/*.h files This also reverts removal of redundant include guard (redundant thanks to changes in above commits) done 2-12-2013, reverting 1 commit: c087374... curl_setup.h: remove redundant include guard This also reverts renaming and usage of lib/*.c source files done 3-12-2013, reverting 3 commits: 13606bb... build: make use of 93 lib/*.c renamed files 5b6e792... build: rename 93 lib/*.c files 7d83dff... build: commit 13606bbfde follow-up 1 Start of related discussion thread: http://curl.haxx.se/mail/lib-2013-01/0012.html Asking for confirmation on pushing this revertion commit: http://curl.haxx.se/mail/lib-2013-01/0048.html Confirmation summary: http://curl.haxx.se/mail/lib-2013-01/0079.html NOTICE: The list of 2 files that have been modified by other intermixed commits, while renamed, and also by at least one of the 6 commits this one reverts follows below. These 2 files will exhibit a hole in history unless git's '--follow' option is used when viewing logs. lib/curl_imap.h lib/curl_smtp.h
* mk-ca-bundle.1: convert syntax to what's used elsewhereDaniel Stenberg2013-01-061-47/+55
| | | | | ... mostly to make sure roffit works better on it, but also to make our man pages use a more unified style.
* mk-ca-bundle.1: mention new -f, fix outputfile outputDaniel Stenberg2013-01-051-9/+20
| | | | also edited a few sentences to become more verbose
* writeout: -w now supports remote_ip/port and local_ip/portDaniel Stenberg2013-01-031-0/+14
| | | | | | Added mention to the curl.1 man page. Test case 1223 verifies remote_ip/port.
* INTERNALS: remove "footnote" never usedDaniel Stenberg2013-01-031-3/+0
|
* FAQ: Can I write a server with libcurl?Daniel Stenberg2013-01-031-0/+10
|
* build: make use of 93 lib/*.c renamed filesYang Tse2013-01-032-55/+56
| | | | | | 93 *.c source files renamed to use our standard naming scheme. This change affects 77 files in libcurl's source tree.
* INSTALL: unify the SSL library textsDaniel Stenberg2013-01-031-11/+8
| | | | | Make them smaller and more similar for each separate SSL library supported by the configure build
* examples/certinfo.c: fix compiler warningYang Tse2012-12-291-7/+12
|
* build: make use of 76 lib/*.h renamed filesYang Tse2012-12-281-1/+1
| | | | | | 76 private header files renamed to use our standard naming scheme. This change affects 322 files in libcurl's source tree.
* curl.1: extend the -X, --request descriptionDaniel Stenberg2012-12-271-0/+8
|
* curl tool: renaming hugehelp files to tool_hugehelpYang Tse2012-12-263-7/+7
|
* examples/simplessl.c: fix compiler warningYang Tse2012-12-111-2/+3
|
* examples/externalsocket.c: fix SunPro compilation issueYang Tse2012-12-101-0/+4
|
* examples/simplessl.c: fix compiler warningYang Tse2012-12-101-2/+2
|
* examples/anyauthput.c: fix Tru64 compilation issueYang Tse2012-12-101-2/+2
|
* examples: fix compilation issues - commit 7332a7cafb follow-upYang Tse2012-12-052-11/+11
|
* examples: fix compilation issues - commit 23f8dca6fb follow-upYang Tse2012-12-053-7/+13
|
* examples: fix compilation issuesYang Tse2012-12-053-8/+12
|
* build: explain current role of LIBS in our Makefile.am filesYang Tse2012-12-041-1/+1
| | | | | | | 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.
* build: prevent global LIBS from influencing examples build targetsYang Tse2012-11-301-2/+11
|
* FAQ: clarify the 3.4 sectionDaniel Stenberg2012-11-251-3/+4
| | | | | You can do custom commands to FTP without sending anything by using the CURLOPT_NOBODY, which -I sets.
* examples: Updated asiohiper.cpp to remove connect from opensocketLijo Antony2012-11-251-36/+23
| | | | | | | 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.
* DOCS: Updated CURLOPT_CONNECT_ONLY to reflect usage in other protocolsSteve Holme2012-11-231-4/+5
|
* htmltitle: use .cpp extension for C++ examplesDaniel Stenberg2012-11-212-1/+1
|
* examples: Added a c++ example of using multi with boost::asioLijo Antony2012-11-212-1/+468
| | | | | Added an example for demonstrating the usage of curl multi interface with boost::asio in c++
* THANKS: added 14 contributors from the 7.28.1 releaseDaniel Stenberg2012-11-201-0/+14
|
* CURLOPT_SSL_VERIFYHOST: stop supporting the 1 valueDaniel Stenberg2012-11-061-2/+3
| | | | | | | | | | | | | | | | | | | | | | After a research team wrote a document[1] that found several live source codes out there in the wild that misused the CURLOPT_SSL_VERIFYHOST option thinking it was a boolean, this change now bans 1 as a value and will make libcurl return error for it. 1 was never a sensible value to use in production but was introduced back in the days to help debugging. It was always documented clearly this way. 1 was never supported by all SSL backends in libcurl, so this cleanup makes the treatment of it unified. The report's list of mistakes for this option were all PHP code and while there's a binding layer between libcurl and PHP, the PHP team has decided that they have an as thin layer as possible on top of libcurl so they will not alter or specifically filter a 'TRUE' value for this particular option. I sympathize with that position. [1] = http://daniel.haxx.se/blog/2012/10/25/libcurl-claimed-to-be-dangerous/
* httpcustomheader.c: free the headers after useDaniel Stenberg2012-11-061-1/+4
|
* uniformly use AM_CPPFLAGS, avoid deprecated INCLUDESDave Reisner2012-11-061-5/+4
| | | | | | | | | | | | | 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)
* BUGS: fix the bug tracker URLDaniel Stenberg2012-11-011-2/+4
| | | | | | | | | The URL we used before is the one that goes directly to 'add' a bug report, but since you can only do that after first having logged in to sourceforge, the link often doesn't work for visitors. Bug: http://curl.haxx.se/bug/view.cgi?id=3582408 Reported by: Oscar Norlander
* evhiperfifo: fix the pointer passed to WRITEDATADaniel Stenberg2012-11-011-2/+2
| | | | | Bug: http://curl.haxx.se/bug/view.cgi?id=3582407 Reported by: Oscar Norlander
* href_extractor.c: fix the URLDaniel Stenberg2012-10-181-1/+1
|
* href_extractor: example code extracting href elementsMichaƂ Kowalczyk2012-10-182-1/+87
| | | | It does so in a streaming manner using the "Streaming HTML parser".
* THANKS: 14 new contributors from 7.28.0Daniel Stenberg2012-10-101-0/+14
|
* curl_multi_wait: no wait if no descriptors to wait forDaniel Stenberg2012-10-091-1/+4
| | | | | | | | | | This is a minor change in behavior after having been pointed out by Mark Tully and discussed on the list. Initially this case would internally call poll() with no sockets and a timeout which would equal a sleep for that specified time. Bug: http://curl.haxx.se/mail/lib-2012-10/0076.html Reported by: Mark Tully
* curl_multi_wait.3: style formatting mistakeDaniel Stenberg2012-10-091-1/+1
|
* curl_multi_wait.3: fix the name of the man pageDaniel Stenberg2012-10-081-1/+1
|
* curl_multi_wait.3: renamed the last argument variable for clarityDaniel Stenberg2012-10-081-2/+2
|
* https.c example: remember to call curl_global_init()Kamil Dudka2012-10-011-0/+5
| | | | | | ... in order not to leak memory on initializing an SSL library. Reported by: Tomas Mlcoch
* FAQ: remove the date from the topmost lineDaniel Stenberg2012-09-281-1/+0
|
* FAQ: 5.16 I want a different time-out!Daniel Stenberg2012-09-281-0/+17
|
* curl_multi_wait: Add parameter to return number of active socketsSara Golemon2012-09-161-1/+5
| | | | | Minor change to recently introduced function. BC breaking, but since curl_multi_wait() doesn't exist in any releases that should be fine.
* socks.c: Added support for IPv6 connections through SOCKSv5 proxyMarc Hoersken2012-09-141-1/+0
|
* MANUAL: clarified user+password in HTTP URLsAnthony Bryan2012-09-091-3/+4
|
* Updated build docs w.r.t. Android and binary sizesDan Fandrich2012-09-031-5/+6
|
* symbols-in-versions: new CURL_WAIT_* symbolsDaniel Stenberg2012-09-011-0/+3
|
* Manpage for curl_multi_wait().Sara Golemon2012-09-012-4/+72
|
* test2032: bail out after last transferDaniel Stenberg2012-08-311-7/+0
| | | | | | | | | | | | The test would hang and get aborted with a "ABORTING TEST, since it seems that it would have run forever." until I prevented that from happening. I also fixed the data file which got broken CRLF line endings when I sucked down the path from Joe's repo == my fault. Removed #37 from KNOWN_BUGS as this fix and test case verifies exactly this.
* curl.1: list the -w variables sorted alphabeticallyDaniel Stenberg2012-08-281-51/+51
|