Lines Matching defs:hostname
38 * Compiling NCSA HTTPD with the -DMINIMAL_DNS flag turns IP#->hostname
54 * compiled with -DMAXIMUM_DNS; after finding the hostname from the IP
55 * address, it looks up the IP addresses for the hostname and checks
208 char *hostname;
237 hostname = (char *) apr_hash_get(cache, line, APR_HASH_KEY_STRING);
238 if (hostname) {
239 apr_file_printf(outfile, "%s %s", hostname, space + 1);
256 * the IP address into a hostname.
266 status = apr_getnameinfo(&hostname, ip, 0) != APR_SUCCESS;
267 if (status || hostname == NULL) {
282 /* Do a forward lookup on our hostname, and see if that matches our
285 status = apr_sockaddr_info_get(&ipdouble, hostname, ip->family, 0,
303 apr_file_printf(outfile, "%s %s", hostname, space + 1);
307 apr_pstrdup(apr_hash_pool_get(cache), hostname));