Commit 0c31aa4d authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  Doc formatting fixes


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89749 13f79535-47bb-0310-9956-ffa450edef68
parent 1575d79a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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 *);
+4 −4
Original line number Diff line number Diff line
@@ -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);
+4 −4
Original line number Diff line number Diff line
@@ -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)
+2 −2
Original line number Diff line number Diff line
@@ -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);