1Hook(3) User Contributed Perl Documentation Hook(3)
2
3
4
6 APR::Request::Hook - wrapper for libapreq2's hook API.
7
9 use APR::Request::Hook;
10
12 This manpage documents version 2.09 of the APR::Request::Hook package.
13
15 APR::Request::Hook
16
17 disable_uploads
18
19 APR::Request::Hook->disable_uploads($pool)
20 APR::Request::Hook->disable_uploads($pool, $next)
21
22 Hook which returns APREQ_ERROR_GENERAL if a file upload field is
23 detected. $pool is an APR::Pool object; $next (if present) is the next
24 APR::Request::Hook in the chain.
25
26 apr_xml_parser
27
28 APR::Request::Hook->apr_xml_parser($pool)
29 APR::Request::Hook->apr_xml_parser($pool, $next)
30
31 Xml parser hook. $pool is an APR::Pool object; $next (if present) is
32 the next APR::Request::Hook in the chain.
33
34 discard_brigade
35
36 APR::Request::Hook->discard_brigade($pool)
37 APR::Request::Hook->discard_brigade($pool, $next)
38
39 Hook which discards the brigade it receives from the parser. $pool is
40 an APR::Pool object; $next (if present) is the next APR::Request::Hook
41 in the chain.
42
44 APR::Request, APR::Request::Parser
45
47 Licensed to the Apache Software Foundation (ASF) under one or more
48 contributor license agreements. See the NOTICE file distributed with
49 this work for additional information regarding copyright ownership.
50 The ASF licenses this file to You under the Apache License, Version 2.0
51 (the "License"); you may not use this file except in compliance with
52 the License. You may obtain a copy of the License at
53
54 http://www.apache.org/licenses/LICENSE-2.0
55
56 Unless required by applicable law or agreed to in writing, software
57 distributed under the License is distributed on an "AS IS" BASIS,
58 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
59 See the License for the specific language governing permissions and
60 limitations under the License.
61
62
63
64perl v5.8.8 2007-10-25 Hook(3)