You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2001/07/27 23:01:16 UTC

cvs commit: httpd-2.0/include http_connection.h http_core.h http_protocol.h mpm_common.h

wrowe       01/07/27 14:01:16

  Modified:    include  http_connection.h http_core.h http_protocol.h
                        mpm_common.h
  Log:
    Doc formatting fixes
  
  Revision  Changes    Path
  1.37      +2 -2      httpd-2.0/include/http_connection.h
  
  Index: http_connection.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/include/http_connection.h,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- http_connection.h	2001/05/11 04:35:32	1.36
  +++ http_connection.h	2001/07/27 21:01:16	1.37
  @@ -90,7 +90,7 @@
   
   /**
    * This function is responsible for the following cases:
  - * <PRE>
  + * <pre>
    * we now proceed to read from the client until we get EOF, or until
    * MAX_SECS_TO_LINGER has passed.  the reasons for doing this are
    * documented in a draft:
  @@ -100,7 +100,7 @@
    * in a nutshell -- if we don't make this effort we risk causing
    * TCP RST packets to be sent which can tear down a connection before
    * all the response data has been sent to the client.
  - * </PRE>
  + * </pre>
    * @param c The connection we are closing
    */
   void ap_lingering_close(conn_rec *);
  
  
  
  1.45      +4 -4      httpd-2.0/include/http_core.h
  
  Index: http_core.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/include/http_core.h,v
  retrieving revision 1.44
  retrieving revision 1.45
  diff -u -r1.44 -r1.45
  --- http_core.h	2001/06/13 20:11:43	1.44
  +++ http_core.h	2001/07/27 21:01:16	1.45
  @@ -171,7 +171,7 @@
    * @param conn The current connection
    * @param dir_config The directory config vector from the request
    * @param type The type of lookup to perform.  One of:
  - * <PRE>
  + * <pre>
    *     REMOTE_HOST returns the hostname, or NULL if the hostname
    *                 lookup fails.  It will force a DNS lookup according to the
    *                 HostnameLookups setting.
  @@ -184,7 +184,7 @@
    *                   a double reverse lookup, regardless of the HostnameLookups
    *                   setting.  The result is the (double reverse checked) 
    *                   hostname, or NULL if any of the lookups fail.
  - * </PRE>
  + * </pre>
    * @param str_is_ip unless NULL is passed, this will be set to non-zero on output when an IP address 
    *        string is returned
    * @return The remote hostname
  @@ -302,11 +302,11 @@
    * How the requires lines must be met.
    * @param r The current request
    * @return How the requirements must be met.  One of:
  - * <PRE>
  + * <pre>
    *      SATISFY_ANY    -- any of the requirements must be met.
    *      SATISFY_ALL    -- all of the requirements must be met.
    *      SATISFY_NOSPEC -- There are no applicable satisfy lines
  - * </PRE>
  + * </pre>
    * @deffunc int ap_satisfies(request_rec *r)
    */
   AP_DECLARE(int) ap_satisfies(request_rec *r);
  
  
  
  1.60      +4 -4      httpd-2.0/include/http_protocol.h
  
  Index: http_protocol.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/include/http_protocol.h,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- http_protocol.h	2001/07/26 15:53:15	1.59
  +++ http_protocol.h	2001/07/27 21:01:16	1.60
  @@ -384,11 +384,11 @@
    * Setup the client to allow Apache to read the request body.
    * @param r The current request
    * @param read_policy How the server should interpret a chunked 
  - *                    transfer-encoding.  One of: <PRE>
  + *                    transfer-encoding.  One of: <pre>
    *    REQUEST_NO_BODY          Send 413 error if message has any body
    *    REQUEST_CHUNKED_ERROR    Send 411 error if body without Content-Length
    *    REQUEST_CHUNKED_DECHUNK  If chunked, remove the chunks for me.
  - * </PRE>
  + * </pre>
    * @return either OK or an error code
    * @deffunc int ap_setup_cleint_block(request_rec *r, int read_policy)
    */
  @@ -475,11 +475,11 @@
   
   /**
    * parse_uri: break apart the uri
  - * @warning Side Effects: <PRE>
  + * @warning Side Effects: <pre>
    *    - sets r->args to rest after '?' (or NULL if no '?')
    *    - sets r->uri to request uri (without r->args part)
    *    - sets r->hostname (if not set already) from request (scheme://host:port)
  - * </PRE>
  + * </pre>
    * @param r The current request
    * @param uri The uri to break apart
    * @deffunc void ap_parse_uri(request_rec *r, const char *uri)
  
  
  
  1.23      +2 -2      httpd-2.0/include/mpm_common.h
  
  Index: mpm_common.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/include/mpm_common.h,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- mpm_common.h	2001/07/18 21:16:40	1.22
  +++ mpm_common.h	2001/07/27 21:01:16	1.23
  @@ -106,11 +106,11 @@
    * @param terminate Either 1 or 0.  If 1, send the child processes SIGTERM
    *        each time through the loop.  If 0, give the process time to die
    *        on its own before signalling it.
  - * @tip This function requires that some macros are defined by the MPM: <PRE>
  + * @tip This function requires that some macros are defined by the MPM: <pre>
    *  MPM_SYNC_CHILD_TABLE -- sync the scoreboard image between child and parent
    *  MPM_CHILD_PID -- Get the pid from the specified spot in the scoreboard
    *  MPM_NOTE_CHILD_KILLED -- Note the child died in the scoreboard
  - * </PRE>
  + * </pre>
    */
   #if AP_MPM_NEEDS_RECLAIM_CHILD_PROCESSES
   void ap_reclaim_child_processes(int terminate);