summaryrefslogtreecommitdiff
path: root/modules/filters/mod_include.h
diff options
context:
space:
mode:
authorArno Töll <debian@toell.net>2012-01-08 22:53:17 +0100
committerArno Töll <debian@toell.net>2012-01-08 22:53:17 +0100
commite072a2dd866b7cb9f14319b80326a4e7fd16fcdf (patch)
treea49dfc56d94a26011fe157835ff6cbe14edbd8a9 /modules/filters/mod_include.h
parent0890390c00801651d08d3794e13b31a5dabbf5ef (diff)
downloadapache2-e072a2dd866b7cb9f14319b80326a4e7fd16fcdf.tar.gz
Imported Upstream version 2.3.16-beta
Diffstat (limited to 'modules/filters/mod_include.h')
-rw-r--r--modules/filters/mod_include.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/filters/mod_include.h b/modules/filters/mod_include.h
index fd5621c0..73714a29 100644
--- a/modules/filters/mod_include.h
+++ b/modules/filters/mod_include.h
@@ -17,7 +17,7 @@
/**
* @file mod_include.h
* @brief Server Side Include Filter Extension Module for Apache
- *
+ *
* @defgroup MOD_INCLUDE mod_include
* @ingroup APACHE_MODS
* @{
@@ -94,8 +94,12 @@ typedef struct {
/* currently configured time format */
const char *time_str;
+ /* the current request */
+ request_rec *r;
+
/* pointer to internal (non-public) data, don't touch */
struct ssi_internal_ctx *intern;
+
} include_ctx_t;
typedef apr_status_t (include_handler_fn_t)(include_ctx_t *, ap_filter_t *,
@@ -109,7 +113,7 @@ APR_DECLARE_OPTIONAL_FN(char*, ap_ssi_parse_string,
(include_ctx_t *ctx, const char *in, char *out,
apr_size_t length, int leave_name));
-APR_DECLARE_OPTIONAL_FN(void, ap_register_include_handler,
+APR_DECLARE_OPTIONAL_FN(void, ap_register_include_handler,
(char *tag, include_handler_fn_t *func));
#endif /* MOD_INCLUDE */