summaryrefslogtreecommitdiff
path: root/include/util_filter.h
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2010-06-30 22:34:05 +0000
committerStefan Fritsch <sf@apache.org>2010-06-30 22:34:05 +0000
commited451e94d1edccf3ddb4d19c4c29fd7423eb03be (patch)
tree2fab3da8a5b8cf59b6bf182608b6d23ab2c15650 /include/util_filter.h
parent8bce96451f3da6173cc94c1804e32f1bdfa24339 (diff)
downloadhttpd-ed451e94d1edccf3ddb4d19c4c29fd7423eb03be.tar.gz
re-order many struct members for better alignment on 64bit
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@959464 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/util_filter.h')
-rw-r--r--include/util_filter.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/util_filter.h b/include/util_filter.h
index 4467436a15..89bbcd25e8 100644
--- a/include/util_filter.h
+++ b/include/util_filter.h
@@ -227,6 +227,12 @@ struct ap_filter_rec_t {
*/
ap_init_filter_func filter_init_func;
+ /** The next filter_rec in the list */
+ struct ap_filter_rec_t *next;
+
+ /** Providers for this filter */
+ ap_filter_provider_t *providers;
+
/** The type of filter, either AP_FTYPE_CONTENT or AP_FTYPE_CONNECTION.
* An AP_FTYPE_CONTENT filter modifies the data based on information
* found in the content. An AP_FTYPE_CONNECTION filter modifies the
@@ -234,12 +240,6 @@ struct ap_filter_rec_t {
*/
ap_filter_type ftype;
- /** The next filter_rec in the list */
- struct ap_filter_rec_t *next;
-
- /** Providers for this filter */
- ap_filter_provider_t *providers;
-
/** Trace level for this filter */
int debug;