fielding    99/01/08 16:21:34

  Modified:    src/include ap_mmn.h httpd.h
  Log:
  Found an excuse for bumping MMN anyway -- I've been meaning to
  reorder the new request_rec entries to where they belong the next
  time we did an already MMN-bumped release, so let's do it now.
  
  Revision  Changes    Path
  1.22      +5 -1      apache-1.3/src/include/ap_mmn.h
  
  Index: ap_mmn.h
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/include/ap_mmn.h,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- ap_mmn.h  1999/01/08 20:08:21     1.21
  +++ ap_mmn.h  1999/01/09 00:21:33     1.22
  @@ -199,12 +199,16 @@
    * 19990106 (1.3.4-dev) - Move MODULE_MAGIC_COOKIE to the end of the
    *                        STANDARD_MODULE_STUFF macro so the version
    *                        numbers and file name remain at invariant offsets
  + * 19990108 (1.3.4-dev) - status_drops_connection -> 
ap_status_drops_connection
  + *                        scan_script_header -> ap_scan_script_header_err
  + *                      - reordered entries in request_rec that were waiting
  + *                        for a non-binary-compatible release.
    */
   
   #define MODULE_MAGIC_COOKIE 0x41503133UL /* "AP13" */
   
   #ifndef MODULE_MAGIC_NUMBER_MAJOR
  -#define MODULE_MAGIC_NUMBER_MAJOR 19990106
  +#define MODULE_MAGIC_NUMBER_MAJOR 19990108
   #endif
   #define MODULE_MAGIC_NUMBER_MINOR 0                     /* 0...n */
   #define MODULE_MAGIC_NUMBER MODULE_MAGIC_NUMBER_MAJOR        /* backward 
compat */
  
  
  
  1.262     +3 -2      apache-1.3/src/include/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/include/httpd.h,v
  retrieving revision 1.261
  retrieving revision 1.262
  diff -u -r1.261 -r1.262
  --- httpd.h   1999/01/08 23:46:41     1.261
  +++ httpd.h   1999/01/09 00:21:33     1.262
  @@ -712,6 +712,7 @@
       long read_length;                /* bytes that have been read */
       int read_body;           /* how the request body should be read */
       int read_chunked;                /* reading chunked transfer-coding */
  +    unsigned expecting_100;  /* is client waiting for a 100 response? */
   
       /* MIME header environments, in and out.  Also, an array containing
        * environment variables to be passed to subprocesses, so people can
  @@ -742,6 +743,8 @@
       const char *content_language;    /* for back-compat. only -- do not use 
*/
       array_header *content_languages; /* array of (char*) */
   
  +    char *vlist_validator;      /* variant list validator (if negotiated) */
  +
       int no_cache;
       int no_local_copy;
   
  @@ -778,8 +781,6 @@
    * record to improve 64bit alignment the next time we need to break
    * binary compatibility for some other reason.
    */
  -    unsigned expecting_100;     /* is client waiting for a 100 response? */
  -    char *vlist_validator;      /* variant list validator (if negotiated) */
   };
   
   
  
  
  

Reply via email to