/* Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License.
*/
/* **************************************************************** * * The most basic server code is encapsulated in a single module * known as the core, which is just *barely* functional enough to * serve documents, though not terribly well. * * Largely for NCSA back-compatibility reasons, the core needs to * make pieces of its config structures available to other modules. * The accessors are declared here, along with the interpretation * of one of them (allow_options).
*/
/** * @defgroup get_remote_host Remote Host Resolution * @ingroup APACHE_CORE_HTTPD * @{
*/ /** REMOTE_HOST returns the hostname, or NULL if the hostname * lookup fails. It will force a DNS lookup according to the * HostnameLookups setting.
*/ #define REMOTE_HOST (0)
/** REMOTE_NAME returns the hostname, or the dotted quad if the * hostname lookup fails. It will force a DNS lookup according * to the HostnameLookups setting.
*/ #define REMOTE_NAME (1)
/** REMOTE_NOLOOKUP is like REMOTE_NAME except that a DNS lookup is * never forced.
*/ #define REMOTE_NOLOOKUP (2)
/** REMOTE_DOUBLE_REV will always force a DNS lookup, and also force * 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.
*/ #define REMOTE_DOUBLE_REV (3)
/** @} // get_remote_host */
/** all of the requirements must be met */ #define SATISFY_ALL 0 /** any of the requirements must be met */ #define SATISFY_ANY 1 /** There are no applicable satisfy lines */ #define SATISFY_NOSPEC 2
/** Make sure we don't write less than 8000 bytes at any one time.
*/ #define AP_MIN_BYTES_TO_WRITE 8000
/** default maximum of internal redirects */ # define AP_DEFAULT_MAX_INTERNAL_REDIRECTS 10
/** * Retrieve the value of Options for this request * @param r The current request * @return the Options bitmask
*/
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
*/
AP_DECLARE(int) ap_allow_overrides(request_rec *r);
/** * Retrieve the document root for this server * @param r The current request * @warning Don't use this! If your request went through a Userdir, or * something like that, it'll screw you. But it's back-compatible... * @return The document root
*/
AP_DECLARE(constchar *) ap_document_root(request_rec *r);
/** * Lookup the remote user agent's DNS name or IP address * @ingroup get_remote_host * @param req The current request * @param type The type of lookup to perform. One of: * <pre> * REMOTE_HOST returns the hostname, or NULL if the hostname * lookup fails. It will force a DNS lookup according to the * HostnameLookups setting. * REMOTE_NAME returns the hostname, or the dotted quad if the * hostname lookup fails. It will force a DNS lookup according * to the HostnameLookups setting. * REMOTE_NOLOOKUP is like REMOTE_NAME except that a DNS lookup is * never forced. * REMOTE_DOUBLE_REV will always force a DNS lookup, and also force * 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> * @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 (based on the request useragent_ip)
*/
AP_DECLARE(constchar *) ap_get_useragent_host(request_rec *req, int type, int *str_is_ip);
/** * Lookup the remote client's DNS name or IP address * @ingroup get_remote_host * @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> * REMOTE_HOST returns the hostname, or NULL if the hostname * lookup fails. It will force a DNS lookup according to the * HostnameLookups setting. * REMOTE_NAME returns the hostname, or the dotted quad if the * hostname lookup fails. It will force a DNS lookup according * to the HostnameLookups setting. * REMOTE_NOLOOKUP is like REMOTE_NAME except that a DNS lookup is * never forced. * REMOTE_DOUBLE_REV will always force a DNS lookup, and also force * 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> * @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 (based on the connection client_ip)
*/
AP_DECLARE(constchar *) ap_get_remote_host(conn_rec *conn, void *dir_config, int type, int *str_is_ip);
/** * Retrieve the login name of the remote user. Undef if it could not be * determined * @param r The current request * @return The user logged in to the client machine
*/
AP_DECLARE(constchar *) ap_get_remote_logname(request_rec *r);
/* Used for constructing self-referencing URLs, and things like SERVER_PORT, * and SERVER_NAME.
*/ /** * build a fully qualified URL from the uri and information in the request rec * @param p The pool to allocate the URL from * @param uri The path to the requested file * @param r The current request * @return A fully qualified URL
*/
AP_DECLARE(char *) ap_construct_url(apr_pool_t *p, constchar *uri, request_rec *r);
/** * Get the current server name from the request * @param r The current request * @return the server name
*/
AP_DECLARE(constchar *) ap_get_server_name(request_rec *r);
/** * Get the current server name from the request for the purposes * of using in a URL. If the server name is an IPv6 literal * address, it will be returned in URL format (e.g., "[fe80::1]"). * @param r The current request * @return the server name
*/
AP_DECLARE(constchar *) ap_get_server_name_for_url(request_rec *r);
/** * Get the current server port * @param r The current request * @return The server's port
*/
AP_DECLARE(apr_port_t) ap_get_server_port(const request_rec *r);
/** * Get the size of read buffers * @param r The current request * @return The read buffers size
*/
AP_DECLARE(apr_size_t) ap_get_read_buf_size(const request_rec *r);
/** * Return the limit on bytes in request msg body * @param r The current request * @return the maximum number of bytes in the request msg body
*/
AP_DECLARE(apr_off_t) ap_get_limit_req_body(const request_rec *r);
/** * Return the limit on bytes in XML request msg body * @param r The current request * @return the maximum number of bytes in XML request msg body
*/
AP_DECLARE(apr_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 * @param status The status for which the custom response should be used * @param string The custom response. This can be a static string, a file * or a URL
*/
AP_DECLARE(void) ap_custom_response(request_rec *r, int status, constchar *string);
/** * Check if the current request is beyond the configured max. number of redirects or subrequests * @param r The current request * @return true (is exceeded) or false
*/
AP_DECLARE(int) ap_is_recursion_limit_exceeded(const request_rec *r);
/** * Check for a definition from the server command line * @param name The define to check for * @return 1 if defined, 0 otherwise
*/
AP_DECLARE(int) ap_exists_config_define(constchar *name); /* FIXME! See STATUS about how */
AP_DECLARE_NONSTD(int) ap_core_translate(request_rec *r);
/* Authentication stuff. This is one of the places where compatibility * with the old config files *really* hurts; they don't discriminate at * all between different authentication schemes, meaning that we need * to maintain common state for all of them in the core, and make it * available to the other modules through interfaces.
*/
/** * @brief A structure to keep track of authorization requirements
*/ struct require_line { /** Where the require line is in the config file. */
apr_int64_t method_mask; /** The complete string from the command line */ char *requirement;
};
/** * Return the type of authorization required for this request * @param r The current request * @return The authorization required
*/
AP_DECLARE(constchar *) ap_auth_type(request_rec *r);
/** * Return the current Authorization realm * @param r The current request * @return The current authorization realm
*/
AP_DECLARE(constchar *) 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> * 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>
*/
AP_DECLARE(int) ap_satisfies(request_rec *r);
/** * Core is also unlike other modules in being implemented in more than * one file... so, data structures are declared here, even though most of * the code that cares really is in http_core.c. Also, another accessor.
*/
AP_DECLARE_DATA extern module core_module;
/** * Accessor for core_module's specific data. Equivalent to * ap_get_module_config(cv, &core_module) but more efficient. * @param cv The vector in which the modules configuration is stored. * usually r->per_dir_config or s->module_config * @return The module-specific data
*/
AP_DECLARE(void *) ap_get_core_module_config(const ap_conf_vector_t *cv);
/** * Accessor to set core_module's specific data. Equivalent to * ap_set_module_config(cv, &core_module, val) but more efficient. * @param cv The vector in which the modules configuration is stored. * usually r->per_dir_config or s->module_config * @param val The module-specific data to set
*/
AP_DECLARE(void) ap_set_core_module_config(ap_conf_vector_t *cv, void *val);
/** Get the socket from the core network filter. This should be used instead of * accessing the core connection config directly. * @param c The connection record * @return The socket
*/
AP_DECLARE(apr_socket_t *) ap_get_conn_socket(conn_rec *c);
/** * @brief Per-request configuration
*/ typedefstruct { /** bucket brigade used by getline for look-ahead and
* ap_get_client_block for holding left-over request body */ struct apr_bucket_brigade *bb;
/** an array of per-request working data elements, accessed * by ID using ap_get_request_note() * (Use ap_register_request_note() during initialization * to add elements)
*/ void **notes;
/** Custom response strings registered via ap_custom_response(), * or NULL; check per-dir config if nothing found here
*/ char **response_code_strings; /* from ap_custom_response(), not from * ErrorDocument
*/
/** per-request document root of the server. This allows mass vhosting * modules better compatibility with some scripts. Normally the
* context_* info should be used instead */ constchar *document_root;
/* * more fine-grained context information which is set by modules like * mod_alias and mod_userdir
*/ /** the context root directory on disk for the current resource, * without trailing slash
*/ constchar *context_document_root; /** the URI prefix that corresponds to the context_document_root directory, * without trailing slash
*/ constchar *context_prefix;
/** There is a script processor installed on the output filter chain, * so it needs the default_handler to deliver a (script) file into * the chain so it can process it. Normally, default_handler only * serves files on a GET request (assuming the file is actual content), * since other methods are not content-retrieval. This flag overrides * that behavior, stating that the "content" is actually a script and * won't actually be delivered as the response for the non-GET method.
*/ int deliver_script;
/** Should addition of charset= be suppressed for this request?
*/ int suppress_charset;
} core_request_config;
/* Standard entries that are guaranteed to be accessible via * ap_get_request_note() for each request (additional entries * can be added with ap_register_request_note())
*/ #define AP_NOTE_DIRECTORY_WALK 0 #define AP_NOTE_LOCATION_WALK 1 #define AP_NOTE_FILE_WALK 2 #define AP_NOTE_IF_WALK 3 #define AP_NUM_STD_NOTES 4
/** * Reserve an element in the core_request_config->notes array * for some application-specific data * @return An integer key that can be passed to ap_get_request_note() * during request processing to access this element for the * current request.
*/
AP_DECLARE(apr_size_t) ap_register_request_note(void);
/** * Retrieve a pointer to an element in the core_request_config->notes array * @param r The request * @param note_num A key for the element: either a value obtained from * ap_register_request_note() or one of the predefined AP_NOTE_* * values. * @return NULL if the note_num is invalid, otherwise a pointer to the * requested note element. * @remark At the start of a request, each note element is NULL. The * handle provided by ap_get_request_note() is a pointer-to-pointer * so that the caller can point the element to some app-specific * data structure. The caller should guarantee that any such * structure will last as long as the request itself.
*/
AP_DECLARE(void **) ap_get_request_note(request_rec *r, apr_size_t note_num);
/* * Bits of info that go into making an ETag for a file * document. Why a long? Because char historically * proved too short for Options, and int can be different * sizes on different platforms.
*/ typedefunsignedlong etag_components_t;
#define ETAG_UNSET 0 #define ETAG_NONE (1 << 0) #define ETAG_MTIME (1 << 1) #define ETAG_INODE (1 << 2) #define ETAG_SIZE (1 << 3) #define ETAG_DIGEST (1 << 4) #define ETAG_ALL (ETAG_MTIME | ETAG_INODE | ETAG_SIZE) /* This is the default value used */ #define ETAG_BACKWARD (ETAG_MTIME | ETAG_SIZE)
/* Generic ON/OFF/UNSET for unsigned int foo :2 */ #define AP_CORE_CONFIG_OFF (0) #define AP_CORE_CONFIG_ON (1) #define AP_CORE_CONFIG_UNSET (2)
/* Generic merge of flag */ #define AP_CORE_MERGE_FLAG(field, to, base, over) to->field = \
over->field != AP_CORE_CONFIG_UNSET \
? over->field \
: base->field
/** * @brief Per-directory configuration
*/ typedefstruct { /** path of the directory/regex/etc. see also d_is_fnmatch/absolute below */ char *d; /** the number of slashes in d */ unsigned d_components;
/** If (opts & OPT_UNSET) then no absolute assignment to options has * been made. * invariant: (opts_add & opts_remove) == 0 * Which said another way means that the last relative (options + or -) * assignment made to each bit is recorded in exactly one of opts_add * or opts_remove.
*/
allow_options_t opts;
allow_options_t opts_add;
allow_options_t opts_remove;
overrides_t override;
allow_options_t override_opts;
/* Used to be the custom response config. No longer used. */ char **response_code_strings; /* from ErrorDocument, not from
* ap_custom_response() */
/* since is_fnmatch(conf->d) was being called so frequently in * directory_walk() and its relatives, this field was created and * is set to the result of that call.
*/ unsigned d_is_fnmatch : 1;
/* should we force a charset on any outgoing parameterless content-type? * if so, which charset?
*/ #define ADD_DEFAULT_CHARSET_OFF (0) #define ADD_DEFAULT_CHARSET_ON (1) #define ADD_DEFAULT_CHARSET_UNSET (2) unsigned add_default_charset : 2; constchar *add_default_charset_name;
/* System Resource Control */ #ifdef RLIMIT_CPU struct rlimit *limit_cpu; #endif #ifdefined (RLIMIT_DATA) || defined (RLIMIT_VMEM) || defined(RLIMIT_AS) struct rlimit *limit_mem; #endif #ifdef RLIMIT_NPROC struct rlimit *limit_nproc; #endif
apr_off_t limit_req_body; /* limit on bytes in request msg body */ long limit_xml_body; /* limit on bytes in XML request msg body */
/* logging options */
server_signature_e server_signature;
/* Access control */
apr_array_header_t *sec_file;
apr_array_header_t *sec_if;
ap_regex_t *r;
constchar *mime_type; /* forced with ForceType */ constchar *handler; /* forced by something other than SetHandler */ constchar *output_filters; /* forced with SetOutputFilters */ constchar *input_filters; /* forced with SetInputFilters */ int accept_path_info; /* forced with AcceptPathInfo */
/* * What attributes/data should be included in ETag generation?
*/
etag_components_t etag_bits;
etag_components_t etag_add;
etag_components_t etag_remove;
/* * Run-time performance tuning
*/ #define ENABLE_MMAP_OFF (0) #define ENABLE_MMAP_ON (1) #define ENABLE_MMAP_UNSET (2) unsignedint enable_mmap : 2; /* whether files in this dir can be mmap'ed */
#define ENABLE_SENDFILE_OFF (0) #define ENABLE_SENDFILE_ON (1) #define ENABLE_SENDFILE_UNSET (2) unsignedint enable_sendfile : 2; /* files in this dir can be sendfile'ed */
/** Table of directives allowed per AllowOverrideList */
apr_table_t *override_list;
#define AP_MAXRANGES_UNSET -1 #define AP_MAXRANGES_DEFAULT -2 #define AP_MAXRANGES_UNLIMITED -3 #define AP_MAXRANGES_NORANGES 0 /** Number of Ranges before returning HTTP_OK. **/ int max_ranges; /** Max number of Range overlaps (merges) allowed **/ int max_overlaps; /** Max number of Range reversals (eg: 200-300, 100-125) allowed **/ int max_reversals;
/** Named back references */
apr_array_header_t *refs;
/** Custom response config with expression support. The hash table * contains compiled expressions keyed against the custom response * code.
*/
apr_hash_t *response_code_exprs;
#define AP_CGI_PASS_AUTH_OFF (0) #define AP_CGI_PASS_AUTH_ON (1) #define AP_CGI_PASS_AUTH_UNSET (2) /** CGIPassAuth: Whether HTTP authorization headers will be passed to * scripts as CGI variables; affects all modules calling * ap_add_common_vars(), as well as any others using this field as * advice
*/ unsignedint cgi_pass_auth : 2; unsignedint qualify_redirect_url :2;
ap_expr_info_t *expr_handler; /* forced with SetHandler */
/** Table of rules for building CGI variables, NULL if none configured */
apr_hash_t *cgi_var_rules;
apr_size_t read_buf_size;
} core_dir_config;
/* macro to implement off by default behaviour */ #define AP_SENDFILE_ENABLED(x) \
((x) == ENABLE_SENDFILE_ON ? APR_SENDFILE_ENABLED : 0)
/* Per-server core configuration */
typedefstruct {
char *gprof_dir;
/* Name translations --- we want the core to be able to do *something* * so it's at least a minimally functional web server on its own (and * can be tested that way). But let's keep it to the bare minimum:
*/ constchar *ap_document_root;
/* recursion backstopper */ int redirect_limit; /* maximum number of internal redirects */ int subreq_limit; /* maximum nesting level of subrequests */
constchar *protocol;
apr_table_t *accf_map;
/* array of ap_errorlog_format_item for error log format string */
apr_array_header_t *error_log_format; /* * two arrays of arrays of ap_errorlog_format_item for additional information * logged to the error log once per connection/request
*/
apr_array_header_t *error_log_conn;
apr_array_header_t *error_log_req;
/* TRACE control */ #define AP_TRACE_UNSET -1 #define AP_TRACE_DISABLE 0 #define AP_TRACE_ENABLE 1 #define AP_TRACE_EXTENDED 2 int trace_enable; #define AP_MERGE_TRAILERS_UNSET 0 #define AP_MERGE_TRAILERS_ENABLE 1 #define AP_MERGE_TRAILERS_DISABLE 2 int merge_trailers;
apr_array_header_t *protocols; int protocols_honor_order;
/** * Insert the network bucket into the core input filter's input brigade. * This hook is intended for MPMs or protocol modules that need to do special * socket setup. * @param c The connection * @param bb The brigade to insert the bucket into * @param socket The socket to put into a bucket * @return AP_DECLINED if the current function does not handle this connection, * APR_SUCCESS or an error otherwise.
*/
AP_DECLARE_HOOK(apr_status_t, insert_network_bucket,
(conn_rec *c, apr_bucket_brigade *bb, apr_socket_t *socket))
/** * This hook provdes a way for modules to provide metrics/statistics about * their operational status. * * @param p A pool to use to create entries in the hash table * @param val The name of the parameter(s) that is wanted. This is * tree-structured would be in the form ('*' is all the tree, * 'module.*' all of the module , 'module.foo.*', or * 'module.foo.bar' ) * @param ht The hash table to store the results. Keys are item names, and * the values point to ap_mgmt_item_t structures. * @ingroup hooks
*/
AP_DECLARE_HOOK(int, get_mgmt_items,
(apr_pool_t *p, constchar * val, apr_hash_t *ht))
/** * The info structure passed to callback functions of errorlog handlers. * Not all information is available in all contexts. In particular, all * pointers may be NULL.
*/ typedefstruct ap_errorlog_info { /** current server_rec. * Should be preferred over c->base_server and r->server
*/ const server_rec *s;
/** current conn_rec. * Should be preferred over r->connection
*/ const conn_rec *c;
/** current request_rec. */ const request_rec *r; /** r->main if r is a subrequest, otherwise equal to r */ const request_rec *rmain;
/** pool passed to ap_log_perror, NULL otherwise */
apr_pool_t *pool;
/** name of source file where the log message was produced, NULL if N/A. */ constchar *file; /** line number in the source file, 0 if N/A */ int line;
/** module index of module that produced the log message, APLOG_NO_MODULE if N/A. */ int module_index; /** log level of error message (flags like APLOG_STARTUP have been removed), -1 if N/A */ int level;
/** apr error status related to the log message, 0 if no error */
apr_status_t status;
/** 1 if logging to syslog, 0 otherwise */ int using_syslog; /** 1 if APLOG_STARTUP was set for the log message, 0 otherwise */ int startup;
/** message format */ constchar *format;
} ap_errorlog_info;
/** * callback function prototype for a external errorlog handler * @note To avoid unbounded memory usage, these functions must not allocate * memory from the server, connection, or request pools. If an errorlog * handler absolutely needs a pool to pass to other functions, it must create * and destroy a sub-pool.
*/ typedefint ap_errorlog_handler_fn_t(const ap_errorlog_info *info, constchar *arg, char *buf, int buflen);
/** * Register external errorlog handler * @param p config pool to use * @param tag the new format specifier (i.e. the letter after the %) * @param handler the handler function * @param flags flags (reserved, set to 0)
*/
AP_DECLARE(void) ap_register_errorlog_handler(apr_pool_t *p, char *tag,
ap_errorlog_handler_fn_t *handler, int flags);
typedefstruct ap_errorlog_handler {
ap_errorlog_handler_fn_t *func; int flags; /* for future extensions */
} ap_errorlog_handler;
/** item starts a new field */ #define AP_ERRORLOG_FLAG_FIELD_SEP 1 /** item is the actual error message */ #define AP_ERRORLOG_FLAG_MESSAGE 2 /** skip whole line if item is zero-length */ #define AP_ERRORLOG_FLAG_REQUIRED 4 /** log zero-length item as '-' */ #define AP_ERRORLOG_FLAG_NULL_AS_HYPHEN 8
typedefstruct { /** ap_errorlog_handler function */
ap_errorlog_handler_fn_t *func; /** argument passed to item in {} */ constchar *arg; /** a combination of the AP_ERRORLOG_* flags */ unsignedint flags; /** only log item if the message's log level is higher than this */ unsignedint min_loglevel;
} ap_errorlog_format_item;
/** * hook method to log error messages * @ingroup hooks * @param info pointer to ap_errorlog_info struct which contains all * the details * @param errstr the (unformatted) message to log * @warning Allocating from the usual pools (pool, info->c->pool, info->p->pool) * must be avoided because it can cause memory leaks. * Use a subpool if necessary.
*/
AP_DECLARE_HOOK(void, error_log, (const ap_errorlog_info *info, constchar *errstr))
/** Query the server for some state information * @param query_code Which information is requested * @return the requested state information
*/
AP_DECLARE(int) ap_state_query(int query_code);
/* * possible values for query_code in ap_state_query()
*/
/** current status of the server */ #define AP_SQ_MAIN_STATE 0 /** are we going to serve requests or are we just testing/dumping config */ #define AP_SQ_RUN_MODE 1 /** generation of the top-level apache parent */ #define AP_SQ_CONFIG_GEN 2
/* * return values for ap_state_query()
*/
/** return value for unknown query_code */ #define AP_SQ_NOT_SUPPORTED -1
/* values returned for AP_SQ_MAIN_STATE */ /** before the config preflight */ #define AP_SQ_MS_INITIAL_STARTUP 1 /** initial configuration run for setting up log config, etc. */ #define AP_SQ_MS_CREATE_PRE_CONFIG 2 /** tearing down configuration */ #define AP_SQ_MS_DESTROY_CONFIG 3 /** normal configuration run */ #define AP_SQ_MS_CREATE_CONFIG 4 /** running the MPM */ #define AP_SQ_MS_RUN_MPM 5 /** cleaning up for exit */ #define AP_SQ_MS_EXITING 6
/* values returned for AP_SQ_RUN_MODE */ /** command line not yet parsed */ #define AP_SQ_RM_UNKNOWN 1 /** normal operation (server requests or signal server) */ #define AP_SQ_RM_NORMAL 2 /** config test only */ #define AP_SQ_RM_CONFIG_TEST 3 /** only dump some parts of the config */ #define AP_SQ_RM_CONFIG_DUMP 4
/** Get a apr_pollfd_t populated with descriptor and descriptor type * and the timeout to use for it. * @return APR_ENOTIMPL if not supported for a connection.
*/
AP_DECLARE_HOOK(apr_status_t, get_pollfd_from_conn,
(conn_rec *c, struct apr_pollfd_t *pfd,
apr_interval_time_t *ptimeout))
/** * Pass in a `struct apr_pollfd_t*` and get `desc_type` and `desc` * populated with a suitable value for polling connection input. * For primary connection (c->master == NULL), this will be the connection * socket. For secondary connections this may differ or not be available * at all. * Note that APR_NO_DESC may be set to indicate that the connection * input is already closed. * * @param pfd the pollfd to set the descriptor in * @param ptimeout != NULL to retrieve the timeout in effect * @return ARP_SUCCESS when the information was assigned.
*/
AP_CORE_DECLARE(apr_status_t) ap_get_pollfd_from_conn(conn_rec *c, struct apr_pollfd_t *pfd,
apr_interval_time_t *ptimeout);
#ifdef __cplusplus
} #endif
#endif/* !APACHE_HTTP_CORE_H */ /** @} */
¤ Dauer der Verarbeitung: 0.43 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.