aboutsummaryrefslogtreecommitdiff
path: root/lib/README.hostip
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2013-01-03 03:53:06 +0100
committerYang Tse <yangsita@gmail.com>2013-01-03 05:50:26 +0100
commit13606bbfdeaa3bac193e1f39a05a9c9b5f15d1b5 (patch)
tree2213bc5bee29121d23b34de0346ee1324295c379 /lib/README.hostip
parent8f0171bdd498f5febfb9bc93c234c30287227e74 (diff)
build: make use of 93 lib/*.c renamed files
93 *.c source files renamed to use our standard naming scheme. This change affects 77 files in libcurl's source tree.
Diffstat (limited to 'lib/README.hostip')
-rw-r--r--lib/README.hostip20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/README.hostip b/lib/README.hostip
index a87dab45a..890187187 100644
--- a/lib/README.hostip
+++ b/lib/README.hostip
@@ -1,7 +1,7 @@
- hostip.c explained
+ curl_hostip.c explained
==================
- The main COMPILE-TIME DEFINES to keep in mind when reading the host*.c
+ The main COMPILE-TIME DEFINES to keep in mind when reading the curl_host*.c
source file are these:
CURLRES_IPV6 - this host has getaddrinfo() and family, and thus we use
@@ -21,15 +21,15 @@
libcurl is not built to use an asynchronous resolver, CURLRES_SYNCH is
defined.
- The host*.c sources files are split up like this:
+ The curl_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
+ curl_hostip.c - method-independent resolver functions and utility functions
+ curl_hostasyn.c - functions for asynchronous name resolves
+ curl_hostsyn.c - functions for synchronous name resolves
+ curl_hostares.c - functions for ares-using name resolves
+ curl_hostthre.c - functions for threaded name resolves
+ curl_hostip4.c - ipv4-specific functions
+ curl_hostip6.c - ipv6-specific functions
The curl_hostip.h is the single united header file for all this. It defines
the CURLRES_* defines based on the config*.h and curl_setup.h defines.