]> granicus.if.org Git - apache/commitdiff
Doc formatting fixes
authorWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 27 Jul 2001 21:01:16 +0000 (21:01 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 27 Jul 2001 21:01:16 +0000 (21:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89749 13f79535-47bb-0310-9956-ffa450edef68

include/http_connection.h
include/http_core.h
include/http_protocol.h
include/mpm_common.h

index 6053d899a161bde535a1bc249d234feff00882a2..37fcba7fab2bf60c9c2d0c96bb9d611e550a3f7c 100644 (file)
@@ -90,7 +90,7 @@ AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c);
 
 /**
  * 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 @@ AP_CORE_DECLARE(void) ap_flush_conn(conn_rec *c);
  * 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 *);
index 8fbe554cc24b7d50ef97f22bcf637c42093ad915..112c4e5822dbd9f6b3bd20cabbdd8f396e091c8a 100644 (file)
@@ -171,7 +171,7 @@ AP_DECLARE(const char *) ap_document_root(request_rec *r);
  * @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 @@ AP_DECLARE(const char *) ap_document_root(request_rec *r);
  *                   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 @@ AP_DECLARE(const char *) ap_auth_name(request_rec *r);
  * 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);
index 1d7a26a6ba1850d5f298c285ab33b0085c911fbd..5ab522cd2bfef2df620ec9141da570dbd923c915 100644 (file)
@@ -384,11 +384,11 @@ AP_DECLARE(const char *) ap_get_status_line(int status);
  * 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 @@ AP_DECLARE(int) ap_get_basic_auth_pw(request_rec *r, const char **pw);
 
 /**
  * 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)
index 7ce25856610a61642339bc44fb95fcb364925c7d..4d160de180194b7af0f03c9c008ee9a468510695 100644 (file)
@@ -106,11 +106,11 @@ extern "C" {
  * @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);