curl/lib
Yang Tse 5a053ffe80 build: fix circular header inclusion with other packages
This commit renames lib/setup.h to lib/curl_setup.h and
renames lib/setup_once.h to lib/curl_setup_once.h.

Removes the need and usage of a header inclusion guard foreign
to libcurl. [1]

Removes the need and presence of an alarming notice we carried
in old setup_once.h [2]

----------------------------------------

1 - lib/setup_once.h used __SETUP_ONCE_H macro as header inclusion guard
    up to commit ec691ca3 which changed this to HEADER_CURL_SETUP_ONCE_H,
    this single inclusion guard is enough to ensure that inclusion of
    lib/setup_once.h done from lib/setup.h is only done once.

    Additionally lib/setup.h has always used __SETUP_ONCE_H macro to
    protect inclusion of setup_once.h even after commit ec691ca3, this
    was to avoid a circular header inclusion triggered when building a
    c-ares enabled version with c-ares sources available which also has
    a setup_once.h header. Commit ec691ca3 exposes the real nature of
    __SETUP_ONCE_H usage in lib/setup.h, it is a header inclusion guard
    foreign to libcurl belonging to c-ares's setup_once.h

    The renaming this commit does, fixes the circular header inclusion,
    and as such removes the need and usage of a header inclusion guard
    foreign to libcurl. Macro __SETUP_ONCE_H no longer used in libcurl.

2 - Due to the circular interdependency of old lib/setup_once.h and the
    c-ares setup_once.h header, old file lib/setup_once.h has carried
    back from 2006 up to now days an alarming and prominent notice about
    the need of keeping libcurl's and c-ares's setup_once.h in sync.

    Given that this commit fixes the circular interdependency, the need
    and presence of mentioned notice is removed.

    All mentioned interdependencies come back from now old days when
    the c-ares project lived inside a curl subdirectory. This commit
    removes last traces of such fact.
