* 20011002 (2.0.26-dev) removed 1.3-depreciated request_rec.content_language
* 20011127 (2.0.29-dev) bump for postconfig hook change, and removal of socket
* from connection record
+ * 20011212 (2.0.30-dev) bump for new used_path_info member of request_rec
*/
#define MODULE_MAGIC_COOKIE 0x41503230UL /* "AP20" */
#ifndef MODULE_MAGIC_NUMBER_MAJOR
-#define MODULE_MAGIC_NUMBER_MAJOR 20011127
+#define MODULE_MAGIC_NUMBER_MAJOR 20011212
#endif
#define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */
#define MODULE_MAGIC_NUMBER MODULE_MAGIC_NUMBER_MAJOR /* backward compat */
*/
/** First line of request, so we can log it */
char *the_request;
- /** HTTP/0.9, "simple" request */
+ /** HTTP/0.9, "simple" request (e.g. GET /foo\n w/no headers) */
int assbackwards;
/** A proxy request (calculated during post_read_request/translate_name)
* possible values PROXYREQ_NONE, PROXYREQ_PROXY, PROXYREQ_REVERSE
/** components of uri, dismantled */
apr_uri_t parsed_uri;
+ /** Flag for the core handler to permit path_info on the current
+ filename, to be consumed by some filter. Unless this is
+ toggled, path_info requests are rejected by the core */
+ int used_path_info;
+
/* Various other config info which may change with .htaccess files
* These are config vectors, with one void* pointer for each module
* (the thing pointed to being the module's business).