]> granicus.if.org Git - apache/commitdiff
add a hint about handling of IPv4-mapped IPv6 addresses
authorJeff Trawick <trawick@apache.org>
Sat, 22 Feb 2003 14:32:39 +0000 (14:32 +0000)
committerJeff Trawick <trawick@apache.org>
Sat, 22 Feb 2003 14:32:39 +0000 (14:32 +0000)
to the output of httpd -V

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98753 13f79535-47bb-0310-9956-ffa450edef68

server/main.c

index 5472160b63fc40b93158bdd78d293e37f62b7ab8..993d8e4553aba012d783aeab035a1f979f2fbdf7 100644 (file)
@@ -136,7 +136,12 @@ static void show_compile_settings(void)
 #endif
 
 #if APR_HAVE_IPV6
-    printf(" -D APR_HAVE_IPV6\n");
+    printf(" -D APR_HAVE_IPV6 (IPv4-mapped addresses ");
+#ifdef AP_ENABLE_V4_MAPPED
+    printf("enabled)\n");
+#else
+    printf("disabled)\n");
+#endif
 #endif
 
 #if APR_USE_FLOCK_SERIALIZE