2013-01-09 00:49:50 +01:00
..
.gitignore Removed libcurl.imp from Makefile.am. 2012-07-11 17:40:09 +02:00
CMakeLists.txt Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
Makefile.Watcom Updated dependency libary versions. 2012-05-22 04:15:37 +02:00
Makefile.am build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
Makefile.b32 Updated dependency libary versions. 2012-05-22 04:15:37 +02:00
Makefile.inc build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
Makefile.m32 Added .def file to output. 2012-11-08 18:50:48 +01:00
Makefile.netware Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
Makefile.vc6 Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
Makefile.vxworks Updated dependency libary versions. 2012-05-22 04:15:37 +02:00
README.ares README.ares: we know require c-ares 1.6.0 2010-09-30 23:14:58 +02:00
README.curl_off_t
README.curlx Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
README.encoding transfer-encoding: document the options 2011-04-18 19:46:21 +02:00
README.hostip build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
README.httpauth
README.memoryleak remove the CVSish $Id$ lines 2010-03-24 11:02:54 +01:00
README.multi_socket update the section on timeouts 2010-04-12 11:09:55 +02:00
README.pingpong introducing IMAP, POP3 and SMTP support (still lots of polish left to do) 2009-12-12 21:54:01 +00:00
README.pipelining
amigaos.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
amigaos.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
arpa_telnet.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
asyn-ares.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
asyn-thread.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
asyn.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
axtls.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
axtls.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
base64.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
bundles.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
bundles.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
checksrc.pl checksrc: detect "}else" uses as well 2011-09-07 22:45:43 +02:00
config-amigaos.h curl tool: use configuration files from lib directory 2012-04-06 23:37:05 +02:00
config-dos.h lib/*.h: use our standard naming scheme for header inclusion guards 2012-12-28 18:21:40 +01:00
config-mac.h curl tool: use configuration files from lib directory 2012-04-06 23:37:05 +02:00
config-os400.h build adjustments: CURL_HIDDEN_SYMBOLS no longer defined in config files 2012-04-11 19:33:54 +02:00
config-riscos.h curl tool: use configuration files from lib directory 2012-04-06 23:37:05 +02:00
config-symbian.h nss: unconditionally require PK11_CreateGenericObject() 2012-04-13 12:19:36 +02:00
config-tpf.h configure: Windows cross-compilation fixes 2012-04-09 21:24:16 +02:00
config-vms.h lib/*.h: use our standard naming scheme for header inclusion guards 2012-12-28 18:21:40 +01:00
config-vxworks.h nss: unconditionally require PK11_CreateGenericObject() 2012-04-13 12:19:36 +02:00
config-win32.h Changed Windows 64bit OS define to x86_64. 2011-09-20 12:32:04 +02:00
config-win32ce.h unicode NTLM SSPI: cleanup 2012-07-05 22:18:11 +02:00
conncache.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
conncache.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
connect.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
connect.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
content_encoding.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
content_encoding.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
cookie.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
cookie.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_addrinfo.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_addrinfo.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_base64.h base64: fix Curl_base64_encode and Curl_base64_decode interfaces 2011-08-24 08:10:30 +02:00
curl_config.h.cmake nss: unconditionally require PK11_CreateGenericObject() 2012-04-13 12:19:36 +02:00
curl_darwinssl.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_darwinssl.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_fnmatch.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_fnmatch.h ftp wildcard: a new option CURLOPT_FNMATCH_DATA 2010-05-16 02:52:33 +02:00
curl_gethostname.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_gethostname.h HOSTNAME_MAX: Moved to curl_gethostname.h 2011-09-25 23:58:47 +02:00
curl_gssapi.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_gssapi.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_hmac.h include libcurl standard internal headers 2010-06-02 14:13:02 +02:00
curl_ldap.h lib/*.h: use our standard naming scheme for header inclusion guards 2012-12-28 18:21:40 +01:00
curl_md4.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_md5.h Fixed compile error with GNUTLS+NETTLE 2012-05-22 16:40:09 +02:00
curl_memory.h remove the CVSish $Id$ lines 2010-03-24 11:02:54 +01:00
curl_memrchr.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_memrchr.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_multibyte.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_multibyte.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_ntlm.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_ntlm.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_ntlm_core.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_ntlm_core.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_ntlm_msgs.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_ntlm_msgs.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_ntlm_wb.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_ntlm_wb.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_rand.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_rand.h remove the CVSish $Id$ lines 2010-03-24 11:02:54 +01:00
curl_rtmp.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_rtmp.h include libcurl standard internal headers 2010-06-02 14:13:02 +02:00
curl_sasl.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_sasl.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
curl_schannel.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_schannel.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_setup.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_setup_once.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_sspi.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_sspi.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_threads.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curl_threads.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
curlx.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
cyassl.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
cyassl.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
dict.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
dict.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
easy.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
easyif.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
escape.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
escape.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
file.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
file.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
fileinfo.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
fileinfo.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
firefox-db2pem.sh remove the CVSish $Id$ lines 2010-03-24 11:02:54 +01:00
formdata.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
formdata.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
ftp.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
ftp.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
ftplistparser.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
ftplistparser.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
getenv.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
getinfo.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
getinfo.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
gopher.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
gopher.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
gtls.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
gtls.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
hash.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
hash.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
hmac.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
hostasyn.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
hostcheck.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
hostcheck.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
hostip.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
hostip.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
hostip4.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
hostip6.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
hostsyn.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
http.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
http.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
http_chunks.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
http_chunks.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
http_digest.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
http_digest.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
http_negotiate.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
http_negotiate.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
http_negotiate_sspi.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
http_proxy.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
http_proxy.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
idn_win32.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
if2ip.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
if2ip.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
imap.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
imap.h imap: Added support for sasl digest-md5 authentication 2013-01-07 11:01:05 +00:00
inet_ntop.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
inet_ntop.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
inet_pton.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
inet_pton.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
krb4.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
krb4.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
krb5.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
ldap.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
libcurl.def
libcurl.plist removed trailing whitespace 2011-12-30 03:36:18 +01:00
libcurl.rc remove the CVSish $Id$ lines 2010-03-24 11:02:54 +01:00
libcurl.vers.in configure: add symbols versioning option 2011-12-19 23:25:36 +01:00
llist.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
llist.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
makefile.amiga curl tool: use configuration files from lib directory - follow-up I 2012-04-07 00:31:24 +02:00
makefile.dj Changed email per Gisle's request. 2011-04-16 00:11:43 +02:00
md4.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
md5.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
memdebug.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
memdebug.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
mk-ca-bundle.pl mk-ca-bundle: add -f, support passing to stdout and more 2013-01-05 23:51:12 +01:00
mk-ca-bundle.vbs Fix to skip untrusted certs. 2011-11-08 05:46:46 +01:00
mprintf.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
msvcproj.foot Store now this file in CVS with unix line endings. 2010-01-15 20:23:35 +00:00
msvcproj.head VC6 IDE: link with advapi32.lib when using WIN32 crypto API (md5.c) 2012-12-18 13:29:45 +01:00
multi.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
multiif.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
netrc.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
netrc.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
non-ascii.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
non-ascii.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
nonblock.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
nonblock.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
nss.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
nssg.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
nwlib.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
nwos.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
objnames-test08.sh test 1222: 8 chars object name generation && test 1221: adjustments 2013-01-03 19:24:00 +01:00
objnames-test10.sh test 1222: 8 chars object name generation && test 1221: adjustments 2013-01-03 19:24:00 +01:00
objnames.inc test 1222: 8 chars object name generation && test 1221: adjustments 2013-01-03 19:24:00 +01:00
openldap.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
parsedate.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
parsedate.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
pingpong.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
pingpong.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
polarssl.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
polarssl.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
pop3.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
pop3.h pop3: Added support for non-blocking SSL upgrade 2013-01-08 11:31:48 +00:00
progress.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
progress.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
qssl.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
qssl.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
rawstr.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
rawstr.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
rtsp.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
rtsp.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
security.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
select.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
select.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
sendf.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
sendf.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
setup-os400.h remove the CVSish $Id$ lines 2010-03-24 11:02:54 +01:00
share.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
share.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
slist.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
slist.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
smtp.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
smtp.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
sockaddr.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
socks.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
socks.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
socks_gssapi.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
socks_sspi.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
speedcheck.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
speedcheck.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
splay.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
splay.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
ssh.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
ssh.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
sslgen.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
sslgen.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
ssluse.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
ssluse.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
strdup.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
strdup.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
strequal.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
strequal.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
strerror.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
strerror.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
strtok.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
strtok.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
strtoofft.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
strtoofft.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
telnet.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
telnet.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
tftp.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
tftp.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
timeval.c Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
timeval.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
transfer.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
transfer.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
url.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
url.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
urldata.h build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
vc6libcurl.dsw Fix CR 2009-05-08 19:09:36 +00:00
vc8proj.foot
vc8proj.head - I renamed everything in the windows builds files that used the name 'curllib' 2009-02-23 09:36:54 +00:00
version.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
warnless.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
warnless.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00
wildcard.c build: fix circular header inclusion with other packages 2013-01-09 00:49:50 +01:00
wildcard.h Revert changes relative to lib/*.[ch] recent renaming 2013-01-06 18:20:27 +01:00

README.pipelining

HTTP Pipelining with libcurl
============================

Background

Since pipelining implies that one or more requests are sent to a server before
the previous response(s) have been received, we only support it for multi
interface use.

Considerations

When using the multi interface, you create one easy handle for each transfer.
Bascially any number of handles can be created, added and used with the multi
interface - simultaneously. It is an interface designed to allow many
simultaneous transfers while still using a single thread. Pipelining does not
change any of these details.

API

We've added a new option to curl_multi_setopt() called CURLMOPT_PIPELINING
that enables "attempted pipelining" and then all easy handles used on that
handle will attempt to use an existing pipeline.

Details

- A pipeline is only created if a previous connection exists to the same IP
  address that the new request is being made to use.

- Pipelines are only supported for HTTP(S) as no other currently supported
  protocol has features resemembling this, but we still name this feature
  plain 'pipelining' to possibly one day support it for other protocols as
  well.

- HTTP Pipelining is for GET and HEAD requests only.

- When a pipeline is in use, we must take precautions so that when used easy
  handles (i.e those who still wait for a response) are removed from the multi
  handle, we must deal with the outstanding response nicely.

- Explicitly asking for pipelining handle X and handle Y won't be supported.
  It isn't easy for an app to do this association. The lib should probably
  still resolve the second one properly to make sure that they actually _can_
  be considered for pipelining. Also, asking for explicit pipelining on handle
  X may be tricky when handle X get a closed connection.

- We need options to control max pipeline length, and probably how to behave
  if we reach that limit. As was discussed on the list, it can probably be
  made very complicated, so perhaps we can think of a way to pass all
  variables involved to a callback and let the application decide how to act
  in specific situations. Either way, these fancy options are only interesting
  to work on when everything is working and we have working apps to test with.