summaryrefslogtreecommitdiffstats
path: root/Utilities/cmcurl-7.19.0/lib/README.hostip
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-06-11 13:35:11 (GMT)
committerBrad King <brad.king@kitware.com>2009-06-11 13:35:11 (GMT)
commit8c5c192b9dff5ad8e7b422ed16935c2c5d2016db (patch)
tree09b2fb001034d2cea20fc2cb89699e26f9f9cf9e /Utilities/cmcurl-7.19.0/lib/README.hostip
parent8ddfd1ed7f3cb6647fa679e240675d7065933e7c (diff)
downloadCMake-8c5c192b9dff5ad8e7b422ed16935c2c5d2016db.zip
CMake-8c5c192b9dff5ad8e7b422ed16935c2c5d2016db.tar.gz
CMake-8c5c192b9dff5ad8e7b422ed16935c2c5d2016db.tar.bz2
ENH: Remove Utilities/cmcurl-7.19.0 source tree
We never build this source tree anymore, so remove it.
Diffstat (limited to 'Utilities/cmcurl-7.19.0/lib/README.hostip')
-rw-r--r--Utilities/cmcurl-7.19.0/lib/README.hostip35
1 files changed, 0 insertions, 35 deletions
diff --git a/Utilities/cmcurl-7.19.0/lib/README.hostip b/Utilities/cmcurl-7.19.0/lib/README.hostip
deleted file mode 100644
index 9723b93..0000000
--- a/Utilities/cmcurl-7.19.0/lib/README.hostip
+++ /dev/null
@@ -1,35 +0,0 @@
- hostip.c explained
- ==================
-
- The main COMPILE-TIME DEFINES to keep in mind when reading the host*.c
- source file are these:
-
- CURLRES_IPV6 - this host has getaddrinfo() and family, and thus we use
- that. The host may not be able to resolve IPv6, but we don't really have to
- take that into account. Hosts that aren't IPv6-enabled have CURLRES_IPV4
- defined.
-
- CURLRES_ARES - is defined if libcurl is built to use c-ares for asynchronous
- name resolves. It cannot have ENABLE_IPV6 defined at the same time, as c-ares
- has no ipv6 support. This can be Windows or *nix.
-
- CURLRES_THREADED - is defined if libcurl is built to run under (native)
- Windows, and then the name resolve will be done in a new thread, and the
- supported asynch API will be the same as for ares-builds.
-
- If any of the two previous are defined, CURLRES_ASYNCH is defined too. If
- libcurl is not built to use an asynchronous resolver, CURLRES_SYNCH is
- defined.
-
- The host*.c sources files are split up like this:
-
- hostip.c - method-independent resolver functions and utility functions
- hostasyn.c - functions for asynchronous name resolves
- hostsyn.c - functions for synchronous name resolves
- hostares.c - functions for ares-using name resolves
- hostthre.c - functions for threaded name resolves
- hostip4.c - ipv4-specific functions
- hostip6.c - ipv6-specific functions
-
- The hostip.h is the single united header file for all this. It defines the
- CURLRES_* defines based on the config*.h and setup.h defines.