* @return the Options bitmask
* @deffunc int ap_allow_options(request_rec *r)
*/
-AP_DECLARE(int) ap_allow_options (request_rec *r);
+AP_DECLARE(int) ap_allow_options(request_rec *r);
+
/**
* Retrieve the value of the AllowOverride for this request
* @param r The current request
* @return the overrides bitmask
* @deffunc int ap_allow_overrides(request_rec *r)
*/
-AP_DECLARE(int) ap_allow_overrides (request_rec *r);
+AP_DECLARE(int) ap_allow_overrides(request_rec *r);
+
/**
* Retrieve the value of the DefaultType directive, or text/plain if not set
* @param r The current request
* @return The default type
* @deffunc const char *ap_default_type(request_rec *r)
*/
-AP_DECLARE(const char *) ap_default_type (request_rec *r);
+AP_DECLARE(const char *) ap_default_type(request_rec *r);
+
/**
* Retrieve the document root for this server
* @param r The current request
* @return The document root
* @deffunc const char *ap_document_root(request_rec *r)
*/
-AP_DECLARE(const char *) ap_document_root (request_rec *r);
+AP_DECLARE(const char *) ap_document_root(request_rec *r);
+
/**
* Lookup the remote client's DNS name or IP address
* @param conn The current connection
* @deffunc const char *ap_get_remote_host(conn_rec *conn, void *dir_config, int type)
*/
AP_DECLARE(const char *) ap_get_remote_host(conn_rec *conn, void *dir_config, int type);
+
/**
* Retrieve the login name of the remote user. Undef if it could not be
* determined
* @deffunc char *ap_construct_url(apr_pool_t *p, const char *uri, request_rec *r)
*/
AP_DECLARE(char *) ap_construct_url(apr_pool_t *p, const char *uri, request_rec *r);
+
/**
* Get the current server name from the request
* @param r The current request
* @deffunc const char *ap_get_server_name(request_rec *r)
*/
AP_DECLARE(const char *) ap_get_server_name(request_rec *r);
+
/**
* Get the current server port
* @param The current request
* @deffunc apr_port_t ap_get_server_port(const request_rec *r)
*/
AP_DECLARE(apr_port_t) ap_get_server_port(const request_rec *r);
+
/**
* Return the limit on bytes in request msg body
* @param r The current request
* @deffunc unsigned long ap_get_limit_req_body(const request_rec *r)
*/
AP_DECLARE(unsigned long) ap_get_limit_req_body(const request_rec *r);
+
/**
* Return the limit on bytes in XML request msg body
* @param r The current request
* @deffunc size_t ap_get_limit_xml_body(const request_rec *r)
*/
AP_DECLARE(size_t) ap_get_limit_xml_body(const request_rec *r);
+
/**
* Install a custom response handler for a given status
* @param r The current request
* @deffunc void ap_custom_response(request_rec *r, int status, char *string)
*/
AP_DECLARE(void) ap_custom_response(request_rec *r, int status, char *string);
+
/**
* Check for a definition from the server command line
* @param name The define to check for
* @return The authorization required
* @deffunc const char *ap_auth_type(request_rec *r)
*/
-AP_DECLARE(const char *) ap_auth_type (request_rec *r);
+AP_DECLARE(const char *) ap_auth_type(request_rec *r);
+
/**
* Return the current Authorization realm
* @param r The current request
* @return The current authorization realm
* @deffunc const char *ap_auth_name(request_rec *r)
*/
-AP_DECLARE(const char *) ap_auth_name (request_rec *r);
+AP_DECLARE(const char *) ap_auth_name(request_rec *r);
+
/**
* How the requires lines must be met.
* @param r The current request
* </PRE>
* @deffunc int ap_satisfies(request_rec *r)
*/
-AP_DECLARE(int) ap_satisfies (request_rec *r);
+AP_DECLARE(int) ap_satisfies(request_rec *r);
+
/**
* Retrieve information about all of the requires directives for this request
* @param r The current request
* @return An array of all requires directives for this request
* @deffunc const apr_array_header_t *ap_requires(request_rec *r)
*/
-AP_DECLARE(const apr_array_header_t *) ap_requires (request_rec *r);
+AP_DECLARE(const apr_array_header_t *) ap_requires(request_rec *r);
#if defined(WIN32)
/*
* the code that cares really is in http_core.c. Also, another accessor.
*/
-char *ap_response_code_string (request_rec *r, int error_index);
-
AP_DECLARE_DATA extern module core_module;
/* Per-request configuration */
void ap_core_reorder_directories(apr_pool_t *, server_rec *);
/* for mod_perl */
-AP_CORE_DECLARE(void) ap_add_per_dir_conf (server_rec *s, void *dir_config);
-AP_CORE_DECLARE(void) ap_add_per_url_conf (server_rec *s, void *url_config);
+AP_CORE_DECLARE(void) ap_add_per_dir_conf(server_rec *s, void *dir_config);
+AP_CORE_DECLARE(void) ap_add_per_url_conf(server_rec *s, void *url_config);
AP_CORE_DECLARE(void) ap_add_file_conf(core_dir_config *conf, void *url_config);
-AP_CORE_DECLARE_NONSTD(const char *) ap_limit_section (cmd_parms *cmd, void *dummy, const char *arg);
+AP_CORE_DECLARE_NONSTD(const char *) ap_limit_section(cmd_parms *cmd, void *dummy, const char *arg);
#endif