You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Paul Richards <pa...@hyperreal.com> on 1996/08/20 13:51:55 UTC

cvs commit: apache/src Configuration.tmpl Configure INSTALL Makefile.tmpl README TODO alloc.h buff.c buff.h conf.h explain.c explain.h http_bprintf.c http_conf_globals.h http_config.c http_config.h http_core.c http_core.h http_log.c http_log.h http_main.c http_main.h http_protocol.c http_protocol.h http_request.c http_request.h httpd.h md5.h md5c.c mod_access.c mod_actions.c mod_ai_backcompat.c mod_alias.c mod_asis.c mod_auth.c mod_auth_anon.c mod_auth_db.c mod_auth_dbm.c mod_auth_msql.c mod_browser.c mod_cern_meta.c mod_cgi.c mod_cookies.c mod_digest.c mod_dir.c mod_dld.c mod_env.c mod_imap.c mod_include.c mod_info.c mod_log_agent.c mod_log_config.c mod_log_referer.c mod_mime.c mod_negotiation.c mod_rewrite.c mod_rewrite.h mod_status.c mod_userdir.c rfc1413.c rfc1413.h scoreboard.h util.c util_md5.c util_md5.h util_script.c util_script.h

paul        96/08/20 04:51:54

  Modified:    src       Configuration.tmpl Configure INSTALL Makefile.tmpl
                        README TODO  alloc.h buff.c buff.h conf.h explain.c
                        explain.h  http_bprintf.c http_conf_globals.h
                        http_config.c http_config.h  http_core.c
                        http_core.h http_log.c http_log.h http_main.c 
                        http_main.h http_protocol.c http_protocol.h
                        http_request.c  http_request.h httpd.h md5.h md5c.c
                        mod_access.c mod_actions.c  mod_ai_backcompat.c
                        mod_alias.c mod_asis.c mod_auth.c  mod_auth_anon.c
                        mod_auth_db.c mod_auth_dbm.c mod_auth_msql.c 
                        mod_browser.c mod_cern_meta.c mod_cgi.c
                        mod_cookies.c  mod_digest.c mod_dir.c mod_dld.c
                        mod_env.c mod_imap.c  mod_include.c mod_info.c
                        mod_log_agent.c mod_log_config.c  mod_log_referer.c
                        mod_mime.c mod_negotiation.c mod_rewrite.c 
                        mod_rewrite.h mod_status.c mod_userdir.c rfc1413.c
                        rfc1413.h  scoreboard.h util.c util_md5.c
                        util_md5.h util_script.c  util_script.h
  Log:
  Added $Id:$ strings
  
  Removed blank lines from top of files where necessary.
  
  Revision  Changes    Path
  1.31      +1 -0      apache/src/Configuration.tmpl
  
  Index: Configuration.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Configuration.tmpl,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -C3 -r1.30 -r1.31
  *** Configuration.tmpl	1996/08/14 17:45:14	1.30
  --- Configuration.tmpl	1996/08/20 11:50:33	1.31
  ***************
  *** 1,3 ****
  --- 1,4 ----
  + # $Id: Configuration.tmpl,v 1.31 1996/08/20 11:50:33 paul Exp $
    # Config file for the Apache httpd.
    
    # Configuration.tmpl is the template for Configuration. Configuration should
  
  
  
  1.12      +1 -0      apache/src/Configure
  
  Index: Configure
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Configure,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -C3 -r1.11 -r1.12
  *** Configure	1996/08/17 17:27:32	1.11
  --- Configure	1996/08/20 11:50:34	1.12
  ***************
  *** 1,4 ****
  --- 1,5 ----
    #!/bin/sh
  + # $Id: Configure,v 1.12 1996/08/20 11:50:34 paul Exp $
    trap 'rm $tmpfile; exit' 0 1 2 3 15
    
    # Apache configuration script, first cut --- rst.
  
  
  
  1.6       +2 -0      apache/src/INSTALL
  
  Index: INSTALL
  ===================================================================
  RCS file: /export/home/cvs/apache/src/INSTALL,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -C3 -r1.5 -r1.6
  *** INSTALL	1996/08/05 01:17:22	1.5
  --- INSTALL	1996/08/20 11:50:34	1.6
  ***************
  *** 1,3 ****
  --- 1,5 ----
  + $Id: INSTALL,v 1.6 1996/08/20 11:50:34 paul Exp $
  + 
    This release of Apache supports the notion of "optional modules".
    However, the server has to know which modules are compiled into it, in
    order for those modules to be effective; this requires generation of a
  
  
  
  1.23      +1 -0      apache/src/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===================================================================
  RCS file: /export/home/cvs/apache/src/Makefile.tmpl,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -C3 -r1.22 -r1.23
  *** Makefile.tmpl	1996/08/05 01:34:25	1.22
  --- Makefile.tmpl	1996/08/20 11:50:35	1.23
  ***************
  *** 1,3 ****
  --- 1,4 ----
  + # $Id: Makefile.tmpl,v 1.23 1996/08/20 11:50:35 paul Exp $
    # Apache makefile template (well, suffix).
    
    # This is combined with the information in the "Configuration" file
  
  
  
  1.15      +2 -0      apache/src/README
  
  Index: README
  ===================================================================
  RCS file: /export/home/cvs/apache/src/README,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -C3 -r1.14 -r1.15
  *** README	1996/08/05 01:17:23	1.14
  --- README	1996/08/20 11:50:37	1.15
  ***************
  *** 1,3 ****
  --- 1,5 ----
  + $Id: README,v 1.15 1996/08/20 11:50:37 paul Exp $ 
  + 
    The basic idea of the new Apache release is to make a modular
    "tinkertoy" server, to which people can easily add code which is
    valuable to them (even if it isn't universally useful) without hairing
  
  
  
  1.13      +2 -0      apache/src/TODO
  
  Index: TODO
  ===================================================================
  RCS file: /export/home/cvs/apache/src/TODO,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -C3 -r1.12 -r1.13
  *** TODO	1996/08/05 01:17:23	1.12
  --- TODO	1996/08/20 11:50:37	1.13
  ***************
  *** 1,3 ****
  --- 1,5 ----
  + $Id: TODO,v 1.13 1996/08/20 11:50:37 paul Exp $
  + 
    *) Random stray failures to get_local_addr --- it's returning EINVAL, of all
       things.  Are these clients aborting really, really early or what?
    
  
  
  
  1.10      +1 -0      apache/src/alloc.h
  
  Index: alloc.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/alloc.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -C3 -r1.9 -r1.10
  *** alloc.h	1996/08/08 07:21:15	1.9
  --- alloc.h	1996/08/20 11:50:38	1.10
  ***************
  *** 51,56 ****
  --- 51,57 ----
     *
     */
    
  + /* $Id: alloc.h,v 1.10 1996/08/20 11:50:38 paul Exp $ */
    
    /*
     * Resource allocation routines...
  
  
  
  1.6       +2 -1      apache/src/buff.c
  
  Index: buff.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/buff.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -C3 -r1.5 -r1.6
  *** buff.c	1996/07/28 19:27:41	1.5
  --- buff.c	1996/08/20 11:50:38	1.6
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1996 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 50,55 ****
  --- 49,56 ----
     * project, please see <http://www.apache.org/>.
     *
     */
  + 
  + /* $Id: buff.c,v 1.6 1996/08/20 11:50:38 paul Exp $ */
    
    #include <errno.h>
    #include <stdio.h>
  
  
  
  1.6       +2 -0      apache/src/buff.h
  
  Index: buff.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/buff.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -C3 -r1.5 -r1.6
  *** buff.h	1996/07/28 19:27:42	1.5
  --- buff.h	1996/08/20 11:50:39	1.6
  ***************
  *** 50,55 ****
  --- 50,57 ----
     *
     */
    
  + /* $Id: buff.h,v 1.6 1996/08/20 11:50:39 paul Exp $ */
  + 
    #include <stdarg.h>
    
    /* Reading is buffered */
  
  
  
  1.34      +1 -1      apache/src/conf.h
  
  Index: conf.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/conf.h,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -C3 -r1.33 -r1.34
  *** conf.h	1996/08/14 05:08:07	1.33
  --- conf.h	1996/08/20 11:50:39	1.34
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: conf.h,v 1.34 1996/08/20 11:50:39 paul Exp $ */
    
    /*
     * conf.h: system-dependant #defines and includes...
  
  
  
  1.2       +2 -0      apache/src/explain.c
  
  Index: explain.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/explain.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -C3 -r1.1 -r1.2
  *** explain.c	1996/03/30 15:31:13	1.1
  --- explain.c	1996/08/20 11:50:40	1.2
  ***************
  *** 1,3 ****
  --- 1,5 ----
  + /* $Id: explain.c,v 1.2 1996/08/20 11:50:40 paul Exp $ */
  + 
    #include <stdio.h>
    #include <stdarg.h>
    #include "explain.h"
  
  
  
  1.2       +2 -0      apache/src/explain.h
  
  Index: explain.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/explain.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -C3 -r1.1 -r1.2
  *** explain.h	1996/03/30 15:31:13	1.1
  --- explain.h	1996/08/20 11:50:41	1.2
  ***************
  *** 1,3 ****
  --- 1,5 ----
  + /* $Id: explain.h,v 1.2 1996/08/20 11:50:41 paul Exp $ */
  + 
    #ifndef EXPLAIN
    #define DEF_Explain
    #define Explain0(f)
  
  
  
  1.6       +3 -0      apache/src/http_bprintf.c
  
  Index: http_bprintf.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_bprintf.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -C3 -r1.5 -r1.6
  *** http_bprintf.c	1996/07/25 19:32:27	1.5
  --- http_bprintf.c	1996/08/20 11:50:41	1.6
  ***************
  *** 11,16 ****
  --- 11,19 ----
     *
     * History:
     * 18 May 1996 Initial revision [Ben Laurie]
  +  *
  +  * $Id: http_bprintf.c,v 1.6 1996/08/20 11:50:41 paul Exp $
  +  *
     */
    
    #include <assert.h>
  
  
  
  1.4       +1 -1      apache/src/http_conf_globals.h
  
  Index: http_conf_globals.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_conf_globals.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -C3 -r1.3 -r1.4
  *** http_conf_globals.h	1996/08/02 20:39:11	1.3
  --- http_conf_globals.h	1996/08/20 11:50:42	1.4
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: http_conf_globals.h,v 1.4 1996/08/20 11:50:42 paul Exp $ */
    
    /* 
     * Process config --- what the process ITSELF is doing
  
  
  
  1.21      +1 -1      apache/src/http_config.c
  
  Index: http_config.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_config.c,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -C3 -r1.20 -r1.21
  *** http_config.c	1996/08/19 18:32:56	1.20
  --- http_config.c	1996/08/20 11:50:42	1.21
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: http_config.c,v 1.21 1996/08/20 11:50:42 paul Exp $ */
    
    /*
     * http_config.c: once was auxillary functions for reading httpd's config
  
  
  
  1.11      +1 -1      apache/src/http_config.h
  
  Index: http_config.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_config.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -C3 -r1.10 -r1.11
  *** http_config.h	1996/08/06 19:31:05	1.10
  --- http_config.h	1996/08/20 11:50:43	1.11
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: http_config.h,v 1.11 1996/08/20 11:50:43 paul Exp $ */
    
    /*
     * The central data structures around here...
  
  
  
  1.32      +1 -1      apache/src/http_core.c
  
  Index: http_core.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_core.c,v
  retrieving revision 1.31
  retrieving revision 1.32
  diff -C3 -r1.31 -r1.32
  *** http_core.c	1996/08/19 18:32:57	1.31
  --- http_core.c	1996/08/20 11:50:44	1.32
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: */
    
    #define CORE_PRIVATE
    #include "httpd.h"
  
  
  
  1.11      +1 -1      apache/src/http_core.h
  
  Index: http_core.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_core.h,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -C3 -r1.10 -r1.11
  *** http_core.h	1996/07/27 16:21:18	1.10
  --- http_core.h	1996/08/20 11:50:45	1.11
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: http_core.h,v 1.11 1996/08/20 11:50:45 paul Exp $ */
    
    /*****************************************************************
     *
  
  
  
  1.6       +1 -1      apache/src/http_log.c
  
  Index: http_log.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_log.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -C3 -r1.5 -r1.6
  *** http_log.c	1996/06/30 21:48:02	1.5
  --- http_log.c	1996/08/20 11:50:45	1.6
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: http_log.c,v 1.6 1996/08/20 11:50:45 paul Exp $ */
    
    /*
     * http_log.c: Dealing with the logs and errors
  
  
  
  1.3       +1 -1      apache/src/http_log.h
  
  Index: http_log.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_log.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** http_log.h	1996/02/22 11:46:47	1.2
  --- http_log.h	1996/08/20 11:50:46	1.3
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: http_log.h,v 1.3 1996/08/20 11:50:46 paul Exp $ */
    
    void open_logs (server_rec *, pool *p);
    void error_log2stderr (server_rec *);     
  
  
  
  1.62      +1 -1      apache/src/http_main.c
  
  Index: http_main.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_main.c,v
  retrieving revision 1.61
  retrieving revision 1.62
  diff -C3 -r1.61 -r1.62
  *** http_main.c	1996/08/19 18:44:16	1.61
  --- http_main.c	1996/08/20 11:50:47	1.62
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: http_main.c,v 1.62 1996/08/20 11:50:47 paul Exp $ */
    
    /*
     * httpd.c: simple http daemon for answering WWW file requests
  
  
  
  1.4       +1 -1      apache/src/http_main.h
  
  Index: http_main.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_main.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -C3 -r1.3 -r1.4
  *** http_main.h	1996/05/22 17:35:37	1.3
  --- http_main.h	1996/08/20 11:50:48	1.4
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: http_main.h,v 1.4 1996/08/20 11:50:48 paul Exp $ */
    
    /*
     * Routines in http_main.c which other code --- in particular modules ---
  
  
  
  1.42      +2 -1      apache/src/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_protocol.c,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -C3 -r1.41 -r1.42
  *** http_protocol.c	1996/08/19 18:32:59	1.41
  --- http_protocol.c	1996/08/20 11:50:50	1.42
  ***************
  *** 1,4 ****
  -     
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,57 ----
     *
     */
      
  + /* $Id: http_protocol.c,v 1.42 1996/08/20 11:50:50 paul Exp $ */
  + 
    /*
     * http_protocol.c --- routines which directly communicate with the
     * client.
  
  
  
  1.8       +1 -1      apache/src/http_protocol.h
  
  Index: http_protocol.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_protocol.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -C3 -r1.7 -r1.8
  *** http_protocol.h	1996/07/28 19:27:45	1.7
  --- http_protocol.h	1996/08/20 11:50:50	1.8
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: http_protocol.h,v 1.8 1996/08/20 11:50:50 paul Exp $ */
    
    /*
     * Prototypes for routines which either talk directly back to the user,
  
  
  
  1.15      +1 -1      apache/src/http_request.c
  
  Index: http_request.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_request.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -C3 -r1.14 -r1.15
  *** http_request.c	1996/08/06 05:24:47	1.14
  --- http_request.c	1996/08/20 11:50:51	1.15
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: http_request.c,v 1.15 1996/08/20 11:50:51 paul Exp $ */
    
    /*
     * http_request.c: functions to get and process requests
  
  
  
  1.4       +1 -1      apache/src/http_request.h
  
  Index: http_request.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_request.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -C3 -r1.3 -r1.4
  *** http_request.h	1996/03/31 01:06:59	1.3
  --- http_request.h	1996/08/20 11:50:52	1.4
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: http_request.h,v 1.4 1996/08/20 11:50:52 paul Exp $ */
    
    /* http_request.c is the code which handles the main line of request
     * processing, once a request has been read in (finding the right per-
  
  
  
  1.47      +1 -1      apache/src/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/httpd.h,v
  retrieving revision 1.46
  retrieving revision 1.47
  diff -C3 -r1.46 -r1.47
  *** httpd.h	1996/08/19 18:32:59	1.46
  --- httpd.h	1996/08/20 11:50:52	1.47
  ***************
  *** 1,4 ****
  -  
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: httpd.h,v 1.47 1996/08/20 11:50:52 paul Exp $ */
    
    /*
     * httpd.h: header for simple (ha! not anymore) http daemon
  
  
  
  1.2       +2 -0      apache/src/md5.h
  
  Index: md5.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/md5.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -C3 -r1.1 -r1.2
  *** md5.h	1996/02/22 11:46:52	1.1
  --- md5.h	1996/08/20 11:50:53	1.2
  ***************
  *** 1,3 ****
  --- 1,5 ----
  + /* $Id: md5.h,v 1.2 1996/08/20 11:50:53 paul Exp $ */
  + 
    /*
     * This is work is derived from material Copyright RSA Data Security, Inc.
     *
  
  
  
  1.2       +2 -0      apache/src/md5c.c
  
  Index: md5c.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/md5c.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -C3 -r1.1 -r1.2
  *** md5c.c	1996/02/22 11:46:52	1.1
  --- md5c.c	1996/08/20 11:50:53	1.2
  ***************
  *** 1,3 ****
  --- 1,5 ----
  + /* $Id: md5c.c,v 1.2 1996/08/20 11:50:53 paul Exp $ */
  + 
    /*
     * This is work is derived from material Copyright RSA Data Security, Inc.
     *
  
  
  
  1.4       +1 -1      apache/src/mod_access.c
  
  Index: mod_access.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_access.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -C3 -r1.3 -r1.4
  *** mod_access.c	1996/03/01 02:39:51	1.3
  --- mod_access.c	1996/08/20 11:50:54	1.4
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_access.c,v 1.4 1996/08/20 11:50:54 paul Exp $  */
    
    /*
     * Security options etc.
  
  
  
  1.6       +2 -1      apache/src/mod_actions.c
  
  Index: mod_actions.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_actions.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -C3 -r1.5 -r1.6
  *** mod_actions.c	1996/07/28 19:27:46	1.5
  --- mod_actions.c	1996/08/20 11:50:55	1.6
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 50,55 ****
  --- 49,56 ----
     * project, please see <http://www.apache.org/>.
     *
     */
  + 
  + /* $Id: mod_actions.c,v 1.6 1996/08/20 11:50:55 paul Exp $ */
    
    /*
     * mod_actions.c: executes scripts based on MIME type
  
  
  
  1.3       +1 -1      apache/src/mod_ai_backcompat.c
  
  Index: mod_ai_backcompat.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_ai_backcompat.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** mod_ai_backcompat.c	1996/02/22 11:46:53	1.2
  --- mod_ai_backcompat.c	1996/08/20 11:50:55	1.3
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_ai_backcompat.c,v 1.3 1996/08/20 11:50:55 paul Exp $ */
    
    #include "httpd.h"
    #include "http_config.h"
  
  
  
  1.7       +1 -1      apache/src/mod_alias.c
  
  Index: mod_alias.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_alias.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -C3 -r1.6 -r1.7
  *** mod_alias.c	1996/07/28 19:27:47	1.6
  --- mod_alias.c	1996/08/20 11:50:56	1.7
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_alias.c,v 1.7 1996/08/20 11:50:56 paul Exp $ */
    
    /*
     * http_alias.c: Stuff for dealing with directory aliases
  
  
  
  1.6       +1 -1      apache/src/mod_asis.c
  
  Index: mod_asis.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_asis.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -C3 -r1.5 -r1.6
  *** mod_asis.c	1996/05/16 21:54:30	1.5
  --- mod_asis.c	1996/08/20 11:50:56	1.6
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_asis.c,v 1.6 1996/08/20 11:50:56 paul Exp $ */
    
    #include "httpd.h"
    #include "http_config.h"
  
  
  
  1.5       +1 -1      apache/src/mod_auth.c
  
  Index: mod_auth.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_auth.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -C3 -r1.4 -r1.5
  *** mod_auth.c	1996/08/14 04:43:21	1.4
  --- mod_auth.c	1996/08/20 11:50:57	1.5
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_auth.c,v 1.5 1996/08/20 11:50:57 paul Exp $ */
    
    /*
     * http_auth: authentication
  
  
  
  1.8       +1 -1      apache/src/mod_auth_anon.c
  
  Index: mod_auth_anon.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_auth_anon.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -C3 -r1.7 -r1.8
  *** mod_auth_anon.c	1996/08/19 21:18:27	1.7
  --- mod_auth_anon.c	1996/08/20 11:50:58	1.8
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_auth_anon.c,v 1.8 1996/08/20 11:50:58 paul Exp $ */
    
    /*
     * http_auth: authentication
  
  
  
  1.2       +1 -0      apache/src/mod_auth_db.c
  
  Index: mod_auth_db.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_auth_db.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -C3 -r1.1 -r1.2
  *** mod_auth_db.c	1996/02/22 11:46:55	1.1
  --- mod_auth_db.c	1996/08/20 11:50:58	1.2
  ***************
  *** 50,55 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_auth_db.c,v 1.2 1996/08/20 11:50:58 paul Exp $ */
    
    /*
     * mod_auth_db: authentication
  
  
  
  1.6       +1 -1      apache/src/mod_auth_dbm.c
  
  Index: mod_auth_dbm.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_auth_dbm.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -C3 -r1.5 -r1.6
  *** mod_auth_dbm.c	1996/04/10 07:47:45	1.5
  --- mod_auth_dbm.c	1996/08/20 11:50:59	1.6
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_auth_dbm.c,v 1.6 1996/08/20 11:50:59 paul Exp $ */
    
    /*
     * http_auth: authentication
  
  
  
  1.13      +1 -0      apache/src/mod_auth_msql.c
  
  Index: mod_auth_msql.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_auth_msql.c,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -C3 -r1.12 -r1.13
  *** mod_auth_msql.c	1996/08/19 21:18:28	1.12
  --- mod_auth_msql.c	1996/08/20 11:51:01	1.13
  ***************
  *** 50,55 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_auth_msql.c,v 1.13 1996/08/20 11:51:01 paul Exp $ */
    
    /*
     * mod_auth_msql: authentication
  
  
  
  1.3       +2 -1      apache/src/mod_browser.c
  
  Index: mod_browser.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_browser.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** mod_browser.c	1996/08/16 23:15:19	1.2
  --- mod_browser.c	1996/08/20 11:51:01	1.3
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1996 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 50,55 ****
  --- 49,56 ----
     * project, please see <http://www.apache.org/>.
     *
     */
  + 
  + /* $Id: mod_browser.c,v 1.3 1996/08/20 11:51:01 paul Exp $ */
    
    /*
     * mod_browser.c
  
  
  
  1.5       +2 -0      apache/src/mod_cern_meta.c
  
  Index: mod_cern_meta.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_cern_meta.c,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -C3 -r1.4 -r1.5
  *** mod_cern_meta.c	1996/07/01 19:06:57	1.4
  --- mod_cern_meta.c	1996/08/20 11:51:02	1.5
  ***************
  *** 50,55 ****
  --- 50,57 ----
     *
     */
    
  + /* $Id: mod_cern_meta.c,v 1.5 1996/08/20 11:51:02 paul Exp $ */
  + 
    /*
     * mod_cern_meta.c
     * version 0.0.5
  
  
  
  1.17      +2 -1      apache/src/mod_cgi.c
  
  Index: mod_cgi.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_cgi.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -C3 -r1.16 -r1.17
  *** mod_cgi.c	1996/08/13 17:57:30	1.16
  --- mod_cgi.c	1996/08/20 11:51:03	1.17
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 50,55 ****
  --- 49,56 ----
     * project, please see <http://www.apache.org/>.
     *
     */
  + 
  + /* $Id: mod_cgi.c,v 1.17 1996/08/20 11:51:03 paul Exp $ */
    
    /*
     * http_script: keeps all script-related ramblings together.
  
  
  
  1.12      +1 -1      apache/src/mod_cookies.c
  
  Index: mod_cookies.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_cookies.c,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -C3 -r1.11 -r1.12
  *** mod_cookies.c	1996/07/28 19:34:56	1.11
  --- mod_cookies.c	1996/08/20 11:51:04	1.12
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995, 1996 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_cookies.c,v 1.12 1996/08/20 11:51:04 paul Exp $ */
    
    /* User Tracking Module
     *
  
  
  
  1.7       +1 -1      apache/src/mod_digest.c
  
  Index: mod_digest.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_digest.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -C3 -r1.6 -r1.7
  *** mod_digest.c	1996/06/07 20:11:30	1.6
  --- mod_digest.c	1996/08/20 11:51:05	1.7
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_digest.c,v 1.7 1996/08/20 11:51:05 paul Exp $ */
    
    /*
     * mod_digest: MD5 digest authentication
  
  
  
  1.11      +1 -1      apache/src/mod_dir.c
  
  Index: mod_dir.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_dir.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -C3 -r1.10 -r1.11
  *** mod_dir.c	1996/06/21 20:12:07	1.10
  --- mod_dir.c	1996/08/20 11:51:08	1.11
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_dir.c,v 1.11 1996/08/20 11:51:08 paul Exp $ */
    
    /*
     * http_dir.c: Handles the on-the-fly html index generation
  
  
  
  1.3       +1 -1      apache/src/mod_dld.c
  
  Index: mod_dld.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_dld.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** mod_dld.c	1996/02/22 11:47:02	1.2
  --- mod_dld.c	1996/08/20 11:51:09	1.3
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_dld.c,v 1.3 1996/08/20 11:51:09 paul Exp $ */
    
    /*
     * A first stab at dynamic loading, using the GNU dld library
  
  
  
  1.3       +2 -0      apache/src/mod_env.c
  
  Index: mod_env.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_env.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** mod_env.c	1996/05/27 19:48:39	1.2
  --- mod_env.c	1996/08/20 11:51:10	1.3
  ***************
  *** 50,55 ****
  --- 50,57 ----
     *
     */
    
  + /* $Id: mod_env.c,v 1.3 1996/08/20 11:51:10 paul Exp $ */
  + 
    /*
     * mod_env.c
     * version 0.0.5
  
  
  
  1.10      +1 -1      apache/src/mod_imap.c
  
  Index: mod_imap.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_imap.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -C3 -r1.9 -r1.10
  *** mod_imap.c	1996/06/07 17:39:25	1.9
  --- mod_imap.c	1996/08/20 11:51:11	1.10
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_imap.c,v 1.10 1996/08/20 11:51:11 paul Exp $ */
    /*
     * This imagemap module started as a port of the original imagemap.c
     * written by Rob McCool (11/13/93 robm@ncsa.uiuc.edu).
  
  
  
  1.14      +1 -1      apache/src/mod_include.c
  
  Index: mod_include.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_include.c,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -C3 -r1.13 -r1.14
  *** mod_include.c	1996/08/07 00:15:03	1.13
  --- mod_include.c	1996/08/20 11:51:12	1.14
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_include.c,v 1.14 1996/08/20 11:51:12 paul Exp $ */
    
    /*
     * http_include.c: Handles the server-parsed HTML documents
  
  
  
  1.3       +2 -0      apache/src/mod_info.c
  
  Index: mod_info.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_info.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** mod_info.c	1996/07/25 19:35:59	1.2
  --- mod_info.c	1996/08/20 11:51:13	1.3
  ***************
  *** 50,55 ****
  --- 50,57 ----
     *
     */
    
  + /* $Id: mod_info.c,v 1.3 1996/08/20 11:51:13 paul Exp $ */
  + 
    /* 
     * Info Module.  Display configuration information for the server and
     * all included modules.
  
  
  
  1.3       +1 -1      apache/src/mod_log_agent.c
  
  Index: mod_log_agent.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_log_agent.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** mod_log_agent.c	1996/02/22 11:47:06	1.2
  --- mod_log_agent.c	1996/08/20 11:51:14	1.3
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_log_agent.c,v 1.3 1996/08/20 11:51:14 paul Exp $ */
    
    
    #include "httpd.h"
  
  
  
  1.10      +1 -1      apache/src/mod_log_config.c
  
  Index: mod_log_config.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_log_config.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -C3 -r1.9 -r1.10
  *** mod_log_config.c	1996/08/19 18:12:35	1.9
  --- mod_log_config.c	1996/08/20 11:51:15	1.10
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_log_config.c,v 1.10 1996/08/20 11:51:15 paul Exp $  */
    
    /*
     * This is module implements the TransferLog directive (same as the
  
  
  
  1.4       +1 -1      apache/src/mod_log_referer.c
  
  Index: mod_log_referer.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_log_referer.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -C3 -r1.3 -r1.4
  *** mod_log_referer.c	1996/05/07 07:23:30	1.3
  --- mod_log_referer.c	1996/08/20 11:51:16	1.4
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_log_referer.c,v 1.4 1996/08/20 11:51:16 paul Exp $ */
    
    
    #include "httpd.h"
  
  
  
  1.11      +1 -1      apache/src/mod_mime.c
  
  Index: mod_mime.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_mime.c,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -C3 -r1.10 -r1.11
  *** mod_mime.c	1996/06/07 20:19:01	1.10
  --- mod_mime.c	1996/08/20 11:51:16	1.11
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_mime.c,v 1.11 1996/08/20 11:51:16 paul Exp $ */
    
    /*
     * http_mime.c: Sends/gets MIME headers for requests
  
  
  
  1.17      +1 -1      apache/src/mod_negotiation.c
  
  Index: mod_negotiation.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_negotiation.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -C3 -r1.16 -r1.17
  *** mod_negotiation.c	1996/08/15 20:15:42	1.16
  --- mod_negotiation.c	1996/08/20 11:51:17	1.17
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_negotiation.c,v 1.17 1996/08/20 11:51:17 paul Exp $ */
    
    /*
     * mod_negotiation.c: keeps track of MIME types the client is willing to
  
  
  
  1.3       +1 -1      apache/src/mod_rewrite.c
  
  Index: mod_rewrite.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_rewrite.c,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** mod_rewrite.c	1996/08/16 23:18:02	1.2
  --- mod_rewrite.c	1996/08/20 11:51:18	1.3
  ***************
  *** 1,4 ****
  -  
    /* ====================================================================
     * Copyright (c) 1996 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_rewrite.c,v 1.3 1996/08/20 11:51:18 paul Exp $ */
    
    /*
    **  mod_rewrite.c
  
  
  
  1.4       +2 -0      apache/src/mod_rewrite.h
  
  Index: mod_rewrite.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_rewrite.h,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -C3 -r1.3 -r1.4
  *** mod_rewrite.h	1996/08/20 11:22:21	1.3
  --- mod_rewrite.h	1996/08/20 11:51:19	1.4
  ***************
  *** 50,55 ****
  --- 50,57 ----
     *
     */
    
  + /* $Id: mod_rewrite.h,v 1.4 1996/08/20 11:51:19 paul Exp $ */
  + 
    #ifndef _MOD_REWRITE_H
    #define _MOD_REWRITE_H 1
    
  
  
  
  1.29      +2 -0      apache/src/mod_status.c
  
  Index: mod_status.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_status.c,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -C3 -r1.28 -r1.29
  *** mod_status.c	1996/07/25 19:35:57	1.28
  --- mod_status.c	1996/08/20 11:51:20	1.29
  ***************
  *** 50,55 ****
  --- 50,57 ----
     *
     */
    
  + /* $Id: mod_status.c,v 1.29 1996/08/20 11:51:20 paul Exp $ */
  + 
    /* Status Module.  Provide a way of getting at the internal Apache
     * status information without having to worry where the scoreboard is
     * held.
  
  
  
  1.8       +1 -1      apache/src/mod_userdir.c
  
  Index: mod_userdir.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/mod_userdir.c,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -C3 -r1.7 -r1.8
  *** mod_userdir.c	1996/03/22 01:05:23	1.7
  --- mod_userdir.c	1996/08/20 11:51:20	1.8
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: mod_userdir.c,v 1.8 1996/08/20 11:51:20 paul Exp $ */
    
    /*
     * mod_userdir... implement the UserDir command.  Broken away from the
  
  
  
  1.4       +1 -0      apache/src/rfc1413.c
  
  Index: rfc1413.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/rfc1413.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -C3 -r1.3 -r1.4
  *** rfc1413.c	1996/07/16 22:22:09	1.3
  --- rfc1413.c	1996/08/20 11:51:21	1.4
  ***************
  *** 50,55 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: rfc1413.c,v 1.4 1996/08/20 11:51:21 paul Exp $ */
    
    /*
     * rfc1413() speaks a common subset of the RFC 1413, AUTH, TAP and IDENT
  
  
  
  1.2       +2 -0      apache/src/rfc1413.h
  
  Index: rfc1413.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/rfc1413.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -C3 -r1.1 -r1.2
  *** rfc1413.h	1996/03/01 02:46:47	1.1
  --- rfc1413.h	1996/08/20 11:51:21	1.2
  ***************
  *** 50,53 ****
  --- 50,55 ----
     *
     */
    
  + /* $Id: rfc1413.h,v 1.2 1996/08/20 11:51:21 paul Exp $ */
  + 
    extern char *rfc1413(conn_rec *conn, server_rec *srv);
  
  
  
  1.15      +2 -1      apache/src/scoreboard.h
  
  Index: scoreboard.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/scoreboard.h,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -C3 -r1.14 -r1.15
  *** scoreboard.h	1996/07/16 19:39:14	1.14
  --- scoreboard.h	1996/08/20 11:51:22	1.15
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 50,55 ****
  --- 49,56 ----
     * project, please see <http://www.apache.org/>.
     *
     */
  + 
  + /* $Id: scoreboard.h,v 1.15 1996/08/20 11:51:22 paul Exp $ */
    
    #include <sys/times.h>
    
  
  
  
  1.18      +1 -1      apache/src/util.c
  
  Index: util.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/util.c,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -C3 -r1.17 -r1.18
  *** util.c	1996/08/19 22:58:28	1.17
  --- util.c	1996/08/20 11:51:23	1.18
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: util.c,v 1.18 1996/08/20 11:51:23 paul Exp $ */
    
    /*
     * str.c: string utility things
  
  
  
  1.4       +2 -1      apache/src/util_md5.c
  
  Index: util_md5.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/util_md5.c,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -C3 -r1.3 -r1.4
  *** util_md5.c	1996/03/26 19:05:24	1.3
  --- util_md5.c	1996/08/20 11:51:24	1.4
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 50,55 ****
  --- 49,56 ----
     * project, please see <http://www.apache.org/>.
     *
     */
  + 
  + /* $Id: util_md5.c,v 1.4 1996/08/20 11:51:24 paul Exp $ */
    
    /************************************************************************
     * NCSA HTTPd Server
  
  
  
  1.2       +2 -1      apache/src/util_md5.h
  
  Index: util_md5.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/util_md5.h,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -C3 -r1.1 -r1.2
  *** util_md5.h	1996/03/21 03:50:16	1.1
  --- util_md5.h	1996/08/20 11:51:24	1.2
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 50,55 ****
  --- 49,56 ----
     * project, please see <http://www.apache.org/>.
     *
     */
  + 
  + /* $Id: util_md5.h,v 1.2 1996/08/20 11:51:24 paul Exp $ */
    
    #include "md5.h"
    
  
  
  
  1.21      +1 -1      apache/src/util_script.c
  
  Index: util_script.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/util_script.c,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -C3 -r1.20 -r1.21
  *** util_script.c	1996/08/08 17:01:15	1.20
  --- util_script.c	1996/08/20 11:51:25	1.21
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: util_script.c,v 1.21 1996/08/20 11:51:25 paul Exp $ */
    
    
    #define CORE_PRIVATE
  
  
  
  1.6       +1 -1      apache/src/util_script.h
  
  Index: util_script.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/util_script.h,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -C3 -r1.5 -r1.6
  *** util_script.h	1996/08/06 19:31:09	1.5
  --- util_script.h	1996/08/20 11:51:25	1.6
  ***************
  *** 1,4 ****
  - 
    /* ====================================================================
     * Copyright (c) 1995 The Apache Group.  All rights reserved.
     *
  --- 1,3 ----
  ***************
  *** 51,56 ****
  --- 50,56 ----
     *
     */
    
  + /* $Id: util_script.h,v 1.6 1996/08/20 11:51:25 paul Exp $ */
    
    char **create_argv(pool *p, char *av0, char *args);
    #ifdef __EMX__