jim         99/06/22 08:22:15

  Modified:    src/include ap_mmn.h httpd.h
  Log:
  MMN bump and change of location for local_ip
  and local_host slots
  
  Revision  Changes    Path
  1.38      +2 -1      apache-1.3/src/include/ap_mmn.h
  
  Index: ap_mmn.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/include/ap_mmn.h,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- ap_mmn.h  1999/06/04 18:30:22     1.37
  +++ ap_mmn.h  1999/06/22 15:22:14     1.38
  @@ -219,6 +219,7 @@
    *                        export ap_add_file_conf
    * 19990320.3           - add ap_regexec()
    * 19990604.4           - add ap_field_noparam()
  + * 19990621.5           - add local_ip/host to conn_rec for mass-vhost
    */
   
   #define MODULE_MAGIC_COOKIE 0x41503133UL /* "AP13" */
  @@ -226,7 +227,7 @@
   #ifndef MODULE_MAGIC_NUMBER_MAJOR
   #define MODULE_MAGIC_NUMBER_MAJOR 19990320
   #endif
  -#define MODULE_MAGIC_NUMBER_MINOR 4                     /* 0...n */
  +#define MODULE_MAGIC_NUMBER_MINOR 5                     /* 0...n */
   #define MODULE_MAGIC_NUMBER MODULE_MAGIC_NUMBER_MAJOR        /* backward 
compat */
   
   /* Useful for testing for features. */
  
  
  
  1.283     +4 -4      apache-1.3/src/include/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /export/home/cvs/apache-1.3/src/include/httpd.h,v
  retrieving revision 1.282
  retrieving revision 1.283
  diff -u -r1.282 -r1.283
  --- httpd.h   1999/06/22 00:51:29     1.282
  +++ httpd.h   1999/06/22 15:22:14     1.283
  @@ -827,10 +827,6 @@
                                 * "" if it has and no address was found.
                                 * N.B. Only access this though
                                 * get_remote_host() */
  -    char *local_ip;          /* server IP address */
  -    char *local_host;                /* used for ap_get_server_name when
  -                              * UseCanonicalName is set to DNS
  -                              * (ignores setting of HostnameLookups) */
       char *remote_logname;    /* Only ever set if doing rfc1413 lookups.
                                 * N.B. Only access this through
                                 * get_remote_logname() */
  @@ -847,6 +843,10 @@
       signed int double_reverse:2;/* have we done double-reverse DNS?
                                 * -1 yes/failure, 0 not yet, 1 yes/success */
       int keepalives;          /* How many times have we used it? */
  +    char *local_ip;          /* server IP address */
  +    char *local_host;                /* used for ap_get_server_name when
  +                              * UseCanonicalName is set to DNS
  +                              * (ignores setting of HostnameLookups) */
   };
   
   /* Per-vhost config... */
  
  
  

Reply via email to