Apache2
mod_request.h
Go to the documentation of this file.
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements. See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 
27 #ifndef MOD_REQUEST_H
28 #define MOD_REQUEST_H
29 
30 #include "apr.h"
31 #include "apr_buckets.h"
32 #include "apr_optional.h"
33 
34 #include "httpd.h"
35 #include "util_filter.h"
36 
37 
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41 
43 
44 #define KEEP_BODY_FILTER "KEEP_BODY"
45 #define KEPT_BODY_FILTER "KEPT_BODY"
46 
50 typedef struct {
54 
56 
58 
59 #ifdef __cplusplus
60 }
61 #endif
62 
63 #endif /* !MOD_REQUEST_H */
APR Platform Definitions.
APR-UTIL Buckets/Bucket Brigades.
APR-UTIL registration of functions exported by modules.
#define APR_DECLARE_OPTIONAL_FN(ret, name, args)
Definition: apr_optional.h:50
request_rec * r
Definition: mod_dav.h:518
void ap_request_insert_filter(request_rec *r)
module AP_MODULE_DECLARE_DATA request_module
void ap_request_remove_filter(request_rec *r)
off_t apr_off_t
Definition: apr.h:396
HTTP Daemon routines.
#define AP_MODULE_DECLARE_DATA
Definition: macros.h:16
Definition: http_config.h:348
Definition: mod_request.h:50
apr_off_t keep_body
Definition: mod_request.h:51
int keep_body_set
Definition: mod_request.h:52
A structure that represents the current request.
Definition: httpd.h:856
Apache filter library.