summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-07-27 21:01:16 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-07-27 21:01:16 +0000
commitc86f1205600026ada72710b3573c84bcd6a6d979 (patch)
tree803049d85246f6dffeaf349d3776eb7ad40e3d3f
parent26676d06d2eb9e7ada94f8efd881762d9d3baa3d (diff)
downloadhttpd-c86f1205600026ada72710b3573c84bcd6a6d979.tar.gz
Doc formatting fixes
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89749 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/http_connection.h4
-rw-r--r--include/http_core.h8
-rw-r--r--include/http_protocol.h8
-rw-r--r--include/mpm_common.h4
4 files changed, 12 insertions, 12 deletions
diff --git a/include/http_connection.h b/include/http_connection.h
index 6053d899a1..37fcba7fab 100644
--- a/include/http_connection.h
+++ b/include/http_connection.h
@@ -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 *);
diff --git a/include/http_core.h b/include/http_core.h
index 8fbe554cc2..112c4e5822 100644
--- a/include/http_core.h
+++ b/include/http_core.h
@@ -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);
diff --git a/include/http_protocol.h b/include/http_protocol.h
index 1d7a26a6ba..5ab522cd2b 100644
--- a/include/http_protocol.h
+++ b/include/http_protocol.h
@@ -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)
diff --git a/include/mpm_common.h b/include/mpm_common.h
index 7ce2585661..4d160de180 100644
--- a/include/mpm_common.h
+++ b/include/mpm_common.h
@@ -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);