You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2003/02/22 15:32:39 UTC

cvs commit: httpd-2.0/server main.c

trawick     2003/02/22 06:32:39

  Modified:    server   main.c
  Log:
  add a hint about handling of IPv4-mapped IPv6 addresses
  to the output of httpd -V
  
  Revision  Changes    Path
  1.144     +6 -1      httpd-2.0/server/main.c
  
  Index: main.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/main.c,v
  retrieving revision 1.143
  retrieving revision 1.144
  diff -u -r1.143 -r1.144
  --- main.c	17 Feb 2003 07:04:50 -0000	1.143
  +++ main.c	22 Feb 2003 14:32:39 -0000	1.144
  @@ -136,7 +136,12 @@
   #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