Apache HTTPD
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
39extern "C" {
40#endif
41
42extern module AP_MODULE_DECLARE_DATA request_module;
43
44#define KEEP_BODY_FILTER "KEEP_BODY"
45#define KEPT_BODY_FILTER "KEPT_BODY"
46
50typedef struct {
51 apr_off_t keep_body;
54
56
58
59#ifdef __cplusplus
60}
61#endif
62
63#endif /* !MOD_REQUEST_H */
APR-UTIL Buckets/Bucket Brigades.
APR-UTIL registration of functions exported by modules.
request_rec * r
#define APR_DECLARE_OPTIONAL_FN(ret, name, args)
HTTP Daemon routines.
static void ap_request_insert_filter(request_rec *r)
static void ap_request_remove_filter(request_rec *r)
apr_off_t keep_body
Definition mod_request.h:51
A structure that represents the current request.
Definition httpd.h:845
Apache filter library.